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
| mysql -u root -p | |
| mysql> create user blog@localhost identified by 'password'; | |
| mysql> create database blog; | |
| mysql> grant all on blog.* to blog@localhost; | |
| mysql> exit; |
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
| /*! | |
| * equalHeights jQuery Plugin | |
| */ | |
| (function($){ | |
| $.fn.equalHeights = function() { | |
| var tallest = 0, | |
| current = 0; | |
| this.each(function(){ | |
| current = $(this).height(); | |
| if(current > tallest) { |
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
| function remove_dashboard_widgets() { | |
| global $wp_meta_boxes; | |
| unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']); | |
| // unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); | |
| // unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); | |
| // unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts']); | |
| unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); | |
| unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); | |
| unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); // WordPress Blog | |
| unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); // Other WordPress News |
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
| Redirect 301 /foo.html /bar.html | |
| Redirect 301 /about.html /about | |
| Redirect 301 /support /help |