/* Register the scripts and enqueue css files */
function register_openload(){
$options = get_option('openload_options');
wp_register_style( 'openload-plugin', plugins_url( 'openload-styles.css' , __FILE__ ) );
wp_enqueue_style( 'openload-plugin' );
if($options['openload_version'] == '') {
wp_register_script( 'openload', plugins_url( '/openload/video.min.js' , __FILE__ ) );
wp_enqueue_script('openload');
wp_register_style( 'openload', plugins_url( '/openload/video-js.css' , __FILE__ ) );
wp_enqueue_style( 'openload' );
}
}
add_action( 'wp_enqueue_scripts', 'register_openload' );
/* Include the scripts before </body> */
function add_openload_header(){
wp_enqueue_script( 'openload' );
}
это плагин код php, вот горячая клавиша плагин, как я могу добавить это? пожалуйста, помогите мне! Мне очень любопытно узнать как?
Задача ещё не решена.
Других решений пока нет …