I hereby claim:
- I am ryandonsullivan on github.
- I am ryandonsullivan (https://keybase.io/ryandonsullivan) on keybase.
- I have a public key whose fingerprint is 0D04 1D1F 65ED A1E9 D39E A53F 43E1 E10B B252 6463
To claim this, I am signing this object:
| # Block Feed and Comments | |
| User-agent: * | |
| Disallow: /feed/ | |
| Disallow: /feed/$ | |
| Disallow: /comments/feed | |
| Disallow: /trackback/ | |
| Disallow: */?author=* | |
| Disallow: */author/* | |
| Disallow: /author* | |
| Disallow: /author/ |
| <?php | |
| /** | |
| * The base configuration for WordPress | |
| * | |
| * The wp-config.php creation script uses this file during the | |
| * installation. You don't have to use the web site, you can | |
| * copy this file to "wp-config.php" and fill in the values. | |
| * | |
| * This file contains the following configurations: | |
| * |
| #Author: WP Site Care | |
| #Link: http://www.wpsitecare.com/import-blogger-to-wordpress/ | |
| #Redirect archives | |
| RewriteRule ^([0-9]{4})_([0-9]{1,2})_([0-9]{1,2})_archive.html$ $1/$2/ [L,R=301] | |
| #Redirect labels/categories | |
| RewriteRule ^search/label/(.*)$ category/$1/ [L,R=301] |
| #Author: WP Site Care | |
| #Link: http://www.wpsitecare.com/import-blogger-to-wordpress/ | |
| #ATOM Feeds | |
| RewriteRule atom.xml feed/atom/ [L,R=301] | |
| RewriteRule feeds/posts/default feed/atom/ [L,R=301] | |
| #RSS FEEDS | |
| RewriteRule feeds/posts/default?alt=rss feed/ [L,R=301] | |
| RewriteRule rss.xml feed/ [L,R=301] | |
| #Comments Feed |
| <?php | |
| /** | |
| * Rewrite WordPress URLs to match Blogger permalinks exactly. | |
| * | |
| * This script is intended for one time use only after importing Blogger | |
| * content into WordPress and should be removed from the server immediately | |
| * after the script has run one time. It shouldn't be needed again after the | |
| * initial rewrite. | |
| * | |
| * @version 0.1.0 |
| <?php | |
| /* | |
| Plugin Name: Genesis Simple Logo | |
| Description: Lets you easily add a logo to your Genesis website using the WordPress customizer. | |
| Version: 1.0.8.1 | |
| License: GPL version 2 or any later version | |
| Plugin URI: http://flagshipwp.com/plugins/genesis-simple-logo/ | |
| Git URI: https://github.com/wpbacon/genesis-simple-logo | |
| Author: Flagship | |
| Author URI: http://flagshipwp.com/ |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| //don't use (deregister) WP's jQuery version | |
| wp_deregister_script( 'jquery' ); | |
| //Use jQuery from Google Code | |
| wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js'); | |
| //Include one of my custom javascript files |
| function wpsc_tutorial_icons() { | |
| global $post_type; | |
| ?> | |
| <style> | |
| <?php if (($_GET['post_type'] == 'tutorial') || ($post_type == 'tutorial')) : ?> | |
| #icon-edit { background:transparent; background-image: url('<?php echo plugins_url('images/tutorial.png', __FILE__) ?>') no-repeat !important; } | |
| <?php endif; ?> | |
| #adminmenu #menu-posts-tutorial div.wp-menu-image{background:transparent; background-image: url('<?php echo plugins_url('images/tutorial.png', __FILE__) ?>') no-repeat !important;} | |
| #adminmenu #menu-posts-tutorial:hover div.wp-menu-image,#adminmenu #menu-posts-tutorial.wp-has-current-submenu div.wp-menu-image{background:transparent; background-image: url('<?php echo plugins_url('images/tutorial.png', __FILE__) ?>') no-repeat !important;} | |
| </style> |