homegrade_theme_production/includes/rooting.php

30 lines
751 B
PHP

<?php
add_action('template_redirect', 'redirect_to_demo_components_page');
function redirect_to_demo_components_page()
{
if ($_SERVER['REQUEST_URI'] == '/demo-components') {
global $wp_query;
$wp_query->is_404 = false;
status_header(200);
include(dirname(__DIR__, 1) . '/demo-components.php');
exit();
}
}
// function wpa_course_post_link($post_link, $id = 0)
// {
// $post = get_post($id);
// if (is_object($post) && ICL_LANGUAGE_CODE == 'fr') {
// $terms = wp_get_object_terms($post->ID, 'thematiques');
// if ($terms) {
// return str_replace('%thematiques%', $terms[0]->slug, $post_link);
// }
// }
// return $post_link;
// }
// add_filter('post_type_link', 'wpa_course_post_link', 1, 3);