| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/peyco.es/wp-content/themes/StoreFront/ |
Upload File : |
<?php
/*
Template Name: Archive Page
*/
global $gk_tpl;
gk_load('header');
gk_load('before');
?>
<section id="gk-mainbody" class="archivepage">
<?php the_post(); ?>
<h1 class="page-title"><?php the_title(); ?></h1>
<article>
<section class="intro">
<?php the_content(); ?>
</section>
<?php
$posts_to_show = 10; //Max number of articles to display
$debut = 0; //The first article to be displayed
?>
<div class="widget box first">
<h2><?php _e('Latest posts', GKTPLNAME); ?></h2>
<ul>
<?php
$myposts = get_posts('numberposts='.$posts_to_show.'&offset='.$debut);
foreach($myposts as $post) :
?>
<li><small><?php the_time('d/m/y') ?>:</small> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<div class="widget box">
<h2><?php _e('Categories', GKTPLNAME); ?></h2>
<ul>
<?php
wp_list_categories(array(
'orderby' => 'name',
'show_count' => 1,
'title_li' => ''
));
?>
</ul>
</div>
<div class="widget box last">
<h2><?php _e('Monthly Archives', GKTPLNAME); ?></h2>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=1') ?>
</ul>
</div>
</article>
</section>
<?php
gk_load('after');
gk_load('footer');
// EOF