按照这个例子,是说 使用短代码 挂载 输出huaqu_content函数中的【内容】,其中【
_DDM】 是短代码(需要把【】替换成[])
function huaqu_content() {
echo '内容';
}
function huaqu_register_shortcodes(){
add_shortcode('挂载点', 'huaqu_content');
}
add_action( 'init', 'huaqu_register_shortcodes');