最新文章
thumbnail

WordPress函数:post_type_archive_title

一、函数简介 post_type_archive_title该函数的作用是显示或检索帖子类型存档的标题。(Displays or retrieves title for a post type archive.) ……
thumbnail

WordPress函数:single_post_title

一、函数简介 single_post_title该函数的作用是显示或检索帖子的页面标题。(Displays or retrieves page title for post.)   ……
thumbnail

WordPress函数:wp_title

一、函数简介 显示或检索博客所有区域的页面标题。(Displays or retrieves page title for all areas of blog.)   二、函数参……
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 ); ?> ……