wp_insert_post() Callback?

时间:2013-01-24 作者:l2aelba

在我添加帖子之后wp_insert_post();

我添加后有没有回电话?我需要添加的帖子永久链接。

我有想法只按标题和帖子类型搜索(我使用自定义帖子类型),但有更好的功能吗?

2 个回复
最合适的回答,由SO网友:RRikesh 整理而成
$post_id = wp_insert_post( $arg ); #returns post ID
$permalink = get_permalink( $post_id ); #returns the permalink

Codex:

http://codex.wordpress.org/Function_Reference/wp_insert_post

SO网友:l2aelba

Oh I found !

$post_id = wp_insert_post($arg); // return post ID
结束

相关推荐

Optimize shortcode callbacks

我创建了一个插件,在我的WordPress站点中添加了一些短代码。但我是一个PHP新手,所以我相信它可能有一些错误或优化它的方法。它工作正常,显然没有问题。内存使用率为00.04MB。你能看看吗?非常感谢!add_action( \'wp_enqueue_scripts\', \'prefix_add_my_stylesheet\' ); function prefix_add_my_stylesheet() { // Respects SSL, Styl