Blog template PHP

时间:2012-08-17 作者:João Paulo

以下是WP wordpress网站:http://www.joaoalexandre.com/wordpressteste/

以下是博客部分:http://www.joaoalexandre.com/wordpressteste/artigos/

我怎样才能显示一个包含帖子和可能的类别的普通简单博客,并清除它当前的额外垃圾(滑块、“服务”等)?

我想答案在于为这个“Artigos”页面(即博客)创建一个新模板?

2 个回复
最合适的回答,由SO网友:Danny 整理而成

这可能就是您想要的:`

            <div class="blog-post">

                <?php static $count = 0; if ($count == "4") { break; } else { ?>                

                <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>

                <ul class="meta">
                    <li><?php the_time(get_option(\'date_format\')); ?></li>
                    <li>| </li>
                    <li><span>Posted By</span> <?php the_author_posts_link(); ?></li>
                    <li>| </li>
                    <li><a href="#"><?php comments_number(\'No comments yet\',\'1 comment\',\'% comments\')?></a></li>
                </ul><!--end of meta-->

                <p>
                    <?php echo substr(strip_tags($post->post_content), 0, 350);?>
                    ...&nbsp;<a href="<?php the_permalink() ?>" class="readMore">Read More.</a>
                </p><!-- Display a maximum of 350 characters from the blog post -->                                             

                <?php $count ; } ?>                                   

            </div><!--end of blog-post-->

            <?php endwhile; ?>

            <?php endif; ?>     

            <?php if(function_exists(\'wp_paginate\')) {
                wp_paginate();
            } ?> `
非常简单,每页可以拉4篇受字符限制的博客帖子(350篇)。只需确保在Wordpress阅读设置中设置了主页和博客页面。

SO网友:Lakshmanan PHP

你没有明确提到你的博客部分。如果artigos 是一个页面,可以使用页面模板。希望this 将有助于您创建页面模板。

如果你的博客部分是一个类别,那么你应该创建一个category template.

结束

相关推荐

Custom post types templates

我已经注册了一个名为“Services”的自定义帖子类型,但当我给这篇帖子提供模板“single Services.php”时,它不接受这个,而是选择了“homepage.php”模板,你能告诉我这个问题吗?它也没有使用“archive services.php”模板,而是使用blog模板(index.php)使现代化代码如下:add_action(\'init\', \'services_register\'); function services_register() { $