/* Plugin Name: Design js Plugin URI: https://atlanta-web.hu/wp-plugin/design-js Description: Describe what your plugin is all about in a few short sentences Version: 1.0 Author: Pásztor Attila Author URI: http://link to your website License: GPL2 etc License URI: http://link to your plugin license */ function wptuts_scripts_basic() { // Register the script like this for a plugin: wp_register_script( 'custom-script', plugins_url( '/jquery.livequery.js', __FILE__ ),array( 'jquery' ) ); wp_register_script( 'custom-script-2', plugins_url( '/custom.js', __FILE__ ) ); // For either a plugin or a theme, you can then enqueue the script: wp_enqueue_script( 'custom-script' ); wp_enqueue_script( 'custom-script-2' ); } add_action( 'wp_enqueue_scripts', 'wptuts_scripts_basic' ); ?>