我有下面的代碼,但它出現在更多的鏈接無法正常工作,請會有人頭腦幫助,我已經激活功能文件摘錄:摘錄發表在WordPress的帖子
查詢後下: -
<?php $the_query = new WP_Query('showposts=5'); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php the_excerpt('Read more...'); ?>
<a href="<?php echo get_permalink(); ?>"> Read More...</a>
<?php endwhile;?>
嗨,那裏,我做了這個,它不工作,因此我認爲這是我的PHP代碼 – 2013-03-03 13:36:06
我更新了與PHP代碼的答案。 – birgire 2013-03-03 13:43:18
你能解釋一下'read the link is not working'是什麼意思嗎?你的意思是你的代碼中'the_excerpt'函數之後的鏈接。 Ps:你應該使用'posts_per_page'而不是舊的'showposts'參數。 – birgire 2013-03-03 14:08:18