好物优选点击查看详情 京东购买

暂无内容

wordpress建站过程4

 1 <?php  2  3  4 get_header(); ?>  5  6 <div id="primary" class="content-area col-md-9">  7 <main id="main" class="site-main" role="main">  8  9 <?php if ( have_posts() ) : ?> 10 11 <?php /* Start the Loop */ ?> 12 <?php while ( have_posts() ) : the_post(); ?> 13 14 <?php 15  /* Include the Post-Format-specific template for the content. 16  * If you want to override this in a child theme, then include a file 17  * called content-___.php (where ___ is the Post Format name) and that will be used instead. 18  */ 19  get_template_part( 'content', get_post_format() ); 20 ?> 21 22 <?php endwhile; ?> 23 24 <?php blain_pagination(); ?> 25 26 <?php else : ?> 27 28 <?php get_template_part( 'no-results', 'index' ); ?> 29 30 <?php endif; ?> 31 32 </main><!-- #main --> 33 </div><!-- #primary --> 34 35 <?php get_sidebar(); ?> 36 <?php get_footer(); ?>

以上是一个index.php

中间有几个重要的函数:

get_header()————调用header.php,该函数和下面几个一样是wordpress提供的函数。

get_footer()————调用footer.php

get_sidebar()————调用sidebar.php

get_template_part('a','b')——调用其他文件,如果存在a-b.php文件,将其调用,没有就只调用a.php

index.php的内容大多都是调用,将其他php内容调用组合起来,当然,你要直接在其中写代码也可以。

have_posts() ) : the_post();
循环文章,如果存在,则一章章的读取,每一次读取都会将这个while整个部分循环一遍。这个是用于循环输出文章的标题等简单信息的。
这一段的意思是循环读取文章,每读取了一次,就加载content.php或content-n.php文件(后面的函数用于判断文章类型,除了系统设定的之外,还能在functions.php中添加几个)
而这个content.php就是如何展示文章的文件,是否要缩略图,标题的大小和位置等等都会在这里规定,例如:

wordpress建站过程4插图

这样。当然除了这种类似贴吧的首页之外,也能放其他东西,例如视频什么的,不一定非要调用文章部分内容。


原文链接:https://blog.csdn.net/a23180012142/article/details/101297379?ops_request_misc=&request_id=96a493d195be44689b4d87350fe102b1&biz_id=&utm_medium=distribute.pc_search_result.none-task-blog-2~blog~koosearch~default-29-101297379-null-null.268%5Ev1%5Econtrol&utm_term=docker%E3%80%81wordpress%E3%80%81wordpress%E5%BB%BA%E7%AB%99%E3%80%81wordpress%E4%B8%BB%E9%A2%98%E3%80%81%E5%AE%B9%E5%99%A8%E9%95%9C%E5%83%8F%E3%80%81

© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享