是否将帖子ID从wp_INSERT_POST($POST);保存到文本文件?

时间:2014-06-17 作者:kat

我想使用wp\\u insert\\u post创建一些帖子,然后将创建的帖子的标题和ID保存到文本文件中以供将来参考。如何做到这一点?

1 个回复
SO网友:jocken

您使用add_action!

像这样:

function save_id_to_file($post_id){
 //use your file creation/save function here
 return $post_id;
}

add_action(\'wp_insert_post\',\'save_id_to_file\');

结束

相关推荐