0

我有这样一个场景,我想限制用户显示电话号码格式。

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

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

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

4

1 回答 1

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;
}
于 2017-05-11T06:44:25.467 回答