私は次のコードを持っていますが、もっと読むリンクが機能していないようです。関数ファイルの抜粋を有効にして、誰か助けてください。
以下のクエリ投稿:-
<?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;?>