IT Nursery
I’ve used Dave Jesch’s solution for making virtual pages (from content temporarily saved in a custom database table, updated from an RSS every four hours). See more here: http://davejesch.com/wordpress/wordpress-tech/creating-virtual-pages-in-wordpress/...
  • June 2, 2022
  • 0 Comments
IT Nursery
I’ve seen similar questions and solutions, but so far I couldn’t apply it to my code. The following code (functions.php) works perfectly fine: if( isset($query->query_vars['post_type']) && $query->query_vars['post_type'] == 'turniere'...
  • June 2, 2022
  • 0 Comments
IT Nursery
I’ve added a custom taxonomy to my product category page in the admin. I can call the custom field using the following: $queried_object = get_queried_object(); $t_id = $queried_object->term_id; $term_meta...
  • June 1, 2022
  • 0 Comments