Compare commits

..

No commits in common. "793f6914f027bc9f6b85ff1b5bd29fb0a90be4c2" and "35d1270a4b42e688d32bee8c42cd7327744173a0" have entirely different histories.

2 changed files with 0 additions and 24 deletions

View File

@ -1,5 +0,0 @@
<?php
/*
* Template name: api-template
* description: >-
*/

View File

@ -2,25 +2,6 @@
require get_theme_file_path('/api-posts/api-posts.php');
// Add rewrite rule
add_action('init', function () {
add_rewrite_rule('api-template/?$', 'index.php?static_template=api-template', 'top');
flush_rewrite_rules(); // Only needed for local development
});
// Whitelist the custom query var
add_filter('query_vars', function($queryVars) {
$queryVars[] = 'static_template';
return $queryVars;
});
// Conditionally render the custom template
add_action('template_include', function($template) {
if (get_query_var('static_template') == 'api-template') {
return get_template_directory(). '/api-template.php';
}
return $template;
});
// ? get variables (globally)
function gV($gv)