最新文章
WordPress页面教程:存档页(archive.php)
一、页面简介
显示存档页的页面(相当于按时间归类的栏目页)
二、页面参数
三、页面案例
……
WordPress页面教程:分类页(category.php)
一、页面简介
显示分类页的页面(相当于栏目页)
二、页面参数
get_header
get_the_category
function_exists
have_posts
the_post
……
WordPress页面教程:静态页(page.php)
一、页面简介
显示静态页的页面(包含各级静态页面)
二、页面参数
get_header
the_post
the_title
the_content
_e
get_the_titl……
WordPress页面教程:单页(single.php)
一、页面简介
single.php用于显示文章的页面(相当于细节页),可以查看文章的标题,文章的内容,文章的时间,文章的作者,文章的图片。
二、页面……
WordPress函数:the_tags
一、函数简介
显示帖子的标签。(Displays the tags for a post.)
二、函数参数
* @param string $before Optional. String to u……
WordPress函数:get_the_tags
一、函数简介
检索帖子的标签。(Retrieves the tags for a post.)
二、函数参数
* @param int|WP_Post $post Post ID or object……
WordPress函数:post_class
一、函数简介
显示后置容器元素的类。(Displays the classes for the post container element.)
二、函数参数
* @param string|……
WordPress函数:_e
一、函数简介
显示翻译后的文本。(Displays translated text.)
二、函数参数
* @param string $text Text to translate.
* @……
WordPress函数:next_post_link
一、函数简介
显示与当前帖子相邻的下一个帖子链接。(Displays the next post link that is adjacent to the current post.)
二……
WordPress函数:previous_post_link
一、函数简介
显示与当前帖子相邻的上一篇帖子链接。(Displays the previous post link that is adjacent to the current post.)
……