admin管理员组文章数量:1336644
The $notifications->have_posts() return false, though I'm sure there are few posts of this custom type, in the database.
add_action('user_register','jq_after_user_register_hook', 10, 1);
function jq_after_user_register_hook( $user_id ){
global $wpdb;
$user_meta = get_userdata($user_id);
if ( isset( $user_meta->roles ) && is_array( $user_meta->roles ) && in_array('subscriber', $user_meta->roles) ) {
$args = array(
'meta_query' => array(
array(
'key' => 'sending_time',
'value' => 'on_registration',
'compare' => '=',
)
),
'post_type' => '_jq_notifications',
'posts_per_page' => -1
);
$notifications = new WP_Query($args);
while ($notifications->have_posts()) : $notifications->the_post();
$post_id = get_the_ID();
endwhile;
}
}
PS:The same block of code (i.e. new WP_Query) works in wp_ajax action
add_action( "wp_ajax__jq_admin_g_nos", "_jq_admin_get_notifications" );
The $notifications->have_posts() return false, though I'm sure there are few posts of this custom type, in the database.
add_action('user_register','jq_after_user_register_hook', 10, 1);
function jq_after_user_register_hook( $user_id ){
global $wpdb;
$user_meta = get_userdata($user_id);
if ( isset( $user_meta->roles ) && is_array( $user_meta->roles ) && in_array('subscriber', $user_meta->roles) ) {
$args = array(
'meta_query' => array(
array(
'key' => 'sending_time',
'value' => 'on_registration',
'compare' => '=',
)
),
'post_type' => '_jq_notifications',
'posts_per_page' => -1
);
$notifications = new WP_Query($args);
while ($notifications->have_posts()) : $notifications->the_post();
$post_id = get_the_ID();
endwhile;
}
}
PS:The same block of code (i.e. new WP_Query) works in wp_ajax action
add_action( "wp_ajax__jq_admin_g_nos", "_jq_admin_get_notifications" );
- I have experience before that custom post types and taxonomies are actually not yet ready in certain hook. You may find out in this direction. Example, you you try 'init' hook to do the same thing to see if there is any results. – 西門 正 Code Guy - JingCodeGuy Commented May 21, 2020 at 3:22
1 Answer
Reset to default 0I resolved this by adding 'post_status' => 'draft'
to the $args
array, as below
$args = array(
'meta_query' => array(
array(
'key' => 'sending_time',
'value' => 'on_registration',
'compare' => '=',
)
),
'post_type' => '_jq_notifications',
'posts_per_page' => -1,
'post_status' => 'draft'
);
The custom post type "_jq_notifications" default status was draft.
The documentation here says
post_status: Default value is ‘publish‘, but if the user is logged in, ‘private‘ is added. Public custom post statuses are also included by default. And if the query is run in an admin context (administration area or AJAX call), protected statuses are added too. By default protected statuses are ‘future‘, ‘draft‘ and ‘pending‘.
本文标签: wp querynew WPQuery()haveposts() return false in userregister hook
版权声明:本文标题:wp query - new WP_Query(), have_posts() return false in user_register hook 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742407382a2469099.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论