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