gpt4 book ai didi

php - wordpress 主题中 的未知输出

转载 作者:太空宇宙 更新时间:2023-11-04 03:41:43 25 4
gpt4 key购买 nike

关于我在 wordpress 中的新主题 <em>标签输出了,但我不知道为什么...我不使用任何 <em>标记我主题中的任何位置,所以我不明白为什么会输出并破坏我的设计。

这是我的 index.php 的内容

 <?php get_header(); ?>
<div class="row">
<div class="col-sm-12 blog-content">
<div class="container">
<div class="col-sm-8 blog-main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="col-sm-12 blog-post">
<div class="date">
<div class="corner"></div>
<?php the_date('d M Y'); ?>
</div>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div class="meta">
<i class="icon-user"></i>
<span><?php the_author(); ?></span>

<i class="icon-bookmark"></i>
<span><?php the_category(', '); ?></span>

<i class="icon-bubble"></i>
<a href="<?php the_permalink() ?>"><?php comments_number('0 Kommentare', '1 Kommentare', '(% Kommentare)' );?></a>
</div>
<div class="entry">
<?php echo apply_filters('the_content', substr(get_the_content(), 0, 400) ); ?>
</div>
<div class="row">
<div class="col-sm-offset-8 col-sm-4 col-md-offset-9 col-md-3 col-lg-offset-9 col-lg-3 more">
<div class="btn">
<a href="<?php the_permalink() ?>">Mehr lesen</a>
</div>
</div>
</div>
</div>
<?php endwhile; endif; ?>
</div>

<div class="col-sm-3 col-sm-offset-1 blog-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>

<?php get_footer(); ?>

在这里您可以实时观看我的问题。 thorstenreichelt.de

感谢您的帮助;)

最佳答案

您的内容中有一个 em 标签(不在您的主题中)。当您为预览截断它时,在前 400 个字符中您有开始的 em 标记但没有结束标记,因此最终的 HTML 和您的设计是“损坏的”。

看看strip_tags() PHP 函数,或 Wordpress 主题函数中使用的任何等效函数。

关于php - wordpress 主题中 <em> 的未知输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24820236/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com