Skip to content

Instantly share code, notes, and snippets.

@ideag
Last active January 1, 2016 14:29
Show Gist options
  • Select an option

  • Save ideag/8158093 to your computer and use it in GitHub Desktop.

Select an option

Save ideag/8158093 to your computer and use it in GitHub Desktop.
post-section-votes bugfix
<?php
/* Register styles and scripts */
function post_section_voting_scripts() {
wp_register_style('post_section_voting_style', plugins_url('style.css',__FILE__ ));
wp_enqueue_style('post_section_voting_style');
wp_register_script( 'post_section_voting_script', plugins_url('voting_script.js',__FILE__ ),array('jquery'));
wp_enqueue_script('post_section_voting_script');
wp_localize_script( 'post_section_voting_script', 'PsvAjax', array( 'ajaxurl' => admin_url( 'admin-ajax.php')));
}
add_action( 'wp_footer', 'post_section_voting_scripts' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment