Server IP : 184.154.167.98 / Your IP : 3.15.182.217 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/wp-content/APITAM_GOBMX/ |
Upload File : |
<?php get_header(); ?> <main class="wrap"> <section class="content-area content-full-width"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php endwhile; else : ?> <article> <p>Sitio no encontrado</p> </article> <?php endif; ?> </section> </main> <?php get_footer(); ?> <div class="container"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-8"> <div> <center><?php the_post_thumbnail( array(350,150) ); ?></center> <center><h2><?php the_title(); ?></h2></center> </div> <div> <article class="article-full"> <header> </header> <div align="justify"> <?php the_content(); ?></div> </article> </div> <div></div> <div class="top-buffer"></div> </div> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-4"> <div class="widget widget_nav_menu" id="nav_menu-2"> <div class="alert alert-warning"> <dl> <strong>Autor: <?php the_author(); ?></strong> <p class="fecha"><h5>Fecha de publicaciĆ³n</h5> <h4><time datetime="<?php the_time('Y-m-d'); ?>"> <?php the_time('j \d\e\ F \d\e\ Y'); ?> </time></h4> </p> </dl> </div> <!--/*Titulo o encabezado de la categoria*/--> <h3><? foreach((get_the_category()) as $category) { echo $category->cat_name . ' '; } ?> <hr class="red" /> <?php // get all the categories from the database $cats = get_the_category(); // loop through the categries foreach ($cats as $cat) { // setup the cateogory ID $cat_id= $cat->term_id; // Make a header for the cateogry // create a custom wordpress query query_posts("cat=$cat_id&posts_per_page=10"); // start the wordpress loop! if (have_posts()) : while (have_posts()) : the_post(); ?> <?php // create our link now that the post is setup ?> <h6><a href="<?php the_permalink();?>"><?php the_title(); ?></a></h6> <?php endwhile; endif; // done our wordpress loop. Will start again for each category ?> <?php } // done the foreach statement ?> </div> </div>