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
/* Usage Instructions | |
* [get-pdf-link] will return a raw link to the first PDF attachment to the post/page | |
* | |
* [pdf-content type="title|content"] "title" will return the Title of the PDF, which is referenced as "Root" in the XML document. | |
* ...continued: "content" will return the <Story> of the XML file, which is the top paragraph as assigned during PDF creation. | |
*/ | |
add_filter('upload_mimes', 'custom_upload_xml'); | |
function custom_upload_xml($mimes) { |
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 Name: Agents | |
* | |
* @package WP Real Estate 6 | |
* @subpackage Template | |
*/ | |
global $ct_options; |
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 if (!empty($_GET['search-listings'])) { | |
require('search-listings.php'); | |
return; | |
} ?> |
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
/* | |
* Layout | |
* | |
* @package WP Day Spa | |
* @subpackage CSS | |
* | |
WARNING! DO NOT EDIT THIS FILE! | |
To make it easy to update your theme, you should not edit the styles in this file. Instead use |
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 if (!empty($_GET['search-listings'])) { | |
require('search-listings.php'); | |
return; | |
} ?> |
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 | |
/** | |
* Agents Other Listings | |
* | |
* @package WP Pro Real Estate 7 | |
* @subpackage Widget | |
*/ | |
class ct_AgentsOtherListings extends WP_Widget { |
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 | |
/** | |
* Agents Other Listings | |
* | |
* @package WP Pro Real Estate 7 | |
* @subpackage Widget | |
*/ | |
class ct_AgentsOtherListings extends WP_Widget { |
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
'use strict'; | |
/** | |
* Core | |
* | |
* @package WP Day Spa | |
* @subpackage JavaScript | |
*/ | |
jQuery.noConflict(); |
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
@media only screen and (max-width: 767px) { | |
.container.main { padding: 0 !important; max-width: 100%;} | |
} |
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 Name: Agents | |
* | |
* @package WP Pro Real Estate 7 | |
* @subpackage Template | |
*/ | |
global $ct_options; |