IDX Shortcode Documentation
idx_form
Description: Used to display a form
Allowed Attributes:
- id -- The id of the form to be displayed.
- action -- Sets the 'action' HTML attribute on the form (i.e. where it submits to)
<div class="idx-results"> | |
<div class="listing-excerpt"></div> | |
<div class="listing-excerpt"></div> | |
<div class="listing-excerpt"></div> | |
<div class="listing-excerpt"></div> | |
<div class="listing-excerpt"></div> | |
<div class="listing-excerpt"></div> | |
<div class="listing-excerpt"></div> | |
<div class="listing-excerpt"></div> | |
<div class="listing-excerpt"></div> |
function kcannon_new_listings_notifications_subject() { | |
return 'New Listing Notification | Karen Cannon Realtors'; | |
} | |
add_filter( 'idx_send_new_listings_notifications_subject', 'kcannon_new_listings_notifications_subject' ); |
function add_grav_forms(){ | |
$role_object = get_role( 'editor' ); | |
$role_object->add_cap( 'edit_theme_options' ); | |
$role = get_role('editor'); | |
$role->add_cap('gform_full_access'); | |
} | |
add_action('admin_init','add_grav_forms'); |
<a class="share-on-link share-on-twitter" href="https://twitter.com/intent/tweet?text=<?php echo urlencode(the_title_attribute('echo=0')); ?>&url=<?php the_permalink();?>">Twitter</a> | |
<a class="share-on-link share-on-facebook" href="https://www.facebook.com/sharer/sharer.php?u=<?php the_permalink();?>">Facebook</a> | |
<a class="share-on-link share-on-googleplus" href="https://plus.google.com/share?url=<?php the_permalink();?>">Google+</a> |
add_filter ( 'widget_title', 'kellyboudreau_add_span_widgets' ); | |
function kellyboudreau_add_span_widgets( $old_title ) { | |
$title = explode( " ", $old_title, 2 ); | |
if ( isset( $title[0] ) && isset( $title[1] ) ) { | |
$titleNew = "<span>$title[0]</span> $title[1]"; | |
} | |
else { | |
return; | |
} | |
return $titleNew; |
Description: Used to display a form
Allowed Attributes:
@mixin breakpoint($point) { | |
@if $point == lt-phablet { | |
@media all and (max-width: 599px) { @content; } | |
} | |
@if $point == phablet { | |
@media all and (min-width: 600px) { @content; } | |
} | |
@if $point == lt-tablet { | |
@media all and (max-width: 767px) { @content; } | |
} |
shortcode_ui_register_for_shortcode( | |
'wfcf_deal', | |
array( | |
'label' => 'Deal', | |
'listItemImage' => 'dashicons-awards', | |
'attrs' => array( | |
array( | |
'label' => 'Select Deal', | |
'attr' => 'deal', | |
'type' => 'post_select', |
// Load jQuery | |
if ( !is_admin() ) { | |
wp_enqueue_script('jquery'); | |
} |
<?php | |
add_action( 'wp_head', 'swg_add_ie_html5_shim' ); | |
function swg_add_ie_html5_shim() { | |
global $is_IE; | |
if ( $is_IE ) { | |
echo '<!--[if lt IE 9]>'; | |
echo '<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>'; | |
echo '<![endif]-->'; | |
} | |
} |