我正在尝试将自己介绍给Wordpress,在我安装主题并进入其中进行一些编辑后,我发现了这个电话:
的 \可湿性粉剂内容\主题\追赶珠穆朗玛峰\ 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);
}
你可以在上面的案例中描述数据流吗?
答案 0 :(得分:2)
源代码看起来相当复杂,但从实用的角度来看,知道do_action
创建一个钩子就足够了,它允许你通过挂钩函数来执行特定位置的代码(使用{ {3}})。在您的情况下,主题作者允许您在页脚中执行代码。您可以在functions.php
文件或插件中放置以下功能。它会在你主题的页脚中回响“Hello world”。
function my_site_generator(){
echo 'Hello world';
}
add_action( 'catcheverest_site_generator', 'my_site_generator' );
答案 1 :(得分:0)
这是一个非常广泛的问题,超出了Stack Overflow的范围。
动作和过滤器,或钩子,是&#39; Wordpress&#39;做事的方式。 Wordpress页面上有一个循环,按优先级执行操作,然后返回在将其应用到页面之前将过滤的内容。
有关于动作和过滤器的完整书籍,你应该查看一些Wordpress插件书籍以获取更多详细信息。
这本书帮助我了解了我学习时的情况:
http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222