如何仅使用标题缩略图创建主题?

时间:2013-06-20 13:45:29

标签: wordpress themes thumbnails

我想要一个简单的wordpress主题,如下所示: enter image description here

我在photoshop中创建了这个,所以我可以告诉你。 我该怎么做?我只想要一个标题,并将帖子显示为缩略图。

2 个答案:

答案 0 :(得分:0)

currentlly wordpress需要运行一些基本文件。您需要根据所需的主题进行编辑。

  1. wp-content > themes > your folder
  2. 中创建一个文件夹
  3. 放一些必要的文件,例如header.php, footer .php , style.css, page.php
  4. 您需要根据所需的样式进行编辑,一旦从管理面板创建pages并享受!

答案 1 :(得分:0)

你好,你可以从这里学习wordpress设计: -

http://codex.wordpress.org/Site_Design_and_Layout

http://rockablethemes.com/wordpress-themes-tutorials/

但我会建议你购买高级主题

http://themeforest.net/

从这里搜索免费主题

http://wordpress.org/themes/search.php?q=video

如果你自己创建主题,我建议你问一下你遇到的确切问题。

这里是您需要在index.php中添加代码的代码

<?php if ( have_posts() ) : ?>

            <?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>

<div class="post box">
<h2><?php the_title(); ?></h2>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(array(215,152), array('class' => 'thumbnail')); ?></a>
</div>

            <?php endwhile; ?>
    <div class="navigation">      
<?php posts_nav_link(' ','<img src="'.get_template_directory_uri().'/images/prevl.png" alt="Next" border="0" class="left" align="right" />','<img src="'.get_template_directory_uri().'/images/nextl.png" alt="Next" border="0" align="right"  class="right" />'); ?> </div>
     <?php endif; ?>

三江源