xarxaprod-wp-plugin/includes/register-plugin-scripts.php

32 lines
1023 B
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! function_exists('xarxaprod_plugin_scripts') ){
function xarxaprod_plugin_scripts() {
wp_enqueue_script(
'xarxaprod-plugin-title-filter-toggle',
plugins_url( 'includes/xarxaprod-title-filter-toggle.js', dirname( __FILE__ ) ),
array( 'jquery' ),
XARXAPROD_WPPLUGIN_VERSION,
true
);
// wp_enqueue_script(
// 'xarxaprod-plugin-ajut-filter-set',
// plugins_url( 'includes/xarxaprod-ajut-filter-set-form.js', dirname( __FILE__ ) ),
// array( 'jquery' ),
// XARXAPROD_WPPLUGIN_VERSION,
// true
// );
// wp_enqueue_script(
// 'xarxaprod-plugin-scripts',
// plugins_url( 'includes/xarxaprod-plugin-scripts.js', dirname( __FILE__ ) ),
// array( 'jquery' ),
// XARXAPROD_WPPLUGIN_VERSION,
// true
// );
}
add_action( 'wp_enqueue_scripts', 'xarxaprod_plugin_scripts' );
}