ฉันกำลังสร้างปลั๊กอินและฉันต้องการรับรายการสคริปต์และ CSS ทั้งหมดที่ใช้โดยปลั๊กอินอื่น ๆ
นี่คือฟังก์ชั่นของฉัน:
function crunchify_print_scripts_styles() {
$result = [];
$result['scripts'] = [];
$result['styles'] = [];
// Print all loaded Scripts
global $wp_scripts;
foreach( $wp_scripts->queue as $script ) :
$result['scripts'][] = $wp_scripts->registered[$script]->src . ";";
endforeach;
// Print all loaded Styles (CSS)
global $wp_styles;
foreach( $wp_styles->queue as $style ) :
$result['styles'][] = $wp_styles->registered[$style]->src . ";";
endforeach;
return $result;
}
add_action( 'wp_enqueue_scripts', 'crunchify_print_scripts_styles');
ฉันต้องการรับค่าที่ส่งคืนภายในตัวแปร
ฉันลองสิ่งนี้:
$toto = do_action( 'crunchify_print_scripts_styles' );
var_dump( $toto );
และนี่คือผลลัพธ์ของฉัน:
NULL
ถ้าฉันเขียนecho
ทุกforeach
วงฉันจะได้ผลลัพธ์ที่ถูกต้อง แต่จะเก็บค่าเหล่านี้ไว้ในตัวแปรได้อย่างไร
[แก้ไข]
รหัสของฉันอยู่ในส่วนเสริมซึ่งไม่ทำงานเช่นกัน
/**
* Get all scripts and styles from Wordpress
*/
function print_scripts_styles() {
$result = [];
$result['scripts'] = [];
$result['styles'] = [];
// Print all loaded Scripts
global $wp_scripts;
foreach( $wp_scripts->queue as $script ) :
$result['scripts'][] = $wp_scripts->registered[$script]->src . ";";
endforeach;
// Print all loaded Styles (CSS)
global $wp_styles;
foreach( $wp_styles->queue as $style ) :
$result['styles'][] = $wp_styles->registered[$style]->src . ";";
endforeach;
return $result;
}
add_action( 'wp_head', 'wp_rest_assets_init');
/**
* Init JSON REST API Assets routes.
*
* @since 1.0.0
*/
function wp_rest_assets_init() {
$all_the_scripts_and_styles = print_scripts_styles();
if ( ! defined( 'JSON_API_VERSION' ) &&
! in_array( 'json-rest-api/plugin.php', get_option( 'active_plugins' ) ) ) {
$class = new WP_REST_Assets();
$class::$scriptsAndStyles = $all_the_scripts_and_styles;
add_filter( 'rest_api_init', array( $class, 'register_routes' ) );
} else {
$class = new WP_JSON_Menus();
add_filter( 'json_endpoints', array( $class, 'register_routes' ) );
}
}
add_action( 'init', 'wp_rest_assets_init' );
apply_filters
ล่ะ คุณสามารถรับค่าตอบแทนจากสิ่งนั้นได้อย่างง่ายดาย
do_action
ไม่ส่งคืนผลลัพธ์และนอกจากนี้การกระทำได้เกิดขึ้นที่wp_enqueue_scripts
... ง่ายขึ้นเพียงแค่สร้างโลกเช่นglobal $crunchifyenqueued; $crunchifyenqueued = $result;
จากนั้นเรียกใช้โกลบอลอีกครั้งในฟังก์ชันภายหลังเพื่อเข้าถึงตัวแปร