在single-game.php中
我用来调用函数$post_id = programmatically_create_post_game();
和页脚。它工作(点击按钮时创建游戏)但页脚没有加载。我希望在显示页面时加载页脚(单击或不单击按钮)。
当我没有调用该函数时,自定义帖子被加载(该按钮不能正常工作,因为该函数未被调用)但页脚已加载。
在functions.php中,函数是:
function programmatically_create_post_game() {
...
}
add_action( 'wp_ajax_programmatically_create_post_game', 'programmatically_create_post_game' );
缺少什么?