Wordpress在哪里获得标准帖子类型的格式

时间:2013-02-26 19:08:20

标签: wordpress

我想更改标准帖子类型的格式,但我似乎无法找到修改格式的位置。这是从wp-includes或其他东西继承的东西吗?

1 个答案:

答案 0 :(得分:0)

尝试使用此短代码:

(将此代码粘贴到functions.php的末尾)

function my_formatter($content) 
{
    $new_content = '';
    $pattern_full = '{(\[raw\].*?\[/raw\])}is';
    $pattern_contents = '{\[raw\](.*?)\[/raw\]}is';
    $pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);

    foreach ($pieces as $piece) {
        if (preg_match($pattern_contents, $piece, $matches)) {
            $new_content .= $matches[1];
        } else {
            $new_content .= wptexturize(wpautop($piece));
        }
    }

    return $new_content;
}

使用方法: 在管理面板中,转到帖子并在“[raw]”&之间输入内容。 “[/生的]”。 [raw]你的内容[/ raw]