0
是否有一個函數可以在帖子自動發佈後立即執行帖子更新?如果是這樣,我是否也只能針對特定的帖子類型?有沒有辦法在Wordpress中發佈帖子時自動更新帖子?
是否有一個函數可以在帖子自動發佈後立即執行帖子更新?如果是這樣,我是否也只能針對特定的帖子類型?有沒有辦法在Wordpress中發佈帖子時自動更新帖子?
嘗試使用保存帖子掛鉤http://codex.wordpress.org/Plugin_API/Action_Reference/save_post在這裏您可以檢查帖子類型以及運行所需的內容。
您可以使用下面的鉤子來修改任何職位類型這樣
function change_post_status($post_id) {
if (is_user_logged_in()) {
remove_action('save_post', array($this, 'change_post_status'), 99, 2);
if (in_array($_POST['post_type'], array('project', 'event'))) {
$user = wp_get_current_user();
$allowed_roles = array('editor', 'administrator', 'author');
if (array_intersect($allowed_roles, $user->roles)) {
wp_update_post(array(
'ID' => $post_id,
'post_status' => 'publish'
));
}
}
add_action('save_post', array($this, 'change_post_status'), 99, 2);
}
}