我认为,如果你已经准备好定制一个循环来修改帖子标题的链接URL,这是可行的。
使用名为title_link
, 您的代码最终可能会显示以下内容:
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>"> <!-- post -->
<?php $titleLink = get_post_meta($post->ID, \'title_link\', true); ?>
<h1><a href="<?php echo $titleLink; ?>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>
</div> <!-- /post -->
<?php endwhile; ?>
这家伙的功劳
here.