我的自定义插件中有以下代码。Link is a custom post type.
function post_published_notification( $ID, $post ) {
//Something
}
add_action( \'publish_link\', \'post_published_notification\', 10, 2 );
当我通过WordPress仪表板发布/更新链接时,这很好用。
但当我在编程中使用wp_publish_post( $post_id )
.
为什么会这样?如何使其工作?