0

特定のカテゴリの投稿を表示していますが、そのタイトルをその投稿が属する投稿にリンクさせることができません。助けが必要。

<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args= array(
        'category_name' => 'nyheder', // Change these category SLUGS to suit your use.
        'paged' => $paged,
        'numberposts' => 1 
);
query_posts($args); ?>

<?php 
while ( have_posts() ) : the_post(); 
?>
<p class="colorWhitesmoke"><?php the_date(); ?></p>
<a href="<!--THIS IS WHERE I HAVE NO IDEA WHAT TO WRITE... i was trying the following, but didn't quite do the trick. --><?php get_permalink( $paged ); ?>">

<h3 class="colorWhitesmoke"><?php the_title(); ?></h3>
</a>
<div class="colorWhitesmoke"><?php the_excerpt(); ?></div>

<?php endwhile; 
the_bootstrap_content_nav();
?>
4

2 に答える 2

1

wordpress の「ループ」内では、echo get_permalink()引数なしで単純に を使用できます。または、the_permalink()これを自動的にエコーする同等のものです。

コードは次のようになります。

<a href="<?php the_permalink(); ?>"> ... </a>
于 2013-01-15T10:13:24.113 に答える
0

the_permalinkはあなたが必要とするものです...

于 2013-01-15T10:09:38.510 に答える