IT Nursery
I have the following code: <?php function ex_rewrite_rules(){ //discography query variable rewrite add_rewrite_rule( 'artists/([^/]+)/discography/?$', 'index.php?album_artist=$matches[1]&discography=yes', 'top'); //albums rewrite rule add_rewrite_rule( 'artists/([^/]+)/discography/([^/]+)/?$', 'index.php?album_artist=$matches[1]&discography=yes&albums=$matches[2]', 'top' ); //songs rewrite rule add_rewrite_rule( 'artists/([^/]+)/discography/([^/]+)/([^/]+)/?$',...
  • May 29, 2022
  • 0 Comments
I’m trying to write a general endpoint that loads a template. It works as expected with the small exception that the returned header is 404 – Page not Found....
  • May 16, 2022
  • 0 Comments
IT Nursery
I want to check for an appropriate template in the theme folder before falling back to the file in my plugin directory. Here’s my code: add_filter('template_include', 'sermon_template_include'); function sermon_template_include($template)...
  • April 15, 2022
  • 0 Comments