国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

淺析Wordpress的插件執行流程

2019-11-17 04:26:46
字體:
來源:轉載
供稿:網友

1、首先,我現在pugins文件夾下寫一個自己的插件
復制php內容到剪貼板
PHP代碼:

<?php 
/*
Plugin Name: test
Plugin URI: [url=http://WordPRess.org/]http://wordpress.org/[/url]#
Description: 我測試用的
Author: lw(fantasy)
Version: 0.1
Author URI: [url=http://www.xxx.com/]http://www.xxx.com/[/url] 
*/ 
 
$test = "<div id='my_test'>這是我的第一個插件!</div>";

function output(){ 
    global $test;
    echo $test;
}

add_action('wp_footer','output');
?>


然后在后臺啟用。。

2、WP執行是加載在”wp-settings.php”,而在此文件中,可以找到以下與插件相關的代碼片斷:
復制PHP內容到剪貼板
PHP代碼:
if ( get_option('active_plugins') ) {
$current_plugins = get_option('active_plugins');
dump($current_plugins);
if ( is_array($current_plugins) ) {
  foreach ($current_plugins as $plugin) {
   if ( '' != $plugin && 0 == validate_file($plugin) && file_exists(WP_PLUGIN_DIR . '/' . $plugin) )
    include_once(WP_PLUGIN_DIR . '/' . $plugin);
  }
}
}


我dump了一下$current_plugins,得到

Array
(
    [0] => Fanfou-Daily/Fanfou-Daily.php
    [1] => mulberrykit.php
    [2] => test.php
)

可以看到我寫的test.php插件已經被include進去了。。

3、在主題模板里的footer.php里面會執行一個函數
<?php wp_footer(); ?>

而這個wp_footer里面又執行

do_action('wp_footer');

而這個do_action就是執行前面我們已經注冊了的【add_action('wp_footer','output'); 】output()函數。。。

這樣就輸出了"<div id='my_test'>這是我的第一個插件!</div>"了

最后貼一下do_action的源碼,大家體會一下吧
復制PHP內容到剪貼板
PHP代碼:
/**
* do_action() - Execute functions hooked on a specific action hook.
*
* This function invokes all functions attached to action hook <tt>$tag</tt>.
* It is possible to create new action hooks by simply calling this function,
* specifying the name of the new hook using the <tt>$tag</tt> parameter.
*
* You can pass extra arguments to the hooks, much like you can with apply_filters().
*
* @see apply_filters() This function works similar with the exception that nothing is
* returned and only the functions or methods are called.
*
* @package WordPress
* @subpackage Plugin
* @since 1.2
* @global array $wp_filter Stores all of the filters
* @global array $wp_actions Increments the amount of times action was triggered.
*
* @param string $tag The name of the action to be executed.
* @param mixed $arg,... Optional additional arguments which are passed on to the functions hooked to the action.
* @return null Will return null if $tag does not exist in $wp_filter array
*/
function do_action($tag, $arg = '') {
global $wp_filter, $wp_actions, $merged_filters, $wp_current_filter;
if ( is_array($wp_actions) )
  $wp_actions[] = $tag;
else
  $wp_actions = array($tag);
$wp_current_filter[] = $tag;
// Do 'all' actions first
if ( isset($wp_filter['all']) ) {
  $all_args = func_get_args();
  _wp_call_all_hook($all_args);
}
if ( !isset($wp_filter[$tag]) ) {
  array_pop($wp_current_filter);
  return;
}
$args = array();
if ( is_array($arg) && 1 == count($arg) && 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);
}


其中比較關鍵的就是call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));這句了


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 宁国市| 青海省| 古丈县| 贵溪市| 江西省| 襄汾县| 乌兰县| 灌阳县| 漳州市| 利辛县| 南皮县| 柘荣县| 汶上县| 彭州市| 大关县| 普格县| 甘德县| 报价| 秀山| 洪雅县| 汶上县| 娄烦县| 余干县| 乐平市| 手游| 桂阳县| 大荔县| 宜兴市| 修文县| 尼玛县| 临城县| 宁德市| 高清| 贵州省| 章丘市| 平安县| 太和县| 徐州市| 普陀区| 沂水县| 武陟县|