引入Wordpress帖子标题作为链接

时间:2017-01-04 08:00:25

标签: php wordpress

我有一个Wordpress网站,我正在使用基本循环来引入每个Wordpress帖子

HTML

<?php 
 if ( have_posts() ) {
     while ( have_posts() ) {
     the_post(); 
     //
     // Post Content here
     //
    } // end while
  } // end if
?>

但是我只想把每个帖子的标题作为该帖子的链接(在它自己的single.php页面上)而不是所有内容/图像等等。我只能得到全部或全部结果

2 个答案:

答案 0 :(得分:0)

通过保留您的代码,您可以这样做。

<?php 
 if ( have_posts() ) {
     while ( have_posts() ) {
     the_post(); 
     //
     echo '<h2><a href="'.get_the_permalink().'">'.get_the_title().'</a></h2>';
     //
    } // end while
  } // end if
?>

这样你只能通过永久链接获得你的头衔。让我知道它是否可以帮助你或其他任何需要的东西?

答案 1 :(得分:0)

嗨,你可以给这样的东西

<?php 
 if ( have_posts() ) {
 while ( have_posts() ) {
 the_post(); 
 //
 echo '<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>';
 //
  } // end while
 } // end if
?>

有关详细信息,请参阅此网站 https://codex.wordpress.org/Function_Reference/the_permalink