从零开始给wordpress写主题,学习笔记
wordpress吧
全部回复
仅看楼主
level 4
<!--调title--><link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>" />
<!--调图片--><img src="<?php echo get_template_directory_uri();?>/images/logo.png" />
<!--调网站名称--><?php bloginfo('name');?>
<!--调网站描述--><?php bloginfo('description');?>
<!--调文章标题--><?php echo $post->post_title;?>
<!--调文章内容--><?php echo $post->post_content;?>
<!--循环调文章标题-->
<?php
if(have_posts()):while(have_posts()):the_post();
?>
<p><?php the_title();?></p>
<?php endwhile;?>
<?php endif;?>
<!--调网页头部--><?php get_header();?>
<!--调其它文件--><?php get_template_part('header');?>
<!--调其它目录文件--><?php get_template_part('/mulu/header','one');?>
<!--调搜索框--><?php get_search_form();?>
另外可自己新建 searchform.php
<!--调评论--><?php comments_template();?>
<!--调自定义评论文件--><?php comments_template('/pinglun.php');?>
url:
/?p=1
/?cat=1
/?author=1
/?year=1234
/?m=123456
/?s=word
2018年11月20日 14点11分 1
level 4
主循环:
建立single.php文件,调出单篇文章:
<?php if(have_posts()): ?>
<?php while( have_posts() ): ?>
<?php the_post();?>
<h1><?php the_title();?></h1>
<h5><?php the_content();?><</h5>
<?php endwhile;?>
<?php endif; ?>
等价于:
<?php if(have_posts()){ ?>
<?php while( have_posts() ){ ?>
<?php the_post();?>
<h1><?php the_title();?></h1>
<h5><?php the_content();?><</h5>
<?php } ?>
<?php } ?>
建立category.php文件,循环调文章标题内容:
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<h1><?php the_title();?></h1>
<h3><?php the_content();?></h3>
<?php endwhile; ?>
<?php endif; ?>
建立category.php文件,循环调文章标题内容,如果没有相关文章:
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<h1><?php the_title();?></h1>
<h3><?php the_content();?></h3>
<?php endwhile; ?>
<!--如果没有相关文章-->
<?php else: ?>
<h2>暂时没有文章</h2>
<?php endif; ?>
---------------------
作者:李文辉1985
来源:CSDN
原文:https://blog.csdn.net/li_wen_hui/article/details/84332127
版权声明:本文为博主原创文章,转载请附上博文链接!
2018年11月21日 15点11分 2
level 1
不错的 学习就是要一步一步来
我也正在学习
2018年11月26日 15点11分 3
加个唯 心吧 602 365 018
2018年11月26日 15点11分
level 13
。。。
2018年11月27日 02点11分 4
level 1
视频自适应外链没有看到
2018年12月11日 09点12分 6
[疑问]
2018年12月12日 05点12分
1