Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Shelob9 / wp_fixed_header.php
Last active December 20, 2015 12:09
Function to create fixed position headers in WordPress. Assumes the header is wrapped in #header-wrap and site content to scroll underneath it is wrapped in #primary.
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($) {
@Shelob9
Shelob9 / slidebar-step-1.js
Last active December 21, 2015 05:39
Code examples for "Slide Out Sidebar For Responsive Layouts" by Josh Pollockhttp://complexwaveform.com/secondfoundation/?p=159
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 });
@Shelob9
Shelob9 / pods_field_on_specific_page.php
Created September 3, 2013 23:10
Add to page.php to show 2 fields from one Pod on a specific page only http://pods.io/docs/code/pods/display/
//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() ) {
<?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) . '&nbsp;' . esc_attr($user->user_lastname);
@Shelob9
Shelob9 / custom_related_field.php
Last active May 23, 2022 00:16
Get related posts from a Pods custom relationship field and show post title--as a link--and a custom field. For full explanation see: http://pods.io/tutorials/get-values-from-a-custom-relationship-field/
@Shelob9
Shelob9 / matching-terms.php
Last active December 24, 2015 10:49
Takes entry of a taxonomy $tax and returns posts of the same post type (due to line 15) with same terms.
<?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 ) {
$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 );
@Shelob9
Shelob9 / pods-image-list.php
Last active December 24, 2015 22:59
For use in single-{post-type}.php or similar situation to list image sources from a Pods multi-select image field. Useful, with a little modification for most jQuery image gallery slideshow plugins. Designed for use with a custom post type. For advanced content types you will probably need to change the index ID to id on
<?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');
@Shelob9
Shelob9 / responsive.css
Last active March 22, 2018 19:29
Stupid simple grid, simplified from http://css-tricks.com/dont-overthink-it-grids/
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.grid {
background: white;
margin: 0 0 20px 0;
}
@Shelob9
Shelob9 / yday-tomorrow.php
Created October 26, 2013 06:21
Takes "yday" key (numeric representation of the day of the year 0-365) from php getthedate() and adds one to get tomorrow, unless it's 31 December, in which case returns 1. MUST FIND USE FOR THIS!
<?php
$today = getdate();
$tomorrow = $today['yday']+1;
if ( ( $tomorrow > 364 && date('L') == 0 ) || ( $tomorrow > 365 && date('L') == 1 ) ) {
$tomorrow = 1;
}