我创建了一个快速的 Wordpress 短代码,这样我的作者就可以轻松地在帖子的可视化编辑器中设置字幕样式:
function subtitle( $atts, $content = null ) {
return '<p class="subtitle">' . $content . '</p>';
}
我想将此输出移动到文档中指定的其他位置,例如:
<div id="output_here_please"></div>
<?php the_content(); /* It is returned here wherever they place the shortcode */ ?>
做这个的最好方式是什么?是否有要使用的 PHP 或 WordPress 函数,或者我应该创建一个 javascript 来替换 innerHTML(我试过这个,但不知道如何在页面加载后插入它)。
谢谢