2012-03-19 12 views
0
私はWP出版物アーカイブを使用してい

プラグインWP_Queryタイトルのリンクは、私はので、私はコードの下に書いたカスタムテンプレートに出版添付ファイルを一覧表示したい

を示していません。

1つ目はタイトルのみを表示しています。しかし、私が欲しいのは、私がいただきました間違って1以下

<?php 

// The Query 
$the_query = new WP_Query('cat=13&post_type=publication&numberposts=5'); 

// The Loop 
    while ($the_query->have_posts()) : $the_query->the_post(); 
    echo '<li>'; 
    the_title(); 
    echo '</li>'; 
    endwhile; 

// Reset Post Data 
wp_reset_postdata(); 


?> 

は、リンクが表示されないダイレクトダウンロードリンクをリスト5最近のファイルを必要とする出版ファイルだから、カテゴリID 13の下

に直接リンクしているのですか?

  <?php 

      // The Query 
      $the_query = new WP_Query('cat=13&post_type=publication&numberposts=5'); 

      // The Loop 

       while ($the_query->have_posts()) : $the_query->the_post(); 
        echo '<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>';   
       endwhile; 

      // Reset Post Data 
      wp_reset_postdata(); 

      ?> 

答えて

0

あなたのループ内でこれを試してみてください:

echo '<a href="' . the_permalink() . '">' . the_title() . '</a>'; 
+0

リンクはOKで、タイトルはokですが、私のページにこのように表示されます タイトルへのリンクなし http://project.xxx.com/wp-content/plugins/wp-publication-archive/includes/openfile.php?file=http|project.xxx .com/wp-content/uploads/2012/03/tor_proce ss_monitoring.pdfデモファイルです(ダウンロード出版物) – user1132928

1

あなたの問題はここにある:

while ($the_query->have_posts()) : $the_query->the_post(); 
    echo '<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>';   
endwhile; 

あなたはPHPブロックに既にあるし、別のものを開きます。あなたはこの

<?php $the_query = new WP_Query(...); ?> 
<?php while ($the_query->have_posts()) : $the_query->the_post(); ?> 
    <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>   
<?php endwhile; ?> 
<?php wp_reset_postdata(); ?> 
+0

Thank You !!!ありがとうございました!!!ありがとうございました!! – user1132928

0

多分愚かに見えるが、work..tryこのような何かをやるべき.. :)

//ループ

while (have_posts()) : the_post(); <br /> 
    echo `'<div class="box_news">';` <br /> 
    the_post_thumbnail(array(60,60), array ('class' => 'post_home_img')); <br /> 
    echo `'<h3 class="post_home_title">';` <br /> 
    echo `'<a href="';` <br/> 
    the_permalink(); <br/> 
    echo `'">';` <br/> 
    the_title(); <br/> 
    echo `'</a>';` <br/> 
    echo `'</h3>';` <br/> 
    the_excerpt(); <br/> 
    echo `'</div>';` <br/> 
endwhile; 
関連する問題