this is my code in Custom page Template <?php query_posts('showposts=8'); ?> <?php $count = 1; if (have_posts()) : while (have_posts()) : the_post(); if($count == 1) : ?> & this...
  • May 24, 2022
  • 0 Comments
I’m using WordPress as a Facebook platform and have a page that shows posts from 2 different categories. Each category has it’s own pagination using wp-pagenavi. In order to...
  • May 9, 2022
  • 0 Comments
IT Nursery
<?php /* Template Name: Projects */ ?> <?php get_header();?> <section id="content"> <section id="main"> <?php $loop = new WP_Query(array('post_type' => 'projects', 'posts_per_page' => 4)); $i=1; while ( $loop->have_posts() ) :...
  • April 29, 2022
  • 0 Comments