根据WP意识形态替换帖子内容中的用户文本的最正确方法是什么?
示例:我想在浏览器中呈现文字时将[b] User Text[/b]
替换为<strong> User text</strong>
我需要过滤器吗? 我需要短代码API吗?或者使用PHP文本替换函数完全没问题?
小代码示例将受到高度赞赏。
答案 0 :(得分:1)
我会使用Shortcode API,然后 functions.php 的代码看起来像这样:
<?php
function shortcode_b_replace($atts, $content = null) {
return '<strong>'.$content.'</strong>';
}
add_shortcode("b", "shortcode_b_replace");
?>