0

我正在尝试向 Wordpress 介绍自己,在我安装了主题并进入其中进行一些编辑后,我发现了这个电话:

\wp-content\themes\catch-everest\footer.php

do_action( 'catcheverest_site_generator' );

我将它跟踪到这个函数,我完全迷失了:

function do_action($tag, $arg = '') {
    global $wp_filter, $wp_actions, $merged_filters, $wp_current_filter;

    if ( ! isset($wp_actions) )
        $wp_actions = array();

    if ( ! isset($wp_actions[$tag]) )
        $wp_actions[$tag] = 1;
    else
        ++$wp_actions[$tag];

    // Do 'all' actions first
    if ( isset($wp_filter['all']) ) {
        $wp_current_filter[] = $tag;
        $all_args = func_get_args();
        _wp_call_all_hook($all_args);
    }

    if ( !isset($wp_filter[$tag]) ) {
        if ( isset($wp_filter['all']) )
            array_pop($wp_current_filter);
        return;
    }

    if ( !isset($wp_filter['all']) )
        $wp_current_filter[] = $tag;

    $args = array();
    if ( is_array($arg) && 1 == count($arg) && isset($arg[0]) && is_object($arg[0]) ) // array(&$this)
        $args[] =& $arg[0];
    else
        $args[] = $arg;
    for ( $a = 2; $a < func_num_args(); $a++ )
        $args[] = func_get_arg($a);

    // Sort
    if ( !isset( $merged_filters[ $tag ] ) ) {
        ksort($wp_filter[$tag]);
        $merged_filters[ $tag ] = true;
    }

    reset( $wp_filter[ $tag ] );

    do {
        foreach ( (array) current($wp_filter[$tag]) as $the_ )
            if ( !is_null($the_['function']) )
                call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));

    } while ( next($wp_filter[$tag]) !== false );

    array_pop($wp_current_filter);
}

您能描述一下上述案例中的数据流吗?

4

2 回答 2

2

源代码看起来相当复杂,但从实用的角度来看,知道它创建了一个钩子就足够了,它允许您通过钩子函数(使用)do_action在特定位置执行代码。add_action在您的情况下,主题作者允许您在页脚中执行代码。您可以将以下功能放在您的functions.php文件或插件中。它将在您的主题的页脚中回显“Hello world”。

function my_site_generator(){
    echo 'Hello world';
}
add_action( 'catcheverest_site_generator', 'my_site_generator' );
于 2013-04-22T18:36:26.933 回答
0

这是一个非常广泛的问题,超出了 Stack Overflow 的范围。

动作和过滤器,或钩子,是 'Wordpress' 做事的方式。Wordpress 页面上有一个循环,它按优先级执行操作,然后返回将过滤的内容,然后再将其应用于页面。

关于操作和过滤器的书籍有很多,您绝对应该查看一些 Wordpress 插件书籍以获取更多详细信息。

这本书帮助我理解了我在学习时发生的事情:

http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222

于 2013-04-22T18:35:27.167 回答