Can you please tell me how to connect a third-party .css and .js file to a specific Wordpress page? I tried to embed the theme using
<?php function wpb_adding_scripts() { wp_register_script('coverflow', plugins_url('coverflow.js', __FILE__), array('jquery'),'1.1', true); wp_enqueue_script('coverflow'); } add_action( 'wp_enqueue_scripts', 'wpb_adding_scripts' ); ?>
in functions.php topics
but after the change I get 500 Internal Server Error