In what situations should I use _(), _e(), _x(), esc_html_e(), esc_html() functions? 60. language_attributes() Displays the language attributes for the html tag. language_attributes() How to Develop a WordPress Theme Using Bootstrap 61. body_class() Display the classes for the bo...
在wordpress中,在主题的header.php文件中,有下一行: <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> 默认情况下,它( language_attributes )返回 dir=ltr ,我读过的每个在线指南都试图显示一种方法来改变css文件。 它是不够的,不是语义的。我需要将html本身更改为rtl。 怎...
*/add_action('after_setup_theme',function(){add_filter('language_attributes',function(){return'lang="zh-CN"';});}); es:西班牙语/fr:法语/de:德语/it:意大利语/pt:葡萄牙语/ar:阿拉伯语/ru:俄语/ja:日语/ko:韩语 💡其它语言lang属性代码参考 1.用记事本或代码编辑器输入上图代码,然后另存为s...
language_attributes() 函数用于决定WordPress网站所要显示的语言,bloginfo() 函数用于添加网站的信息,具有多个参数用于显示站点的名称、描述、URL以及列表,这里我们使用name参数用于在浏览器标签栏上显示网站名称。 我们保存index.php文件,重新加载站点前端页面,你就可以可以看到我们的站点标题 wordpress dev,如图所示。 我...
language_attributes() Function: Displays the language attributes for the html tag. Source: wp-includes/general-template.php:3993 Used by 3 functions | Uses 1 function ※1098※ like_escape() Function: Formerly used to escape strings before searching the DB. It was poorly documented and never wo...
进入html标签,我们将放入language_attributes()函数 使用php bloginfo更新title标签,并插入name参数 添加元字符集来放置字符集meta标签,使用bloginfo()函数并传入charset 使用名为viewport的meta标签添加视口函数,让主题适应响应式。 输入wp_head()函数 <!DOCTYPE html><html<?phplanguage_attributes();?>><metacharset...
preview is_dynamic_sidebar language_attributes load_template locale_stylesheet locate_template post_class preview_theme preview_theme_ob_filter preview_theme_ob_filter_callback register_nav_menu register_nav_menus get_registered_nav_menus wp_create_nav_menu register_sidebar register_sidebars register_...
<html <?php language_attributes(); ?>> <meta charset="<?php bloginfo( 'charset' ); ?>"> 这段代码确保了网站使用UTF-8编码,有助于避免乱码问题。 4. 检查数据库字符集 有时候,数据库字符集设置不正确也会导致网站乱码。您可以通过phpMyAdmin查看数据库的字符集设置。确保数据库的字符集为utf8mb4...
add_filter('language_attributes', 'add_opengraph_doctype'); //Lets add Open Graph Meta Info function insert_fb_in_head() { global $post; if ( !is_singular()) //if it is not a post or a page return; echo ''; echo ''; echo ''; echo ''; echo '...
<html <?php language_attributes(); ?> class="no-js"> <meta charset="<?php bloginfo( 'charset' ); ?>"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> <!--[if lt IE 9]> <script src="<?php echo esc_url( get_template_directory_uri() ); ?>...