WordPress的the_content()可以剥离数字格式样式吗?

时间:2017-05-11 06:19:28

标签: wordpress strip wp-editor

我有这种情况,我想限制用户显示电话号码格式。

简而言之,我在WordPress中有一个列表网站,用户可以在其中添加自己的列表以及描述和其他字段。用户在描述选项卡中添加他们的业务地址(前端有wp_editor)。

现在,当列表显示我想删除电话或传真号码等数字格式时。

我可以躲避前端吗?我尝试了 the_content 过滤器,但它不起作用。

1 个答案:

答案 0 :(得分:0)

在主题的functions.php或任何相关页面中尝试以下代码 -

add_filter('the_content','manipulate_content');
function manipulate_content($content){
 // Here manipulate your content, you can replace string which is exactly matching your format. eg is given below
 $content = preg_replace('/\d{3}([().-\s[\]]*)\d{3}([().-\s[\]]*)\d{4}/',
    "*phone*", $content);
 return $content;
}