我只是想知道为什么此片段停止工作!以前在工作!
我正在使用DW Notifications插件,并且在其他功能中也没有任何问题,但是在发布时却没有!
也许在上一次WordPress更新中,transition_post_status
操作已更改为另一操作?
有什么解释,谢谢。
function to_followers_only_notify( $new_status, $old_status, $post ) {
global $post;
if ( 'publish' !== $new_status or 'publish' === $old_status )
return;
$post = get_post($post->ID);
$author = $post->post_author;
$author_name = get_the_author_meta( 'display_name', $author );
$followers = get_user_meta($author, '_pwuf_followers', true);
$followers = array_unique($followers);
$title = '<strong>'.$author_name.'</strong> ' . __('Published new post', 'dw-notifications'). ' <strong>'.$post->post_title.'</strong>';
$link = get_permalink($post->ID);
if(has_post_thumbnail($post->ID)){
$image = get_the_post_thumbnail_url($post->ID, 'hitmag-list') ;
}
$notif = array('title'=>$title, 'link' => $link, 'image' => $image);
if ( !empty( $followers ) && is_array( $followers ) ) {
$follower_ids = array();
foreach( $followers as $follower ) {
if ( is_numeric( $follower ) ) {
if(!$post->post_author || $post->post_author == $follower) continue;
$follower_ids[] = $follower;
}
}
dwnotif_add_notification($follower_ids, $notif);
}
}
add_action( 'transition_post_status', 'to_followers_only_notify', 10, 3 );