你好@fxfuture:
我想你要找的是wp_insert_post_data
钩您可以将此代码添加到主题的底部functions.php
文件和/或您可以将其添加到插件:
add_filter(\'wp_insert_post_data\',\'my_wp_insert_post_data\',10,2);
function my_wp_insert_post_data($data, $postarr) {
$post_type = \'video\';
if ($data[\'post_type\']==$post_type && get_post($postarr[\'ID\'])->post_status==\'draft\') {
global $wpdb;
$data[\'menu_order\'] = $wpdb->get_var("SELECT MAX(menu_order)+1 AS menu_order FROM {$wpdb->posts} WHERE post_type=\'{$post_type}\'");
}
return $data;
}