This file contains 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
//counties ONTARIO | |
{ | |
"name": "all", | |
"north": "56.8565279", | |
"south": "41.6801344", | |
"west": "-95.155081", | |
"east": "-74.34388230000002" | |
}, { | |
"name": "Algoma", | |
"north": "49.7098631", |
This file contains 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
/* | |
* jQuery Nivo Slider v2.5.2 | |
* http://nivo.dev7studios.com | |
* | |
* Copyright 2011, Gilbert Pellegrom | |
* Free to use and abuse under the MIT license. | |
* http://www.opensource.org/licenses/mit-license.php | |
* | |
* March 2010 | |
*/ |
This file contains 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
html { | |
overflow-y: scroll; | |
margin: 0; | |
padding: 0; | |
/*max-width:1280px;*/ | |
} | |
body { | |
background: url("/image/bg-with-astronaught.jpg") no-repeat scroll 0 0 #000000; | |
color: #FFFFFF; |
This file contains 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 print_filters_for( $hook = '' ) { | |
global $wp_filter; | |
if( empty( $hook ) || !isset( $wp_filter[$hook] ) ) | |
return; | |
print '<pre>'; | |
print_r( $wp_filter[$hook] ); | |
print '</pre>'; | |
} | |
//Call it where you need it. |
This file contains 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 shortcode | |
add_shortcode( 'properties_list', 'list_porperties_func' ); | |
//short code function | |
function list_porperties_func( $atts ) { | |
$a = shortcode_atts( array( | |
'property_type' => '' | |
), $atts ); | |
ob_start(); | |
require_once(plugin_dir_path(__FILE__) ."/templates/shortcode-archive-listings.php"); |
This file contains 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 | |
/** | |
* OIFN extended | |
* | |
* integrates google map into a location based buddypress | |
* | |
* @package oifn-extended | |
* @author Christopher James Chruchill <[email protected]> | |
* @license GPL-2.0+ | |
* @link http://buildawebdoctor.com |
This file contains 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 | |
/** | |
* Dance Energy Generic | |
* | |
* @package dance-energy-generic | |
* @author Christopher Churchill <[email protected]> | |
* @license GPL-2.0+ | |
* @link http://buildawebdoctor.com | |
* @copyright 8-27-2014 BAWD | |
*/ |
This file contains 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 | |
/** | |
* get_columns_array | |
* | |
* Columns for the loop, single function interface (limited) | |
* | |
* Copyright (c) 2011 hakre <http://hakre.wordpress.com/>, some rights reserved | |
* | |
* USAGE: |
OlderNewer