0
-- المصدر : <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');
4

1 に答える 1

1

正規表現は必要ありません。使用するstrstr()

strstr($string, "--", true);
于 2012-04-27T21:45:11.187 に答える