出于某些原因,我尝试添加到函数中的每个短代码。php,只显示默认属性值,并忽略我在帖子中指定的内容。E、 g.:
function my_shortcode( $atts ) {
extract( shortcode_atts(
array(
\'id\' => \'18\',
), $atts )
);
return $id;
}
add_shortcode( \'sc\', \'my_shortcode\' );
所以我使用短代码
[sc id="81"]
期待回音
81
但我知道
18
. 顺便说一句,我使用子主题和最新版本的wordpress。我真的卡住了。谢谢你的帮助。