Wordpress 简码 woocommerce 项目插件

Wordpress shortcode woocommerce projects plugin

我正在使用 Woocommerce Projects 插件的短代码,我被卡住了,我怎么才能只显示与用户正在查看的项目属于同一类别的项目。

我使用这个代码:

Visit more projects of 

<?php
    $terms_as_text  = get_the_term_list( $post->ID, 'project-category' );   

    if ( $terms_as_text ) {
        echo wp_strip_all_tags( $terms_as_text);
    }
?>?

<?php echo do_shortcode( '[projects limit="3" columns="3" orderby="rand" order="desc" exclude_categories=""]' ); ?>

顶部的文字有效,但我如何排除 shortcode 中活动类别以外的所有内容?

试试这个:

<?php
        $terms = get_terms( array(
            'taxonomy' => 'project-category',
        ) );
        //$post_terms = wp_get_post_terms( $post->ID, 'project-category' );
        $post_terms = wp_get_post_terms( $post->ID, 'project-category' );

        $cat_string = array();
        $in_string = true;
        if ( !empty( $terms ) ) {
            foreach($terms as $term){
                $in_string = true;
                foreach($post_terms as $post_term){
                    if( $post_term->name == $term->name ) {
                        $in_string = false;
                    }
                }
                if($in_string)
                    $cat_string[] = $term->term_id ;
            }
        }
        if(sizeof($cat_string) > 0)
            $cat_string = implode(',',$cat_string);
        else
            $cat_string = '';
        echo $cat_string;
        ?>

        <?php echo do_shortcode( '[projects limit="3" columns="3" orderby="rand" order="desc" exclude_categories="' . $cat_string . '"]' ); ?>

我很惊讶扩展程序没有附带该功能。似乎很明显要包括在内。

我还得说,这是对 WooCommerce 的一种糟糕使用。有很多更好的方式来展示投资组合。

无论如何,希望对您有所帮助。