Добавленна отдельная страницы для API #5

Merged
apuc merged 1 commits from feature/back-api into master 2024-05-30 17:12:56 +03:00
2 changed files with 24 additions and 0 deletions

View File

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

View File

@ -2,6 +2,25 @@
require get_theme_file_path('/api-posts/api-posts.php'); 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) // ? get variables (globally)
function gV($gv) function gV($gv)