????JFIF??x?x????'
| Server IP : 172.67.174.47 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/./tempvsty/pontiacques.org/wp-content/themes/slide/views/utils/ |
Upload File : |
<?php
/*only for custom taxonomy pages*/
$cpt_tax = "";
$archive_page_id = "";
SLIDE_SWP_is_cpt_tax($cpt_tax, $archive_page_id);
/*
is cpt taxonomy page
and
archive page is set and page shows custom post type categories
*/
if (strlen($cpt_tax) && SLIDE_SWP_show_custom_cat($archive_page_id)) {
$current_term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
$terms = get_terms(array('taxonomy' => $cpt_tax));
if (count($terms)) {
?>
<div class="lc_post_meta lc_cpt_category cpt_post_meta lc_swp_full">
<span class="meta_entry lc_cpt_category archive_cpt_category">
<?php
foreach($terms as $term) {
if (!strcmp($current_term->name, $term->name)) {
?> <a href="#" class="current_term"> <?php echo esc_html($current_term->name); ?> </a> <?php
} else {
?> <a href="<?php echo esc_url(get_term_link($term)); ?> "> <?php echo esc_html($term->name); ?> </a> <?php
}
}
?>
</span>
</div>
<?php
}
}