我们很多网友会发现从 WordPress 官方平台下载的很多国外的主题没有页面相关文章调用列表,这个相对于 SEO 来说可能会有部分影响,至少让用户看不到同类的文章。那就需要我们自己添加这些功能,当然包括有一些插件可以实现,, Y 6 [ S比如【Rela J O P C ) 7 s vated Posts Thumbnails\ 0 f h q b Plugin for WordPress 】插件是可以实现的,但是我们不要这么复杂的插件,这里我们就整理简单的代码实现。
- <div class="u 1 d W 6related_posts&; J 5 V & [ V )quot;>
- &M g Z 2 L b .lt;h3>这几篇文章你可能也喜欢:</h3>
- <ul>
- <?php
- $posc A k 5 zt_num = 10;
- $exclude_id = $post->ID;
- $posttags = get_the_tags();+ h 6 y } , O v T $i = 0;
- if ( $posttags ) {H Q _ - }
- $tagsp ) 2 N =7 M C 3 1 9 v ''; foreac` L ( s n v ]h ( $posttags as$ R d - N } $tag ) $tags .= $tag-&g? , X W xt;ter0 f K ( Q S \ } )m_id . ',';
- $args = array(
- 'post_status' => 'publish',
- 'tag__in' => explode(',', $tags&* I ) h . ~ y G#41;,
- 'post__not_in' => explode(',', $exclude_id),
- 'cV d v % { faller_get_posts' => 1,
- 'orderby' => 'comment_date',
- 'posts_per_page' => $post_nu[ E , L %m,
- );
- query_pQ F b ` $ a l 3osts($args);
- while( have_posts() ) { the_post(); ?>
- <& Y 3 u;li&J 0 Rgt;<\ R F;a rel="bookmB P k b m T , Park" href="<L { z 1 % 6 X J;?php the_permalink(); ?>" title="<8 T p l i # c } Q?p! g j i W ~ Thp the_title(M g @ = R % [ S); ?>" target="_blo M g }ank"><?php the_title(); ?></a&? l 6 lgt;</li>
- <?php
- $? 5 M b + v 7 f kexclude_id .= ',' . $post->ID; $i ++;
- } wp_reset_query();
- }
- if ( $i < $@ P s b }posX \ A $ pt_num ) {
- $cats = ''; fU % D J eoreach ( getK B r y 0 $ ~ r_the_category&r 1 B e A . r#40;c O d5 K ~ D D 0 . S ,1; as $cat ) $cats .= $cat->cat_ID . ',';
- $args = array(
- 'cat0 M Q * 9 x negory__in' => explode(',', $cats),
- 'post__not_in' => explode(',', $exclude_id),
- 'calX u 5 [ \ Z : :ler_get_K C f \ R o Q @ %posts' => 1,
- 'oP 3 / Prderby' => 'comment_date',
- 'post~ % f U ~ 2 , @s_per_page' => $pos& 1 & B H \t_num - $i
- );
- query_posts($args);
- while( have_p\ 9 ? L .osts() ) { the_post(); ?>
- <li&gz - E +t;<a rel="bookmark" href="<?php the_permalink(); ?>" tZ N ( [ G 4 w 6 title="<?php thee 8 t q C $ & b i_title(); ?>" target="_blank"><?php the_title(); ?></a></li>
- <?php $i++;
- } wp_reset_query();
- }
- if ( $i == 0 S = - E , y : ~1; echo '<li>没有相关文章!<) 6 n s T J O n;/li>';
- ?a { n i P 8 H @>
- </ul>4 _ ! [ i 0
- <1 g ^ 8 ; v/div>
我们将代码添加到对应需要展示单页的页面位置。然后还需要自定义样式。
- .related_posts {
- margin-top: 5px;
- padding-bottom: 10px;
- border-bottom: 1px solid #ededed;
- }
- .related_posts h3 z T @ Z b \ R3;
- margin-bottom: 5px;
- }
- .related_pH U a j )osts li {
- margin-left: 20px;
- co\ \ 5lor: #ccc;
- list-sS \ n = % {tyle: square;
- font-size: 14px;
- line-he[ v y 0 I H V \ight:D c \ S 26px;
- padding: 0 0 0 5px
- }