wordpress主题

wordpress4.0制作网站分类图文列表, pre function

日期:2014-09-20 阅读:4269

dmandwp系统 - wordpress系统和DM系统区块建站>>


进入网易云课堂播放
    |    更多视频教程>

静态效果的源码>> 

--------------

这节课,我们要开始接触php 和 数据库的字段了,具体看视频。

在function加下面代码:

 function pre($v) {
    echo '<pre>'.print_r($v,1).'</pre>';
}  

这样在分类列表里,可以用 pre($post);来打印对象了。
http://www.phpvar.com/archives/2316.html
http://codex.wordpress.org/Function_Reference/the_post 
http://codex.wordpress.org/Class_Reference/WP_Query
 

在post里,有一些the_开头的变量,是在这两个文件里:
wp-includes 里的 post-template.php 和 post-thumbnail-template.php

------------

这里要使用require来调用其他文件。 

---------

关于分类列表的缩略图片:

<?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
        <div class="entry-thumbnail">
            <?php the_post_thumbnail();  ?>

        </div>
        <?php else : echo DEFIMGDIV; ?>   --- DEFIMGDIV 在这里
            
        <?php endif; ?>

-------------------------

 

<<点击返回