我們有些時候下載的海外的WordPress主題的內置SEO功能不夠好,都需要我們自己用插件或者手動修改代碼實現(xiàn)一些功能。比如面包屑導航、相關文章調用都需要我們設置。麥子的策略就是能不用插件的就不用插件,這里我要在單頁模板中調用相關文章,這里有一組PHP代碼實現(xiàn)。
<div class="related_posts"> <h3>這幾篇文章你可能也喜歡:</h3> <ul> <?php $post_num = 10; $exclude_id = $post->ID; $posttags = get_the_tags(); $i = 0; if ( $posttags ) { $tags = ''; foreach ( $posttags as $tag ) $tags .= $tag->term_id . ','; $args = array( 'post_status' => 'publish', 'tag__in' => explode(',', $tags), 'post__not_in' => explode(',', $exclude_id), 'caller_get_posts' => 1, 'orderby' => 'comment_date', 'posts_per_page' => $post_num, ); query_posts($args); while( have_posts() ) { the_post(); ?> <li><a rel="bookmark" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></li> <?php $exclude_id .= ',' . $post->ID; $i ++; } wp_reset_query(); } if ( $i < $post_num ) { $cats = ''; foreach ( get_the_category() as $cat ) $cats .= $cat->cat_ID . ','; $args = array( 'category__in' => explode(',', $cats), 'post__not_in' => explode(',', $exclude_id), 'caller_get_posts' => 1, 'orderby' => 'comment_date', 'posts_per_page' => $post_num - $i ); query_posts($args); while( have_posts() ) { the_post(); ?> <li><a rel="bookmark" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a></li> <?php $i++; } wp_reset_query(); } if ( $i == 0 ) echo '<li>沒有相關文章!</li>'; ?> </ul> </div>
這里我們將代碼添加到需要調用展現(xiàn)當前篇幅文章相關文章,然后對于CSS部分我們自己設置。
評論