add_filter(' wp_title')不替换我的标题标签(WordPress插件)

时间:2016-03-18 14:48:09

标签: wordpress plugins title

我正在尝试将详细信息页面的标题更改为汽车名称。 我制作了一个插件,用汽车信息填充详细页面。但现在我无法在我的插件中使用add_filter(' wp_title')。

这是我尝试过的代码:

function init() {
    hooks();
}
add_action('wp', 'init');

function hooks() {
    if(get_query_var('car_id') != "") {
        add_filter('wp_title', 'addTitle', 100);
        add_action('wp_head', 'fillHead');
    }
    add_shortcode('showCar', 'showCar');
}

function addTitle() {
    $api_url_klant = API_URL . '/gettitle/' . get_option("ac") . '/' . get_query_var('car_id');
    $title = getJSON($api_url_klant);
    return $title['merk'] . " " . $title['model'] . " - " . $title['bedrijf'];
}

addTitle()函数运行正常。它返回正确的名称。此外,add_action(' wp_head')也可以使用。我只能让wp_title过滤器不起作用。

我是在错误的时刻执行此过滤器还是我做错了什么?

4 个答案:

答案 0 :(得分:22)

如果其他人遇到此问题,可能是由于Yoast插件。使用:

add_filter( 'pre_get_document_title', function( $title ){
    // Make any changes here
    return $title;
}, 999, 1 );

答案 1 :(得分:11)

我无法从你提供的代码中看出来,但是你在使用:

<title><?php wp_title(); ?></title>

在您的<head>中,在header.php下?

<强>更新

显然,自4.4以来对标题的处理方式进行了更改。这是一个解释如何使用新代码的链接:

https://www.developersq.com/change-page-post-title-wordpress-4-4/

/*
 * Override default post/page title - example
 * @param array $title {
 *     The document title parts.
 *
 *     @type string $title   Title of the viewed page.
 *     @type string $page    Optional. Page number if paginated.
 *     @type string $tagline Optional. Site description when on home page.
 *     @type string $site    Optional. Site title when not on home page.
 * }
 *     @since WordPress 4.4
 *     @website: www.developersq.com
 *     @author: Aakash Dodiya
*/
add_filter('document_title_parts', 'dq_override_post_title', 10);
function dq_override_post_title($title){
   // change title for singular blog post
    if( is_singular( 'post' ) ){ 
        // change title parts here
        $title['title'] = 'EXAMPLE'; 
    $title['page'] = '2'; // optional
    $title['tagline'] = 'Home Of Genesis Themes'; // optional
        $title['site'] = 'DevelopersQ'; //optional
    }

    return $title; 
}

答案 2 :(得分:1)

我将此答案发布到另一个问题上,但是由于它是相关的并且是最新的,尽管它可能会有用。

自Wordpress v4.4.0起,文档标题的生成方式已更改。现在wp_get_document_title指示标题的生成方式:

/**
 * Displays title tag with content.
 *
 * @ignore
 * @since 4.1.0
 * @since 4.4.0 Improved title output replaced `wp_title()`.
 * @access private
 */
function _wp_render_title_tag() {
    if ( ! current_theme_supports( 'title-tag' ) ) {
        return;
    }

    echo '<title>' . wp_get_document_title() . '</title>' . "\n";
}

这是v5.4.2中的代码。以下是可用于操作标题标签的过滤器:

function wp_get_document_title() {
    /**
    * Filters the document title before it is generated.
    *
    * Passing a non-empty value will short-circuit wp_get_document_title(),
    * returning that value instead.
    *
    * @since 4.4.0
    *
    * @param string $title The document title. Default empty string.
    */
    $title = apply_filters( 'pre_get_document_title', '' );
    if ( ! empty( $title ) ) {
        return $title;
    }
    // --- snipped ---
    /**
    * Filters the separator for the document title.
    *
    * @since 4.4.0
    *
    * @param string $sep Document title separator. Default '-'.
    */
    $sep = apply_filters( 'document_title_separator', '-' );

    /**
    * Filters the parts of the document title.
    *
    * @since 4.4.0
    *
    * @param array $title {
    *     The document title parts.
    *
    *     @type string $title   Title of the viewed page.
    *     @type string $page    Optional. Page number if paginated.
    *     @type string $tagline Optional. Site description when on home page.
    *     @type string $site    Optional. Site title when not on home page.
    * }
    */
    $title = apply_filters( 'document_title_parts', $title );
    // --- snipped ---
    return $title;
}

因此,您可以通过两种方法来做到这一点。

第一个使用pre_get_document_title过滤器,它可以缩短标题的产生,因此如果您不打算对当前标题进行更改,则可以提高性能:

function custom_document_title( $title ) {
    return 'Here is the new title';
}
add_filter( 'pre_get_document_title', 'custom_document_title', 10 );

第二种方法是,在使用document_title_separator或{{1}之类的函数生成标题之后,使用document_title_partssingle_term_title钩子为标题和标题分隔符添加钩子,稍后在函数中执行},具体取决于页面和即将输出的内容:

post_type_archive_title

答案 3 :(得分:0)

我尝试了数百个示例,在网上浏览了每个解决方案。

最后...做得好 joemaller 放到这里就解决了所有问题!

add_filter('wpseo_title', '__return_empty_string');