4

我似乎无法让我的函数用于更改excerpt_more21 父主题的过滤器。

我怀疑这实际上可能是add_action( 'after_setup_theme', 'twentyeleven_setup' );问题所在,但我什至试图remove_filter( 'excerpt_more', 'twentyeleven_auto_excerpt_more' )摆脱 211 的功能,但我的功能仍然没有改变任何东西......

你能帮我吗?

这是functions.php的完整代码:

http://pastie.org/3758708

这是我添加到 /mychildtheme/functions.php 的函数

function clientname_continue_reading_link() {
    return ' <a href="'. esc_url( get_permalink() ) . '">' . __( 'Read more... <span class="meta-nav">&rarr;</span>', 'clientname' ) . '</a>';
}
function clientname_auto_excerpt_more( $more ) {
    return ' &hellip;' . clientname_continue_reading_link();
}
add_filter( 'excerpt_more', 'clientname_auto_excerpt_more' );

谢谢,

大须

4

2 回答 2

9

好吧,在经历了很多挫折之后,我找到了解决方案(我认为儿童主题是为了加快速度!?)。我相信这是可行的,因为一旦设置了父主题,就会运行“after_theme_setup”,这意味着您可以在那时删除/覆盖 211 的功能。

如果我理解正确,根据本文档,首先运行子主题,然后是父主题,然后是子主题的 functions.php 文件中的“after_theme_setup”代码:

http://codex.wordpress.org/Child_Themes#Using_functions.php

http://codex.wordpress.org/Plugin_API/Action_Reference/after_setup_theme

这是我的子主题的 functions.php 文件中的内容,希望这对某人有所帮助:

// ------------------------------------------------------------------
//                      // !AFTER_SETUP_THEME
// ------------------------------------------------------------------

/* Set up actions */
add_action( 'after_setup_theme', 'osu_setup' );

if ( ! function_exists( 'osu_setup' ) ):

function osu_setup() {

    // OVERRIDE : SIDEBAR GENERATION FUNCTION - NO WIDGETS FOR THIS SITE
    remove_action( 'widgets_init', 'twentyeleven_widgets_init' ); /* Deregister sidebar in parent */

    // OVERRIDE : EXCERPT READ MORE LINK FUNCTION
    function osu_readon_link() {
        return '...<a href="'. get_permalink() . '" class="readmore">' . __( 'Read More...', 'clientname' ) . '</a>';
    }
    // Function to override
    function osu_clientname_custom_excerpt_more( $output ) {
        if ( has_excerpt() && ! is_attachment() ) {
            // $output = trim($output);
            $output .= osu_readon_link();
        }
        return $output;
    }
    remove_filter( 'get_the_excerpt', 'twentyeleven_custom_excerpt_more' );
    add_filter( 'get_the_excerpt', 'osu_clientname_custom_excerpt_more' );
    remove_filter( 'excerpt_more', 'twentyeleven_auto_excerpt_more' );
    add_filter( 'excerpt_more', 'osu_readon_link' );

    // OVERRIDE : EXCERPT LENGTH FUNCTION
    function osu_clientname_excerpt_length( $length ) {
        return 30;
    }
    remove_filter( 'excerpt_length', 'twentyeleven_excerpt_length' );
    add_filter( 'excerpt_length', 'osu_clientname_excerpt_length' );

}
endif; // osu_setup
于 2012-04-12T08:12:01.630 回答
5

您自己的答案使事情复杂化,实际上没有必要。我无法解释我的答案的原因,因为我在另一个答案中找到了它。但是在任何情况下,您总是可以在子主题中覆盖父主题中的功能,尽管有时您确实需要remove_filter()预先使用,或者,就像在这种情况下,您所要做的就是增加您添加的过滤器的优先级,在您的案子:

add_filter( 'excerpt_more', 'clientname_auto_excerpt_more', 11 );

这应该够了吧。如果没有,请增加数量。感谢这个答案

于 2016-11-24T11:57:27.537 回答