Upon clicking <– Older Posts on my Blog, I’m brought to an invalid page: https://convertmedia.com/blog/page/2/
What is the usual address for the 2nd page of a Blog? Has anyone else experienced this issue?
Any support would be great. Thank you.
]]>Any ideas?
https://www.ads-software.com/plugins/wp-customer-reviews/
]]>Only I have some gallery’s with 2 pages. The first pages are OK, but if you choose a second page there are no pictures shown. Please take a look what is happening…https://ligtjesweb.nl/fotoalbum/landschap-en-natuur/wordpress/nggallery/page/2
R.
Jeanneke
https://www.ads-software.com/plugins/nextgen-gallery/
]]>Thoughts ?
<?php
$this_cat_id = get_query_var(‘cat’);
$my_query = new WP_Query( array( ‘tag_id’ => $letter, ‘posts_per_page’ => 6, ‘cat’ => $this_cat_id, ‘paged’ => get_query_var(‘page’)) );
if (have_posts()) :while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<div id=”single”>
“><?php the_post_thumbnail(‘results_thumb’); ?>
<h2>“><?php the_title();?></h2>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
<?php wp_pagenavi( array( ‘query’ => $my_query ) );
wp_reset_postdata();
?>
https://www.ads-software.com/extend/plugins/wp-pagenavi/
]]>What I am trying to accomplish is the following:
I have my blog up and running and have a number of categories in place. one of my categories is for videos. I also have a button on the top bar that takes you to the videos page that displays all the videos tagged with the “videos” category. I would like to beef up the content on that page by adding more videos, but I do not want to have to post ALL of those video to the front page as a blog entry. What is the best practice for having any video I post on the front page add itself to the video page and any video I want on the video page to be added without hitting the front page (If I don’t want it to)?
]]>