0

特定のコンテンツ検索に従って、さらに別の内部のグループを出力する、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 を削除しています。

4

1 に答える 1

1

はい、クレイジーなプラグインです。

すべてのプラグインを確認する ... すべてのプラグインを有効または無効にする

于 2012-08-17T14:23:31.517 に答える