php Elementor帖子小部件查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Elementor帖子小部件查询相关的知识,希望对你有一定的参考价值。

// Custom Query for Elementor Posts - Parent Pages
add_action( 'elementor_pro/posts/query/ca-parent-pages', function( $query ) {
	$postid = get_the_ID();
	$query->set( 'post_parent', $postid );
} );

// Custom Query for Elementor Posts - ACF Relationship Query
add_action( 'elementor_pro/posts/query/ca-custom-relationship-query', function ( $query ) {
	$postid = get_the_ID();
	$ids = get_post_meta($postid, 'acf_field_goes_here',  true);
	if ( $ids ) {
		$query->set( 'post__in', $ids );
	}
} );

以上是关于php Elementor帖子小部件查询的主要内容,如果未能解决你的问题,请参考以下文章

php 隐藏Elementor小部件

php 将自定义控件添加到现有Elementor窗口小部件

php 按Anywhere Elementor小部件中的今天和未来日期排序

php 在管理仪表板页面上删除不必要的Elementor小部件

如何在 Elementor 中删除小部件和布局子项之间的间隙/空间?

将 GoDaddy 托管 Wordpress 与 Elementor 一起使用时,HTML 小部件无法正确呈现