我为Wordpress编写了一个简单的短代码,根据特定的内容搜索输出一组内部而另一组。
问题是,我一直在我的输出中得到这个
标签,这让我的代码陷入困境。虽然我可以忍受它,但我不能幸福地生活。
我已添加
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
在我主题的“functions.php”中。但结果是一样的。
短代码如下:
$return = "<div class='tarimas-teaser-container'>";
$n = 0;
if ($wp_qry->have_posts()):
while ($wp_qry->have_posts()): $wp_qry->the_post();
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($wp_qry->post->ID), 'thumbnail');
$return .= "<div class='tarimas-teaser-unit'><h4><a href='{$wp_qry->post->guid}'>{$wp_qry->post->post_title}</a></h4>";
$return .= "<a href='{$wp_qry->post->guid}'><img src='{$thumb[0]}' width='{$a['ancho_img']}' height='{$a['alto_img']}' class='tarimas-teaser-img' /></a>$div_precio";
$return .= "</div><!--tt-unit-->";
endwhile;
endif;
$return .= "</div><!-- ttttt-container -->";
return $return;
我甚至没有关于构造代码的换行符。但我明白了:
<div class='tarimas-teaser-container'>
<div class='tarimas-teaser-unit'>
<h4><a href='http://www.tarimasterhurne.es/productos/roble-blanco-arena-1199020372/'>Roble Blanco Arena</a></h4>
<p><a href='http://www.tarimasterhurne.es/productos/roble-blanco-arena-1199020372/'><img src='http://www.tarimasterhurne.es/wp-content/uploads/2012/07/1199020372_main-150x150.jpg' width='100' height='100' class='tarimas-teaser-img' /></a>
<div class='precio mini'>10,93</div>
</div>
<p><!--tt-unit-->
<div class='tarimas-teaser-unit'>
<h4><a href='http://www.tarimasterhurne.es/productos/roble-marron-rojo-1199020368/'>Roble Marrón Rojo</a></h4>
<p><a href='http://www.tarimasterhurne.es/productos/roble-marron-rojo-1199020368/'><img src='http://www.tarimasterhurne.es/wp-content/uploads/2012/07/1199020368_main-150x150.jpg' width='100' height='100' class='tarimas-teaser-img' /></a>
<div class='precio mini'>11,03</div>
</div>
<p><!--tt-unit-->
<p><!-- ttttt-container --></p>
这让我发疯了。 再说一遍:我已经删除了functions.php中的wp_autofilter。
答案 0 :(得分:1)
是的,一些疯狂的插件。
检查每个插件...启用和禁用每个插件