elementor.com/custom-query-filter/ add_action( 浏览37提问于2021-11-21得票数 1 1回答 Elementor发布额外Widget的自定义查询 wordpress、widget、categories、elementor、posts 我希望有人能帮我创建我需要的查询。我引用的是elementor extras小部件"posts extra“的文档:我正在使用一个自定义的帖子类型和自定义类别...
$args = array( 'category_name' => 'technology', // 替换为你的类别别名 'posts_per_page' => 5, // 每页显示5篇帖子 ); // 创建自定义查询 $query = new WP_Query( $args ); // 检查查询是否有结果 if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the...
然后,我们在左侧元素库中搜索POST元素,并将它拖拽到右侧的画布中,然后按左侧图片所示,设置这个POST元素的Query,将source选为current query,因为默认post元素是展示Posts(文章)的,设置为current query,就可以根据页面的用途来选取展示的内容,这里我们做的是产品列表,那么就会取产品展示,譬如打开某个产品分类页面时,就会取...
设置这个POST元素的Query,将source选为current query,因为默认post元素是展示Posts(文章)的,设置为current query,就可以根据页面的用途来选取展示的内容,这里我们做的是产品列表,那么就会取产品展示,譬如打开某个产品分类页面时,就会取该分类下的产品展示。
然后,我们在左侧元素库中搜索POST元素,并将它拖拽到右侧的画布中,然后按左侧图片所示,设置这个POST元素的Query,将source选为current query,因为默认post元素是展示Posts(文章)的,设置为current query,就可以根据页面的用途来选取展示的内容,这里我们做的是产品列表,那么就会取产品展示,譬如打开某个产品分类页面时,就会取...
Access to Theme Builder (Design your entire site however you want from blog posts to the footer to the sidebar) Access to Popup Builder (Eliminate the need of 3rd party popup plugins or tools!) Access to Visual Form Builder (Eliminate the need for form builder plugins) ...
Get the most powerful Elementor Blog Builder for Blogs, Posts & CPTs for free. 10+ unique collections of Widgets to customize your Blog Posts completely.
This Posts Widget can be used to display posts from a particular category or other taxonomy, recent posts, and more. Learn more.
In Category:某一个或多个分类中所有的单个文章页面 In Child Categories:某一个或多个分类的子分类中所有的单个文章页面 In Tag:某一个或多个标签中所有的单个文章页面 Posts By Author:某一个或多个作者所创建的单个文章页面 Page: Pages:所有的单个Page页面,可以设置详细到某一个或者多个单个Page ...
[ 'post_type' => 'my_cpt', 'tax_query' => [ [ 'taxonomy' => 'my_taxonomy', 'field' => 'term_id', 'terms' => $settings['category'], ], ], ]; $query = new \WP_Query( $args ); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_...