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 | |
| /** | |
| * The template for displaying Comments. | |
| * | |
| * The area of the page that contains both current comments | |
| * and the comment form. The actual display of comments is | |
| * handled by a callback to twentytwelve_comment() which is | |
| * located in the functions.php file. | |
| * | |
| * @package WordPress |
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 | |
| //listview template customization. | |
| // This file is under development. So its not included in functions.php | |
| function whoop_category_list_view_ul_extra_class($extra_class) { | |
| $extra_class = 'whoop-view'; | |
| return $extra_class; | |
| } | |
| add_filter('geodir_category_list_view_ul_extra_class', 'whoop_category_list_view_ul_extra_class', 10, 1); |
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 | |
| /** | |
| * Template for the list of places | |
| * | |
| * This is used mostly on the listing (category) pages and outputs the actual grid or list of listings. | |
| * See the link below for info on how to replace the template in your theme. | |
| * | |
| * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/ | |
| * @since 1.0.0 | |
| * @package GeoDirectory |
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 | |
| /** | |
| * | |
| * This file contains a reference user interface for hierarchical groups. | |
| * One part is the Groups extension that adds the Member Groups tab to groups | |
| * and allows creators to place new groups within the hierarchy. | |
| * The other is an administrative and permissions interface for that feature | |
| * | |
| * This is not tied to the implementation of hierarchical groups contained in the other files | |
| * |
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 | |
| function themename_customize_register($wp_customize){ | |
| $wp_customize->add_section('themename_color_scheme', array( | |
| 'title' => __('Color Scheme', 'themename'), | |
| 'priority' => 120, | |
| )); | |
| // ============================= |
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
| .geotheme-style-100 { | |
| color: #000; | |
| font-family: 'Lato','Open Sans', sans-serif; | |
| } | |
| .geotheme-style-100 p { | |
| margin: 0 0 10px; | |
| color: #000; | |
| font-size: 15px; | |
| line-height: 25px; |
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 Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.com | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
| */ | |
| $args = array( |
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
| /* ----- 20-02-2015 ----*/ | |
| #geodir-bestof-places { | |
| padding: 10px; | |
| clear: both; | |
| } | |
| #geodir-bestof-loading { | |
| text-align: center; | |
| padding: 50px 0; |
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
| /* ----- 20-02-2015 ----*/ | |
| #geodir-bestof-places { | |
| padding:10px; | |
| clear: both; | |
| } | |
| #geodir-bestof-loading { | |
| text-align: center; | |
| padding: 50px 0; | |
| display: none; |
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
| git for-each-ref refs/remotes/tags | cut -d / -f 4- | | |
| while read ref | |
| do | |
| git tag -a "$ref" -m"Tag $ref" "refs/remotes/tags/$ref" | |
| done |