While following this article to get tags by date, I was wondering if I could exclude certain tags from what gets returned. The point is to have trending tags...
  • May 16, 2022
  • 0 Comments
Need help with a wordpress-task I want ALL the posts from sub categories to be excluded. Example: Cake Pie Apple Pear Banana If i post a post in Banana,...
  • May 15, 2022
  • 0 Comments
I’m try to exclude a specific category from a list of categories that a custom post has (in this case ‘Uncategorized’ – ID: 1). I’ve tried exclude: wp_list_categories([ 'include'...
  • May 12, 2022
  • 0 Comments
Here’s the query i have used. <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $wp_query = new WP_Query('order=asc&orderby=meta_value&meta_key=date&posts_per_page=6&paged=' . $paged); ?> Is there any way to skip the first...
  • May 3, 2022
  • 0 Comments