在元标记中使用换行符

发布于 2024-10-12 02:08:00 字数 305 浏览 7 评论 0原文

我想在我的网站描述元标记中使用换行符。我该怎么做,因为如果我看到源代码,它仍然只会显示
。我在代码中使用类似的东西:

<meta name="description" content="<?php echo $gotAlias ?><br/>
abc: <?php echo $got_overallrating ?>.<br/>
<a href='www.abc.com'>Visit www.abc.com</a>
">

I want to use line breaks in my website description meta tag. How do I do it, because if I see the source code it will still show <br/> only. Something like this I use in my code:

<meta name="description" content="<?php echo $gotAlias ?><br/>
abc: <?php echo $got_overallrating ?>.<br/>
<a href='www.abc.com'>Visit www.abc.com</a>
">

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝天白云 2024-10-19 02:08:00

为了在 AddThis 元内容标记中使用,\n 将被忽略。
所以这是行不通的。

For use in AddThis meta content tagging, the \n is ignored.
So it doesn't work.

笨死的猪 2024-10-19 02:08:00
//META TAGS
add_action( 'wp_head', 'tws_output_meta_tags', 5 );
function tws_output_meta_tags() {
    echo '<meta name="author" content="content text" />'."\n";   

}
//META TAGS
add_action( 'wp_head', 'tws_output_meta_tags', 5 );
function tws_output_meta_tags() {
    echo '<meta name="author" content="content text" />'."\n";   

}
趴在窗边数星星i 2024-10-19 02:08:00

尝试使用 "\n" 而不是
,例如 ;

Try "\n" instead of <br />, e.g. <?php echo "first line\nsecond line"; ?>;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文