SO网友:Frank P. Walentynowicz
对于NEW post类型“post”使用draft_to_publish
行动挂钩:
function fpw_post_info( $post ) {
if ( \'post\' == $post->post_type ) {
// echo \'<pre>\'; print_r( $post ); echo \'<br />\';
// $meta = get_post_meta( $post->ID ); print_r( $meta ); echo \'</pre>\'; die();
// your custom code goes here...
}
}
add_action( \'draft_to_publish\', \'fpw_post_info\', 10, 1 );
在回调函数中
$post
你的职位是
WP_post
对象您将收到post的元调用
get_post_meta
作用
对于NEW 或UPDATED post类型“post”使用publish_post
行动挂钩:
function fpw_post_info( $id, $post ) {
// echo \'<pre>\'; print_r( $post ); echo \'<br />\';
// $meta = get_post_meta( $post->ID ); print_r( $meta ); echo \'</pre>\'; die();
// your custom code goes here...
}
add_action( \'publish_post\', \'fpw_post_info\', 10, 2 );
在这种情况下,回调函数接受两个参数!