Tagged Questions
0
votes
2answers
73 views
Pagination problem after WP_Query with tag filtering
I have a problem with a custom WP_Query. I want a page with all posts with a specific tag. This is the code I'm using:
<?php
//save old query
$temp = $wp_query;
//clear $wp_query;
$wp_query= ...
0
votes
1answer
45 views
Add tags to long page that is broken up into subpages?
I have a long document that I am publishing as a page and splitting into sub-pages using page breaks <!--nextpage-->.
I am trying to find out if it is possible somehow to add tags to these ...