View functions.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
/* =========================================== | |
Count LC Page Views | |
=============================================*/ | |
function non_member_view_count() { | |
if ( !is_user_logged_in() ) { | |
if ( !isset($_COOKIE['lc_page_view']) ) { | |
$value = 1; | |
setcookie('lc_page_view', $value, time()+3600*24*100, '/', 'cardiacmri.com', false); |
View attachment-cpt.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
/* =========================================== | |
Show Guest Photo Attachment in CPT Admin Columns | |
=============================================*/ | |
// GET ATTACHED IMAGE | |
function revcon_get_attachment_image($post_ID) { | |
$images = get_attached_media('image', $post_ID); | |
if ($images) { |
View simplegrid.scss
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
/* | |
Simple Grid | |
Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/ | |
Project Page - http://thisisdallas.github.com/Simple-Grid/ | |
Author - Dallas Bass | |
Site - dallasbass.com | |
*/ | |
*, *:after, *:before { | |
-webkit-box-sizing: border-box; |
View recipet-query.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 // DEFAULT LOOP | |
if( (!isset($_POST['product_selection']) || '' == $_POST['product_selection']) && (!isset($_POST['cat_selection']) || '' == $_POST['cat_selection'] )) { ?> | |
<?php | |
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; | |
$query = new WP_Query( array( | |
'post_type' => 'recipes', // your CPT |
View filter-products.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 | |
function recipe_product_filter() { | |
global $post; | |
// Query products | |
$query = new WP_Query(array( | |
'post_type' => 'recipes', |
View profile-change-notice.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 | |
/* =========================================== | |
Send Emails when User Profile Changes | |
=============================================*/ | |
// IF EMAIL CHANGES | |
function sr_user_profile_update_email( $user_id, $old_user_data ) { | |
$user = get_userdata( $user_id ); |
View functionality.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
/* =========================================== | |
Radio Button Icons in Admin for ACF | |
=============================================*/ | |
function sr_acf_radio_style() { | |
echo '<link rel="stylesheet" href="' . plugins_url( 'css/jazz.css', __FILE__) . '" type="text/css" media="screen" />'; | |
} | |
add_action('admin_head', 'sr_acf_radio_style'); |
View revcon_get_images
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
// This is modified to show the image captions | |
function revconcept_get_images($post_id) { | |
global $post; | |
$thumbnail_ID = get_post_thumbnail_id(); | |
$images = get_children( array('post_parent' => $post_id, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') ); | |
if ($images) : |
NewerOlder