Add this code at your theme’s functions.php: function custom_js() { echo ''; } // Add hook for adminadd_action('admin_head', 'custom_js'); // Add hook for front-endadd_action('wp_head', 'custom_js');
The post Adding to wordpress in element appeared first on PHP Blog Spot.