分类: WP开发函数
thumbnail

WordPress函数:wp_get_document_title

一、函数简介 返回当前页面的文档标题。(Returns document title for the current page.)   二、函数参数 @return st……
thumbnail

WordPress函数:the_custom_logo

一、函数简介 显示链接到主页的自定义徽标,除非主题支持删除主页上的链接。(Displays a custom logo, linked to home unless the theme supports r……
thumbnail

WordPress函数:get_custom_logo

一、函数简介 返回一个自定义徽标,链接到主页,除非主题支持删除主页上的链接。(Returns a custom logo, linked to home unless the theme supports ……
thumbnail

WordPress函数:has_custom_logo

一、函数简介 确定网站是否具有自定义徽标。(Determines whether the site has a custom logo.)     二、函数参数 ……
thumbnail

WordPress函数:has_site_icon

一、函数简介 has_site_icon该函数用于确定网站是否有网站图标。   二、函数参数 @param int $blog_id Optional. ID of……
thumbnail

WordPress函数:site_icon_url

一、函数简介 site_icon_url该函数是用来直接显示网站logo的链接。 <?php site_icon_url( $size = 512, $url = '', $blog_id = 0 ); ?>……
thumbnail

WordPress函数:get_site_icon_url

一、函数简介 get_site_icon_url该函数是用来返回站点logo的链接。 <?php echo get_site_icon_url( $size = 512, $url = '', $blog_id = 0 ); ?> ……
thumbnail

WordPress函数:get_bloginfo

一、函数简介 get_bloginfo该函数用于直接赋值给变量,与bloginfo直接打印不一样。 <?php echo get_bloginfo( $show = '', $filter = 'raw' ) ?> ……
thumbnail

WordPress函数:bloginfo

一、函数简介 bloginfo该函数是用来显示站点标题、副标题、Wordpress地址、站点地址、管理员电子邮件地址、Wordpress版本、显示Wordpress版本、显示Wordpr……
thumbnail

WordPress函数:wp_meta

一、函数简介 二、函数参数 @link https://core.trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action. 三、函数案例 ……