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 slug_header-Stick($options) { | |
echo "<style> #header-wrap(position:fixed;}"; | |
if (is_user_logged_in() ) { | |
echo "#header-wrap{ margin-top:19px; z-index:100; } </style>"; | |
} | |
echo "</style>" | |
echo " | |
<script> | |
jQuery(document).ready(function($) { |
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(document).ready(function($) { | |
//Push page conent down below the fixed position header. | |
$('#primary').css('padding-top', $('#header-wrap').height() + 'px'); | |
//Close the sidebar. | |
$("#content").animate({ | |
width: '100%' | |
}, { duration: 300, queue: false }); | |
$("#secondary").animate({ | |
marginLeft: "33%" | |
}, { duration: 300, queue: false }); |
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
//check if we are on the right page | |
//CHANGE: $id to page id of page to show these fields on | |
if ( is_single($id) ) { | |
//Put the pod into variable $pod. | |
//CHANGE: 'pod_name' to the name of your pod. | |
$pod = pods( 'pod_name'); | |
//check that we have entries in said pod | |
if ( 0 < $pod->total() ) { | |
while ( $pod->fetch() ) { |
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 if ( have_posts() ) : ?> | |
<?php | |
/**Get all of the data about the author from the WordPress and Pods generated user profile fields.**/ | |
//First get the_post so WordPress knows who's author page this is | |
the_post(); | |
//get the author's meta data and store in array $user | |
$user = get_userdata( get_the_author_meta('ID') ); | |
//Escape all of the meta data we need into variables | |
$name = esc_attr($user->user_firstname) . ' ' . esc_attr($user->user_lastname); |
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 | |
// @param string $tax A taxonomy slug to match | |
function slug_name( $tax ) { | |
// get ids for all terms with matching $tax | |
$terms = get_the_terms( get_the_id(), $tax ); | |
//test if there are any terms if so continue, if not then skip this | |
if ( ! empty( $terms ) ) { | |
//get the taxnomy slug foreach and put in $cats array to be fed to WP_Query | |
$cats = array(); | |
foreach ( $terms as $term ) { |
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
$todays_date = date('Y-m-d'); | |
$params = array( | |
'limit' => 4, | |
'where' => 'DATE( event_date.meta_value ) >= "' . $todays_date . '" AND t.post_status = "publish"' | |
); | |
// Run the find | |
$mypod = pods( 'event', $params ); |
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 id for current item | |
$id = get_post_meta($post->ID); | |
//get pods object for current item. | |
$pod = pods( 'pod_name', $id); | |
?> | |
<ul> | |
<?php | |
//get array of all attatched images | |
$imgs = $pod->field( 'image_field_name'); |
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
* { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
.grid { | |
background: white; | |
margin: 0 0 20px 0; | |
} |
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 | |
$today = getdate(); | |
$tomorrow = $today['yday']+1; | |
if ( ( $tomorrow > 364 && date('L') == 0 ) || ( $tomorrow > 365 && date('L') == 1 ) ) { | |
$tomorrow = 1; | |
} |