如何更改相关帖子的动态链接

时间:2016-01-18 作者:user1588

我目前有一个主题是由另一个开发人员创建的,我只需要更改一些小事情来完成它。

我有点被这一点困住了:主页的一部分会拉入最新的博客条目,但当你点击标题时,链接不是指向文章,而是指向某个页面。我需要更改链接,这样当你点击一个帖子标题时,它就会带你去那篇帖子。

这是当前代码:

 <?php
            // Start the Loop.               
            $args = array(\'post_type\'=>\'article \',\'order\' => \'ASC\');
            query_posts( $args );                
            while ( have_posts() ) : the_post();
             echo \'<div class="slide">\';
              if ( has_post_thumbnail() ) {
              the_post_thumbnail(\'large\'); //To show image
             }  
            echo \'<div class="blog_content"> <div class="blog_date">\';
              //echo date(\'d F y\' strtotime(the_time()));
               the_time(\'d F y\');
             echo \'</div>\';              
              echo \'<div class="blog_title"> <a target="_blank" href=\'. esc_url( home_url( \'/case-studies\' ) ) .\'>\';
             the_title();//To show title        
             echo \'</a></div></div></div>\'; 
            endwhile;
        ?>
我应该如何将链接放入此部分"href=\'. esc_url( home_url( \'/case-studies\' ) ) .\'> 这样就可以链接到帖子了?

我试过我在抄本上看到的一些东西。wordpress。org,但它们不起作用,所以我显然没有正确使用它。

1 个回复
最合适的回答,由SO网友:shanebp 整理而成

我试过我在抄本上看到的一些东西。wordpress。组织。。。

例如

您是否尝试过:

href=\'. get_permalink() .\'>

相关推荐

Generate permalinks

我希望永久链接像youtube一样,由9位数的字母和数字生成我修改了这个代码add_filter( \'wp_unique_post_slug\', \'unique_slug_108286\', 10, 4 ); function unique_slug_108286( $slug) { $n=4; $slug = bin2hex(random_bytes($n)); //just an example return $slug; }&