我目前有一个主题是由另一个开发人员创建的,我只需要更改一些小事情来完成它。
我有点被这一点困住了:主页的一部分会拉入最新的博客条目,但当你点击标题时,链接不是指向文章,而是指向某个页面。我需要更改链接,这样当你点击一个帖子标题时,它就会带你去那篇帖子。
这是当前代码:
<?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,但它们不起作用,所以我显然没有正确使用它。
最合适的回答,由SO网友:shanebp 整理而成
我试过我在抄本上看到的一些东西。wordpress。组织。。。
例如
您是否尝试过:
href=\'. get_permalink() .\'>