排序
WordPress判断置顶文章函数:is_sticky
WordPress函数is_sticky用于判断当前文章是否置顶,在WordPress主题的制作中,可以通过判断文章是否置顶以应用不同的样式,例如加一个推荐的标签。
WordPress自定义文章类型归档页标题函数:post_type_archive_title
WordPress函数post_type_archive_title用于在自定义文章类型归档页输出标题,通常在archive-{$post_type}.php模板中使用。
WordPress获取最新文章函数:wp_get_recent_posts
WordPress函数wp_get_recent_posts用于获取最新文章,包括文章的标题、别名、状态、发表时间、修改时间、内容等信息。
WordPress自定义文章类型删除编辑区功能函数:remove_post_type_support
WordPress函数remove_post_type_support用于删除自定义文章类型编辑区功能。
WordPress检查文章类型是否存在:post_type_exists
WordPress函数post_type_exists检查文章类型是否存在,如果已存在则返回true。通常在使用函数register_post_type()注册文章类型前应该先使用post_type_exists()函数进行检查。
WordPress根据文章ID获取文章类型函数:get_post_type
WordPress函数get_post_type获取当前文章或指定文章的文章类型,在The Loop主循环中使用则不需要传递文章ID。
WordPress注册文章类型函数:register_post_type
WordPress函数register_post_type用于注册新的文章类型,不应该在init动作前挂载,所有分类法都通过$taxonomies参数注册,以确保在使用诸如“parse_query”或“pre_get_posts”之类的钩子时的一...
WordPress获取当前分类信息标签:get_the_category
WordPress模板标签get_the_category用于获取当前分类信息,包含分类ID、分类名称、分类别名、分类描述、父分类ID、分类下文章数量等。