我想在wordpress网站的头部更改/交换元标题标签的位置。目前,我可以在主题的header.php
中看到以下代码<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
看起来在wp_head();
函数中添加了标题标记。如果我想在<head>
开始标记后立即移动/更改我的标题和desription标记的位置,或者在头部区域中我想要的任何其他自定义位置,该怎么办?我无法弄清楚标题标签添加到哪个文件中。这样我就可以改变它的位置。
答案 0 :(得分:0)
您是否检查了default-filters.php
文件夹中的wp-includes
文件。 ( WP-包括/默认-filters.php )。找到下面的行并尝试更改它的位置并检查。
add_action( 'wp_head', '_wp_render_title_tag', 1);