web-dev-qa-db-ja.com

wp_insert_post()コールバック

で投稿を追加した後wp_insert_post();

追加後のコールバック追加記事のパーマリンクが必要です。

私はタイトルと投稿タイプのみで検索するというアイデアがあります(私の場合はカスタム投稿タイプを使用します)が、もっと良い機能はありますか?

2
l2aelba
$post_id = wp_insert_post( $arg ); #returns post ID
$permalink = get_permalink( $post_id ); #returns the permalink

コーデックス:

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

3
RRikesh

ああ、わかりました!

$post_id = wp_insert_post($arg); // return post ID
1
l2aelba