【问题标题】:Can WordPress the_content() strip the number format style?WordPress the_content() 可以去掉数字格式样式吗?
【发布时间】:2017-10-10 00:17:17
【问题描述】:

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

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

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

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

【问题讨论】:

标签: wordpress strip wp-editor


【解决方案1】:

在您的主题的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;
}

【讨论】:

  • 我试试这个,但 $content 返回空检查屏幕短 awesomescreenshot.com/image/2483526/…
  • 在 preg 替换后检查变量 $content.. 我刚刚给出了这个想法.. 请您自己首次亮相。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2021-12-12
  • 2020-11-01
  • 1970-01-01
  • 1970-01-01
  • 2013-11-11
  • 2011-10-11
  • 1970-01-01
相关资源
最近更新 更多