WordPress主题制作教程常用的函数调用举例

前端之家收集整理的这篇文章主要介绍了WordPress主题制作教程常用的函数调用举例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

用久了wordpress我们都有想自己动手自作主题的想法,毕竟现成的主题未必适合自己,wp虽然函数很多,制作很复杂,但是最常用的一些函数必须掌握,对我们制作主题的帮助很大,下面的常用函数标签或许对你很有帮助,是我们必须掌握的函数


建议阅读:


1、wordpress主题制作index.PHP基本框架代码


2、利用Bootstrap构建你的响应式wordpress主题(一)

PHP get_header(); //引用头部文件 ?>

 

PHP get_footer(); //引用底部文件 ?>

 

PHP get_sidebar(); //引用侧边栏 ?>

 

PHP the_title(); //文章标题 ?>

 

PHP the_permanlink(); //文章固定链接 ?>

 

PHP query_posts('showposts=10');

while(have_posts()):the_post(); //查询日志并在有日志的情况下显示10篇日志 ?>

PHP endwhile; ?>

 

PHP the_time("Y-m-d"); //显示文章的发布日期,当Y字母为小写时,则只会显示年份的末两位 ?>

 

PHP get_template_part('loop','category'); //引用模板文件 ?>

 

PHP is_single(); //判断是否是日志

is_page(); //判断是否是日志

is_category(); //判断是否是分类

is_author(); //判断是否是作者

is_archive(); //判断是否是日期归档

is_home(); //判断是否是首页 ?>

 

PHP printf(__('%s','tanhaibonet'),get_the_author()); //获取作者名称 ?>

 

PHP the_author_Meta('description'); //获取用户描述 ?>

 

PHP printf( __('%s','tanhaibonet' ),'显示分类名称 ?>

 

PHP $category_description = category_description(); echo $category_description; //显示分类的描述 ?>

 

PHP query_posts('showposts=5&tag_id=100&orderby=rand');

while(have_posts()):the_post(); //随机显示5篇标签ID为100的文章 ?>

PHP endwhile; ?>

 

PHP $Imagesurl = wp_get_attachment_url( get_post_thumbnail_id(get_the_ID())) ? wp_get_attachment_url( get_post_thumbnail_id(get_the_ID())):get_template_directory_uri().'/avatar.jpg'; //获取特色图像 ?>

PHP echo $Imagesurl; ?>" />

 

PHP wp_tag_cloud(); //显示标签云 ?>

 

PHP query_posts('showposts=5&tag_id=100&offset=1');

while(have_posts()):the_post(); //显示5篇标签ID为100的文章,并排除第一篇 ?>

PHP endwhile; ?>

 

PHP comments_popup_link(__('我要评论',__('1条评论',__('% Comments','tanhaibonet')); //显示评论链接 ?>

 

PHP the_category(','); //显示文章分类 ?>

 

PHP the_tags('','、',''); //显示文章标签列表 ?>

 

PHP the_excerpt(); //显示文章摘要 ?>

 

PHP the_content(); //显示文章内容 ?>

原文链接:https://www.f2er.com/wordpress/422849.html

猜你在找的wordpress相关文章