WordPress函数wp_register()
描述 如果用户已登录,此标记将显示“站点管理”链接,如果用户未登录,则显示“注册”链接。 如果未选中管理 > 设置 > 常规 > 成员资格:任何人都可以注册框,则不提供“注册”链接。...
WordPress函数bloginfo()
介绍 用于显示博客信息的函数。 参数 $show (string) (选填) 显示网站的信息。 默认返回值: '' 使用 参数配置: 'name'-显示 设置 - 常规 - 站点标题 'description'-显示 设置 - 常规 - 副标题 ...
WordPress函数wp_meta()
介绍 WordPress默认提供了很多小组件,“功能”小组件就是其中的一个。通过wp_meta这个动作(action),我们就可以来定制自己的小工具。 使用 <?php wp_meta(); ?> 示例 添加一个自己收藏...
WordPress函数wp_title()
介绍 wp_title( string $sep = '»', bool $display = true, string $seplocation = '' ) wp_title() 是用于显示页面标题的函数,通常和 bloginfo() 一起用。 参数 $sep (string) (Optional) de...
WordPress函数get_current_blog_id()
get_current_blog_id()在WordPress主题开发过程中,多站点的情况下用的比较多。 介绍 返回当前WordPress的ID。 使用 <?php get_current_blog_id() ?> 参数 无。 返回值 (integer) Blog id...
WordPress函数get_bloginfo
get_bloginfo( string $show = '', string $filter = 'raw' ) 描述 get_bloginfo()是取值,bloginfo()是输出。 $show 包含的可能值: 'name' - 网站标题(在设置>常规中设置) 'description'...
WordPress函数the_author_link()
介绍 the_author_link() 是显示文章作者的网站链接,该链接会加在 the_author() 显示的公开名秒文本中。 网站链接来自 仪表盘 -> 用户 -> 我的个人资料 中的“站点”所填写的值。 并且该...
WordPress注册js函数wp_enqueue_script()
wp_enqueue_script( string $handle, string $src = '', array $deps = array(), string|bool|null $ver = false, bool $in_footer = false ) wp_enqueue_script() 是WordPress注册和引用一个js...
WordPress函数the_author()
介绍 the_author() 是显示作者公开名的函数,此函数必须在 the_loop 循环标签内使用才有效。 使用 <?php the_author(); ?> 示例 显示公开名: <p>This post was written by <?ph...
WordPress函数wp_dropdown_users()
介绍 创建一个下拉选择输出所有作者。 使用 <?php wp_dropdown_users( $args ); ?> 默认使用 <?php $args = array( 'show_option_all' => null, // string 'show_option_none' =>...
WordPress函数the_author_posts_link()
介绍 the_author_posts_link() 显示作者所有文章的链接,链接的文字是作者的“公开显示名”。链接地址会链接到 作者模板 ,如果没有作者模板就会更具 模板层次结构 用其他模板来显示。该函...
WordPress函数the_author_posts()
介绍 the_author_posts() 显示作者已发布的文章数量,必须使用在 the_loop 中。 使用 <?php the_author_posts(); ?> 示例 显示作者名称和已经发布的文章数量。 <p> <?php the_au...
WordPress函数the_author_meta()
介绍 the_author_meta() 显示用户资料的函数,如果该函数在 the_loop 中,那么将显示loop中的用户资料,如果在 the_loop 之外使用,必须指定用户ID才能输出内容。 使用 <?php the_author_met...