最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

woocommerce offtopic - Separeting product from post in search result

programmeradmin2浏览0评论

I am trying to separete products from posts in the search result. I can see the loop there search in both.

                        if( have_posts() ) {
                        while( have_posts() ) {
                            the_post();

                            echo "<p><a href='". get_the_permalink() ."'>". get_the_title() ."</a></p>";
                        }
                    } else {
                        echo "<h4 class='text-center'>Sorry, no content to show...</h4>";
                    }

How can I create one loop form products and then another for post? If I try to include prodcut loop it ignores the search and displays all the products.

发布评论

评论列表(0)

  1. 暂无评论