我在插件中有两个函数,我希望第二个函数只有在第一个函数完全执行后才能运行:如何从第一个函数调用第二个函数?
这两个功能都附加到发布帖子/更新帖子
功能一:
add_action("save_post", "save_afift_meta_box", 1, 3);
function save_afift_meta_box($post_id, $post, $update){
some code...
}
第二个功能:
add_action( \'transition_post_status\', \'xyz_link_smap_future_to_publish\', 20, 3 );
function xyz_link_smap_future_to_publish($new_status, $old_status, $post){
some code...
}