Created
January 13, 2013 17:24
-
-
Save lloc/4525190 to your computer and use it in GitHub Desktop.
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 | |
| class MY_Widget_Links extends WP_Widget_Links { | |
| function widget( $args, $instance ) { | |
| if ( !is_front_page() && !is_home() ) | |
| parent::widget( $args, $instance ); | |
| } | |
| } | |
| function mywidgetlinks_load() { | |
| unregister_widget( 'WP_Widget_Links' ); | |
| register_widget( 'MY_Widget_Links' ); | |
| } | |
| add_action( 'widgets_init', 'mywidgetlinks_load' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment