Bir eklenti oluşturuyorum ve diğer eklentiler tarafından kullanılan tüm komut dosyalarının ve CSS'nin listesini almak istiyorum.
Bu benim fonksiyonum:
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');
Değişken içinde döndürülen değeri almak istiyorum.
Bunu denedim:
$toto = do_action( 'crunchify_print_scripts_styles' );
var_dump( $toto );
Ve bu benim sonucum:
NULL
Ben yazarsam echo
her iç foreach
döngü, ben doğru sonuçları almak, ama nasıl bir değişken içine bu değerleri depolamak için?
[Düzenle]
Kodum da çalışmıyor bir eklenti içinde
/**
* 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
? bundan kolayca dönüş değerini alabilirsiniz.
do_action
bir sonuç döndürmez ve bunun yanı sıra, eylem zaten gerçekleşmiştirwp_enqueue_scripts
... sadece bir küresel yaratmak daha kolaydır, örneğin.global $crunchifyenqueued; $crunchifyenqueued = $result;
daha sonra değişkene erişmek için sonraki fonksiyonunuzda global çağrıyı tekrar çağırın.