2

我正在尝试在 Wordpress的独立PHPfilter文件中调用挂钩。

这是文件的代码:my_external_file.php

<?php
require( dirname(__FILE__) . '/../../../../../../../wp-load.php');

add_filter('init', 'test_function');

function test_function (){
    global $global_text_to_shown;

    $global_text_to_shown = 'Hello World';

}

global $global_text_to_shown;

$quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,spell,close' );

//This work fine, shown editor good.
wp_editor( $global_text_to_show, 'content', array( 'media_buttons' => false, 'tinymce' => true, 'quicktags' => $quicktags_settings ) );

//Load js and work fine the editor - wp_editor function.
wp_footer();

?>

问题是过滤器没有被执行,因此函数没有被执行。

如何在这个外部PHP文件上执行过滤器挂钩?

4

1 回答 1

2

首先也是主要的问题$global_text_to_show不是。$global_text_to_shown

钩子init不是过滤器,它是一个动作:add_action('init', 'test_function');. 请参阅Actions 和 Filters 不是一回事

以这种方式加载wp-load.php是......糟糕的代码;)请参阅Wordpress 标头外部 php 文件 - 更改标题?.

第二个主要问题是您为什么需要这个以及为什么需要这个?
反正init不行,用过滤器the_editor_content就行了。虽然我不明白目标:

<?php
define( 'WP_USE_THEMES', false );
require( $_SERVER['DOCUMENT_ROOT'] .'/wp-load.php' );

// Requires PHP 5.3. Create a normal function to use in PHP 5.2.
add_filter( 'the_editor_content', function(){
    return 'Hello World';
});

$quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,spell,close' );

?><!DOCTYPE html>
<html>
<head>
<?php wp_head(); ?>
</head>
<body>
<?php 
    wp_editor( 
        '', 
        'content', 
        array( 
            'media_buttons' => false, 
            'tinymce' => true, 
            'quicktags' => $quicktags_settings 
        ) 
    );
    wp_footer();
?>
</body>
</html>
于 2013-08-29T16:28:44.770 回答