Home  >  Article  >  CMS Tutorial  >  How to use wordpress as a template

How to use wordpress as a template

angryTom
angryTomOriginal
2019-07-19 09:12:592970browse

How to use wordpress as a template

Let me teach you how to make a simple wordpress template ( No style writing), mainly the calls of some related functions

Recommended tutorial: wordpress tutorial

1. Title call for wordpress template production

<title><?php bloginfo(&#39;name&#39;); ?><?php wp_title(); ?></title>
//格式是:网站名》文章名,比如:卓创威视》无线门铃zc-08
<title><?php the_title(); ?>_<?php bloginfo(&#39;name&#39;); ?></title>
//格式是:文章名_网站名,比如:无线门铃zc-08_卓创威视
<a href="<?php bloginfo(&#39;url&#39;); ?>"><?php bloginfo(&#39;name&#39;); ?></a>
//标题加链接

The first type 3d92d0ecae4633f7f767c572cdf68c8b adds an arrow before the title by default, which can be used to call it on the homepage; and 2dc51b38c99501b394e46960b1866842 is purely Calling the article title can be used in articles and list pages

2. List calling in wordpress template production

<?php if(have_posts()) : ?>
    <?php while(have_posts()) : the_post(); ?>
    //if(have_posts()) – 检查博客是否有日志。while(have_posts()) – 如果有日志,那么当博客有日志的时候,执行下面 the_post() 这个函数。the_post() – 调用具体的日志来显示。
        <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
        //调用标题,带链接
        <?php the_excerpt(); ?>
        //或者用这个调用文章摘要
    <?php endwhile; ?>
        <?php posts_nav_link(); ?>
        //分页导航
<?php else : ?>            
    没有文章   
<?php endif; ?>
//注释:并不是所有的代码都需要两部分用来打开和关闭。有些代码能够自我关闭,这就解释了 have_posts() 和 the_post(); 这两个函数。因为 the_post(); 在 if() 和 while() 的外面,只需要分号去结束或者关闭。

3. Article page call for WordPress template production

<?php if(have_posts()) : ?>
    <?php while(have_posts()) : the_post(); ?>
    //if(have_posts()) – 检查博客是否有日志。while(have_posts()) – 如果有日志,那么当博客有日志的时候,执行下面 the_post() 这个函数。the_post() – 调用具体的日志来显示。
        <h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
        //调用标题,带链接
        <?php the_content(); ?>
        //调用文章全部内容
    <?php endwhile; ?>
        <?php previous_post_link(&#39;%link&#39;) ?> <?php next_post_link(&#39;%link&#39;) ?>
        //上一页、下一页导航
<?php else : ?>            
    没有文章
<?php endif; ?>
//注释:并不是所有的代码都需要两部分用来打开和关闭。有些代码能够自我关闭,这就解释了 have_posts() 和 the_post(); 这两个函数。因为 the_post(); 在 if() 和 while() 的外面,只需要分号去结束或者关闭。


##

The above is the detailed content of How to use wordpress as a template. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn