Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 133
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 133
Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 134
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 134
Warning: Undefined variable $case in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 136
Warning: Undefined variable $ex_word in /www/wwwroot/yunfuwuqi.chinazhx.cn/wp-content/themes/lsw_FB6LDT/lsw/functions.php on line 138
要实现wordpress自动获取文章相关标题, 可以使用wordpress插件或者自定义代码实现. 以下是使用插件的方法:
1、安装插件:在wordpress后台中, 选择"插件"-"添加新插件", 搜索并安装"Related Posts by Zemanta"插件.
2、配置插件:在wordpress后台中, 选择"设置"-"Related Posts by Zemanta", 进入插件配置页面. 在"API Key"中输入您的Zemanta API Key, 如果没有可以在Zemanta网站上免费注册. 然后选择相关参数, 如显示数量、是否在文章中显示等.
3、更新文章:更新文章后, 插件会在文章编辑页面自动获取相关标题, 并在文章中显示相关文章列表.
除了使用插件, 您也可以使用自定义代码实现. 把下面的代码放到函数模板里面, 以下是一个简单的代码示例:
<?php $tags = wp_get_post_tags($post->ID); if ($tags) { $tag_ids = array(); foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id; $args=array( 'tag__in' => $tag_ids, 'post__not_in' => array($post->ID), 'posts_per_page'=>5, 'caller_get_posts'=>1 ); $my_query = new wp_query($args); if( $my_query->have_posts() ) { echo '<h3>Related Posts</h3><ul>'; while ($my_query->have_posts()) { $my_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php } echo '</ul>'; } } wp_reset_query(); ?>
将以上代码放置在单篇文章页面的合适位置, 即可实现自动获取相关文章标题. 需要注意的是, 以上代码仅供参考, 具体实现方法需要根据您的需要进行修改.