WordPressの新規投稿時のデフォルト設定

管理者権限のユーザーでも新規投稿時にステータスpost_statusをレビュー待ちpendingにしたかったので。

function.phpに追加。

//新規投稿のステータス初期値を「レビュー待ち」にする
function post_function($data){
	//処理
	$data['post_status'] = 'pending';
	return $data;
}
add_filter('wp_insert_post_data', 'post_function');

Categories:

Tags:


Comments

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA