问题描述

我想在我的 WordPress 主题中使用 HTML5,如何关闭 wptexturize?

我不介意 WP 添加中断,但我希望他们是<br> 而不是<br /> 。如何控制我的代码中出现的这些错误?

编辑:我只是非常关心<br> 标签问题,我不介意排版的变化。

EDIT2:其实,我猜<img> 标签也是重要的。任何 self-closing 独立标签都将重要。所以<hr> 也可能是一个问题。更不用说像<link> 这样的 wp_head()产品和各种<meta> 标签。

最佳解决方案

换行符由 wpautop()而不是 wptexturize()添加。 wpautop()也是自动添加段落标签的功能。

您更好地修复<br />,而不是更换过滤器。由于 wpautop()的优先级为 10,所以您可以在此之后挂钩并修复它。

add_filter( 'the_content', 'html5_line_breaks', 25 );

function html5_line_breaks( $content ) {
    return str_replace( '<br />', '<br>', $content );
}

OP 更新后编辑:

WordPress 功能旨在输出 XHTML 。为了摆脱那些尾随的斜杠 site-wide,你将不得不使用输出缓冲区。您可以使用与上述相似的过滤器替换帖子内容中的斜杠,但是不会抓住您的头部,侧边栏等。

这有点丑陋,可能会对性能有一个小的影响,但是在这里你可以 (放在一个插件或你的主题的 functions.php 文件中):

if ( !is_admin() && ( ! defined('DOING_AJAX') || ( defined('DOING_AJAX') && ! DOING_AJAX ) ) ) {
    ob_start( 'html5_slash_fixer' );
    add_action( 'shutdown', 'html5_slash_fixer_flush' );
}

function html5_slash_fixer( $buffer ) {
    return str_replace( ' />', '>', $buffer );
}

function html5_slash_fixer_flush() {
    ob_end_flush();
}

该代码说如果您不在管理区域,而不是执行 AJAX 请求处理,然后通过过滤器开始缓冲输出,然后使用 WordPress 关闭钩子,输出该缓冲区。

次佳解决方案

干得好:

function my_awesome_tag_fixer( $input ){
  return preg_replace( '/(<.+)s/>/', '$1>', $input );
}

foreach( array('the_content', 'the_excerpt', 'comment_text') as $filter )
  add_filter( $filter, 'my_awesome_tag_fixer', 12 );

这不是最优雅的解决方案,但它比重写 wpautop 和 wptexturize 更快地完成它。

第三种解决方案

这可以在例如该主题的 function.php 文件利用 remove_filter()功能 (http://codex.wordpress.org/Function_Reference/remove_filter)

remove_filter("the_content", "wptexturize");

第四种方案

刚找到它 void 元素上的 self-closing 标签是有效的 html 。

In HTML5 we've allowed the / on void elements (like <meta>, <img>, <br>, <input>, etc), to ease migration to and from XML.

http://lists.whatwg.org/pipermail/help-whatwg.org/2008-August/000137.html

更多信息:

http://wiki.whatwg.org/wiki/FAQ#Should_I_close_empty_elements_with_.2F.3E_or_.3E.3F

第五种方案

我有一个 html5 和 WordPress 的起始主题,也是一个功能不是为了 wptexturize,而是 for wpautop() 。还包括 html 的其他元素,像 thead,tfoot,旁边,并使用 html5 的语法和

/**
 * wpautop for HTML5, allowed: table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|map|area|blockquote|address|math|style|input|p|h[1-6]|hr|fieldset|legend|section|article|aside|header|footer|hgroup|figure|details|figcaption|summary)
 * @link http://nicolasgallagher.com/using-html5-elements-in-wordpress-post-content/
 * @author nicolas@nicolasgallagher.com
 */
function html5wpautop($pee, $br = 1) {
    if ( trim($pee) === '' )
            return '';

    $pee = $pee . "n"; // just to make things a little easier, pad the end
    $pee = preg_replace('|<br />s*<br />|', "nn", $pee);
    // Space things out a little
    // *insertion* of section|article|aside|header|footer|hgroup|figure|details|figcaption|summary
    $allblocks = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|map|area|blockquote|address|math|style|input|p|h[1-6]|hr|fieldset|legend|section|article|aside|header|footer|hgroup|figure|details|figcaption|summary)';
    $pee = preg_replace('!(<' . $allblocks . '[^>]*>)!', "n$1", $pee);
    $pee = preg_replace('!(</' . $allblocks . '>)!', "$1nn", $pee);
    $pee = str_replace(array("rn", "r"), "n", $pee); // cross-platform newlines
    if ( strpos($pee, '<object') !== false ) {
            $pee = preg_replace('|s*<param([^>]*)>s*|', "<param$1>", $pee); // no pee inside object/embed
            $pee = preg_replace('|s*</embed>s*|', '</embed>', $pee);
    }
    $pee = preg_replace("/nn+/", "nn", $pee); // take care of duplicates
    // make paragraphs, including one at the end
    $pees = preg_split('/ns*n/', $pee, -1, PREG_SPLIT_NO_EMPTY);
    $pee = '';
    foreach ( $pees as $tinkle )
            $pee .= '<p>' . trim($tinkle, "n") . "</p>n";
    $pee = preg_replace('|<p>s*</p>|', '', $pee); // under certain strange conditions it could create a P of entirely whitespace
    // *insertion* of section|article|aside
    $pee = preg_replace('!<p>([^<]+)</(div|address|form|section|article|aside)>!', "<p>$1</p></$2>", $pee);
    $pee = preg_replace('!<p>s*(</?' . $allblocks . '[^>]*>)s*</p>!', "$1", $pee); // don't pee all over a tag
    $pee = preg_replace("|<p>(<li.+?)</p>|", "$1", $pee); // problem with nested lists
    $pee = preg_replace('|<p><blockquote([^>]*)>|i', "<blockquote$1><p>", $pee);
    $pee = str_replace('</blockquote></p>', '</p></blockquote>', $pee);
    $pee = preg_replace('!<p>s*(</?' . $allblocks . '[^>]*>)!', "$1", $pee);
    $pee = preg_replace('!(</?' . $allblocks . '[^>]*>)s*</p>!', "$1", $pee);
    if ($br) {
            $pee = preg_replace_callback('/<(script|style).*?</\1>/s', create_function('$matches', 'return str_replace("n", "<WPPreserveNewline />", $matches[0]);'), $pee);
            $pee = preg_replace('|(?<!<br />)s*n|', "<br />n", $pee); // optionally make line breaks
            $pee = str_replace('<WPPreserveNewline />', "n", $pee);
    }
    $pee = preg_replace('!(</?' . $allblocks . '[^>]*>)s*<br />!', "$1", $pee);
    // *insertion* of img|figcaption|summary
    $pee = preg_replace('!<br />(s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol|img|figcaption|summary)[^>]*>)!', '$1', $pee);
    if (strpos($pee, '<pre') !== false)
            $pee = preg_replace_callback('!(<pre[^>]*>)(.*?)</pre>!is', 'clean_pre', $pee );
    $pee = preg_replace( "|n</p>$|", '</p>', $pee );

    return $pee;
}

// remove the original wpautop function
remove_filter('the_excerpt', 'wpautop');
remove_filter('the_content', 'wpautop');

// add our new html5autop function
add_filter('the_excerpt', 'html5wpautop');
add_filter('the_content', 'html5wpautop');

看看更多的 svn 的 html5 开始主题,不是一个框架!

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。