This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: XV Sort Tag Cloud | |
| Description: Sorts properly tag cloud by name (removing accents) | |
| Author: Xavi Ivars | |
| Author URI: http://xavi.ivars.me/ | |
| Version: 1.0 | |
| License: http://www.gnu.org/copyleft/gpl.html GNU General Public License | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //* Do NOT include the opening php tag shown above. Copy the code shown below. | |
| //* Enqueue sticky menu script | |
| add_action( 'wp_enqueue_scripts', 'sp_enqueue_script' ); | |
| function sp_enqueue_script() { | |
| wp_enqueue_script( 'sample-sticky-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/sticky-menu.js', array( 'jquery' ), '1.0.0' ); | |
| } | |
| //* Reposition the secondary navigation menu |