如何自定义wordpress描述

how to customise the wordpress description

大家好,请问是否可以自定义WordPress描述。

例如,在我的本地网站上,描述是 Blah |废话 |废话

是否可以使用代码让每个 "blah" 具有不同的颜色,或者我是否必须写出新的代码块而不是使用

 <?php bloginfo('description');?>

如上所述,您可以在描述中使用 html 代码(将具有 类 样式)并使用此显示:

<?php echo html_entity_decode(get_bloginfo('description')); ?>

参考:https://css-tricks.com/forums/topic/allowing-html-tags-in-the-site-description-in-wordpress/