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
Show hidden characters
| { | |
| "auto_complete_commit_on_tab" : true, | |
| "bold_folder_labels" : true, | |
| "color_scheme" : "Packages/Tomorrow Color Schemes/Tomorrow-Night-Bright.tmTheme", | |
| "default_line_ending" : "unix", | |
| "ensure_newline_at_eof_on_save" : true, | |
| "font_face" : "Ubuntu Mono", | |
| "font_options" : ["subpixel_antialias"], | |
| "font_size" : 14.0, | |
| "highlight_line" : true, |
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 | |
| /** | |
| * WordPress Prep. | |
| * | |
| * Based from the WordPress Downloader | |
| * http://www.farinspace.com/wordpress-downloader/ | |
| * | |
| * @package wordpress-prep | |
| * @version 1.0.1 | |
| * @author Jared Atchison |
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 | |
| // Replace your current wps_do_pitbull_image_three() with: | |
| function wps_do_pitbull_image_three() { | |
| wps_id_open( 'pitbull_image_three' ); | |
| global $post; | |
| wps_id_open( 'pitbull_image_three' ); | |
| echo '<p><img src="' .get_post_meta( $post->ID, '_d2c_pitbull_image_three', true ).'" /></p>'; | |
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
| var jQuery = { | |
| "fn": { | |
| "init": function () {}, | |
| "selector": {}, | |
| "jquery": {}, | |
| "size": function () {}, | |
| "get": function () {}, | |
| "pushStack": function () {}, | |
| "setArray": function () {}, | |
| "each": function () {}, |
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 | |
| add_filter( 'wp_nav_menu_items', 'gmj_add_date_menu_item', 10, 2 ); | |
| /** | |
| * Add date menu item to end of existing menu items. | |
| * | |
| * @author Gary Jones | |
| * | |
| * @param string $items Menu items already converted to a string of markup. | |
| * @args stdClass $args Menu arguments. |
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 | |
| add_filter( 'genesis_comment_list_args', 'childtheme_comment_list_args' ); | |
| /** | |
| * Change size of comment avatars. | |
| * | |
| * Value is side length of square avatar, in pixels. | |
| * | |
| * @author ipstenu | |
| * @link http://www.studiopress.com/forums/topic/change-gravatar-size/ |
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 | |
| add_filter( 'genesis_search_text', 'custom_search_input_text' ); | |
| /** | |
| * Customize the search form input button text. | |
| * | |
| * @param string $text Existing input text. | |
| * | |
| * @return string Amended input text. | |
| */ |
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 | |
| /** | |
| * Greatest Common Factor. | |
| * | |
| * @package GreatestCommonFactor | |
| * @author Gary Jones | |
| * @link http://code.garyjones.co.uk/greatest-common-factor-class/ | |
| * @license http://gamajo.mit-license.org/2011 | |
| */ |
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 | |
| // lib/structure/layout.php in Genesis 1.8.2 | |
| add_action( 'genesis_meta', 'genesis_load_stylesheet' ); | |
| /** | |
| * Echo reference to the style sheet. | |
| * | |
| * If a child theme is active, it loads the child theme's stylesheet, | |
| * otherwise, it loads the Genesis stylesheet. |