芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/wp-content/themes/odefy/archive.php
* @since 1.0.0 */ // Taxonomies $tax_obj = get_queried_object(); $term_id = $tax_obj->term_id ?? ''; $tax_description = false; if ($term_id) { $taxonomies[] = $tax_obj->taxonomy . ': ' . $tax_obj->slug; $tax_description = $tax_obj->description; } // Sidebar parameters $sb = WGL_Framework::get_sidebar_data('blog_list'); $container_class = $sb['container_class'] ?? ''; $row_class = $sb['row_class'] ?? ''; $column = $sb['column'] ?? '12'; // Render get_header(); echo '
'; echo '
'; echo '
'; if ($term_id) { ?>
' . esc_html($tax_description) . '
'; } ?>
'; $sb && WGL_Framework::render_sidebar($sb); echo '
'; echo '
'; get_footer();