如何修复从简单的Wordpress函数剥离的CSS

时间:2019-07-14 09:47:53

标签: wordpress woocommerce

我使用一个简单的函数在自定义的Woocommerce选项卡中导入帖子内容,但是帖子中的CSS似乎已被剥离,因此其样式设置不正确。我以为既然帖子使用的是Gutenberg编辑器,那是问题所在吗?如何保持样式?

    <?php

    add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
    function woo_new_product_tab( $tabs ) {

    // Adds the new tab

    $tabs['test_tab'] = array(
    'title'     => __( 'Order & delivery dates', 'woocommerce' ),
    'priority'  => 50,
    'callback'  => 'woo_new_product_tab_content'
    );

    return $tabs;

    }

    function woo_new_product_tab_content() {

    // The new tab content

    $my_postid = 28903;  //This is page id or post id
    $content_post = get_post($my_postid);
    $content = $content_post->post_content;
    $content = apply_filters('the_content', $content);
    echo $content;

    }

Incorrrect styling

Correct styling

0 个答案:

没有答案