首先,你在打电话get_header
twice - 以及footer not at all.
其次,您在哪里/如何添加您的短代码?
为了创建新的短代码[short_code_name]
使用它,您必须执行以下操作:
add_shortcode( \'short_code_name\', \'short_code_func\' );
function short_code_func() {
return "That\'s my shortcode. Yay!";
} // function short_code_func
你可以在你的主题中这样做
functions.php
例如,文件。