php 如果使用ACF字段,则将文件排入队列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 如果使用ACF字段,则将文件排入队列相关的知识,希望对你有一定的参考价值。

<?php
add_action( 'wp_enqueue_scripts', 'sp_register_acf_field_scripts', 5 );
function sp_register_acf_field_scripts() {
  // Plugin file
  wp_register_script( 'siema-js', get_stylesheet_directory_uri() . '/bower_components/siema/dist/siema.min.js', array(), '', true );
  
  // Custom functionality
  wp_register_script( 'siema-init-js', get_stylesheet_directory_uri() . '/library/js/siema-init.js', array(), '', true );
}

/* Inspect ACF field in admin to get correct key name */
add_filter('acf/load_field/key=field_5922a0d922cce', 'sp_load_field_assets');
function sp_load_field_assets( $field ) {
  wp_enqueue_script( 'siema-js' );
  wp_enqueue_script( 'siema-init-js' );
  return $field;
}
?>

以上是关于php 如果使用ACF字段,则将文件排入队列的主要内容,如果未能解决你的问题,请参考以下文章

php 通过版本更新将样式排入队列

php 将Google字体排入队列

php 将wordpress主题的脚本和样式排入队列

是否可以在 function.php wordpress 上将脚本 src 排入队列?

php 在Wordpress中使用'wp_enqueue_scripts'操作将Vue.js排入队列

如果第一个 ACF 中继器字段为空,则打印内容