Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created September 11, 2012 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/3702203 to your computer and use it in GitHub Desktop.
Save billerickson/3702203 to your computer and use it in GitHub Desktop.
<?php
/**
* Display Posts Shortcode - Offset Posts
* @author Bill Erickson
* @link http://wordpress.org/extend/plugins/display-posts-shortcode/
*
* @param array $args
* @param array $atts
* @return array $args
*/
function be_display_posts_shortcode_offset_posts( $args, $atts ) {
if( isset( $atts['offset'] ) ) {
$args['offset'] = (int) $atts['offset'];
}
return $args;
}
add_filter( 'display_posts_shortcode_args', 'be_display_posts_shortcode_offset_posts', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment