PluginProbe
Post Duplicator / 2.34
Post Duplicator v2.34
3.0.16 trunk 1.1 2.0 2.2 2.20 2.21 2.22 2.23 2.24 2.25 2.26 2.27 2.28 2.29 2.3 2.30 2.31 2.32 2.33 2.34 2.35 2.36 2.37 2.38 All 52 releases
post-duplicator / includes / scripts.php

scripts.php in Post Duplicator 2.34, at includes/scripts.php

25 lines 843 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Load the metaboxer scripts
5 *
6 * @since 2.26
7 */
8 function mtphr_post_duplicator_metaboxer_scripts( $hook ) {
9 if( $hook == 'tools_page_mtphr_post_duplicator_settings_menu' ) {
10 $version = WP_DEBUG ? time() : MTPHR_POST_DUPLICATOR_VERSION;
11 wp_enqueue_style( 'mtphr-post-duplicator-metaboxer', MTPHR_POST_DUPLICATOR_URL . 'metaboxer/metaboxer.css', false, $version );
12 }
13 }
14 add_action( 'admin_enqueue_scripts', 'mtphr_post_duplicator_metaboxer_scripts' );
15
16 /**
17 * Add the necessary jquery.
18 *
19 * @since 2.26
20 */
21 function m4c_duplicate_post_scripts( $hook_suffix ) {
22 $version = WP_DEBUG ? time() : MTPHR_POST_DUPLICATOR_VERSION;
23 wp_enqueue_script( 'mtphr-post-duplicator', MTPHR_POST_DUPLICATOR_URL . 'assets/js/pd-admin.js', array('jquery'), $version );
24 }
25 add_action( 'admin_enqueue_scripts', 'm4c_duplicate_post_scripts' );