如何设置站点字幕的文本格式

时间:2015-04-12 作者:Web_Designer

如何在wordpress博客的副标题中将一个单词斜体化?仪表板“常规设置”中的“标语”字段不支持降价。

1 个回复
SO网友:websupporter

如果输出描述时使用bloginfo(), 您可以使用过滤器bloginfo.

add_filter( \'bloginfo\', \'wpse183972_description_italic\', 10, 2 );
function wpse183972_description_italic( $text, $show )
{
    if (\'description\' == $show) {
        $word = \'WordPress\';
        $text = preg_replace( \'^(\' . preg_quote( $word ) . \')^\', \'<em>$1</em>\', $text );
    }
    return $text;
}

结束

相关推荐

如何使子主题的css在保存时更新?

当前系统WordPress 4.1.1主题:的子主题Lovecraft</我的主题,Lovecraft的一个子主题,正在用URI调用样式表[…]/blog/wp-content/themes/lovecraft-child/style.css?ver=4.1.1. 请注意?ver=4.1.1. 当我编辑时style.css 并将新版本上载到我的服务器,仍有一个调用style.css?ver=4.1.1 在<head>, 并且我的更新未应用。如果我导航到style.css 在我的浏览器中,