之后的一切 -

时间:2012-04-27 21:42:06

标签: php regex

-- المصدر : <a href="http://www.almasryalyoum.com/node/799626">المصري اليوم</a>

我想编辑此代码以删除 -

之后的所有内容

代码

function remove_first_moret ($content) {
if (!is_page() && !is_feed() && !is_feed() && !is_home()) {
$content = preg_replace("/-(.*)$/", "", $content, 1);
} return $content;
}
add_filter('the_content', 'remove_first_moret');

1 个答案:

答案 0 :(得分:1)

不需要正则表达式。使用 strstr()

strstr($string, "--", true);