我在我的archive-product.php中添加的代码有问题,我想为每个类别和属性添加一个滑块,所以我有以下代码:
但是当我输入以下内容时,会显示一个空格:https://ferrettistore.com/categoria-producto/cocina/lavaderos/
我不知道问题出在哪里,因为此代码是由其他人制作的。我真的很感谢您的帮助。
function show_post($path) {
$post = get_page_by_path($path);
if (isset($post->ID)):
$shortcodes_custom_css = get_post_meta($post->ID, '_wpb_shortcodes_custom_css', true);
echo '<style type="text/css" data-type="vc_shortcodes-custom-css">';
echo $shortcodes_custom_css;
echo '</style>';
$content = apply_filters('the_content', $post->post_content);
echo $content;
endif;
}
if ( is_post_type_archive() ) {
$term = $wp_query->get_queried_object();
$cat_id = $_GET['really_curr_tax'];
$cat_id = str_replace('-product_cat', '', $cat_id);
if ($term = get_term_by('id', $cat_id, 'product_cat')) {
$page_title = $term->name;
}
show_post('category/'.$term->slug);
}elseif ( is_tax() ) {
$term = $wp_query->get_queried_object();
show_post('attribute/'.$term->slug);
}