__( 'Ignore', 'acf_rpw' ) ) );
echo parent::gti( 's', __( 'Search Keyword', 'acf_rpw' ), __( 'If specified it will limit posts satisfying the search query.', 'acf_rpw' ) );
echo parent::gti( 'ex', __( 'Exclude', 'acf_rpw' ), __( 'Specify comma separated post ids.', 'acf_rpw' ) );
echo parent::gtc( 'dd', __( 'Display Date', 'acf_rpw' ), array( __( 'Display Date', 'acf_rpw' ) ) );
echo parent::gti( 'df', __( 'Date Format', 'acf_rpw' ), __( 'Specify any custom date format -
reference.', 'acf_rpw' ) );
echo parent::gtc( 'dr', __( 'Date Relative', 'acf_rpw' ), array( 'Date Relative' ), __( 'Checked - ignores the date format. Displays date in relateive format ex: 2 minutes ago.', 'acf_rpw' ) );
echo parent::gti( 'ds', __( 'Date Start', 'acf_rpw' ), __( 'Start date of posts to render. Posts during that day are not included.', 'acf_rpw' ), 'picker' );
echo parent::gti( 'de', __( 'Date End', 'acf_rpw' ), __( 'End date of posts to render. Posts during that day are not included.', 'acf_rpw' ), 'picker' );
echo parent::gti( 'pass', __( 'Password', 'acf_rpw' ), __( 'If not empty, only post with specific password will be shown.', 'acf_rpw' ) );
echo parent::gtc( 'hp', __( 'Show password protected posts only?', 'acf_rpw' ), array( __( 'Has Password', 'acf_rpw' ) ) );
echo parent::gtc( 'ep', __( 'Exclude password protected posts?', 'acf_rpw' ), array( __( 'No Password', 'acf_rpw' ) ), __( 'Has lowest priority over the other password fields!', 'acf_rpw' ) );
// not needed without specific time echo parent::gtc( 'di', 'Date Inclusive', 'If set includes the start and end posts in the loop.' , array( 'include' => 'include' ) );
?>
true ), 'names' ), get_post_types( array( 'public' => true ), 'names' ) ) );
// print the post formats checkboxes
if ( current_theme_supports( 'post-formats' ) ):
$post_formats = get_theme_support( 'post-formats' );
if ( is_array( $post_formats[0] ) ):
array_push( $post_formats[0], 'standard' );
echo parent::gtc( 'pf', __( 'Post Formats', 'acf_rpw' ), array_combine( $post_formats[0], $post_formats[0] ), __( 'Displays specific or multiple post formats', 'acf_rpw' ) );
endif;
endif;
// print the post statuses
echo parent::gtc( 'ps', __( 'Post Statuses', 'acf_rpw' ), array_combine( get_available_post_statuses(), get_available_post_statuses() ) );
// allow inputting authors
echo parent::gti( 'aut', __( 'Authors', 'acf_rpw' ), __( 'Comma separated list of author ids. Ex. 1,2,3,4', 'acf_rpw' ) );
echo parent::gts( 'ord', __( 'Order', 'acf_rpw' ), array( 'ASC' => __( 'Ascending', 'acf_rpw' ), 'DESC' => __( 'Descending', 'acf_rpw' ) ) );
?>
__( 'ID', 'acf_rpw' ),
'author' => __( 'Author', 'acf_rpw' ),
'title' => __( 'Title', 'acf_rpw' ),
'date' => __( 'Date', 'acf_rpw' ),
'modified' => __( 'Modified', 'acf_rpw' ),
'rand' => __( 'Random', 'acf_rpw' ),
'comment_count' => __( 'Comment Count', 'acf_rpw' ),
'menu_order' => __( 'Menu Order', 'acf_rpw' ),
'meta_value' => __( 'Meta Value', 'acf_rpw' ),
'meta_value_num' => __( 'Meta Value Numeric', 'acf_rpw' ) ), __( 'If meta order is specified the next field cannot be empty.', 'acf_rpw' ) );
echo parent::gti( 'mk', __( 'Meta Key', 'acf_rpw' ), __( 'Fetch only posts having the Meta Key. Required if Meta Value or Meta Value Numeric was selected above.', 'acf_rpw' ) );
echo parent::gts( 'meta_compare', __( 'Meta compare', 'acf_rpw' ), array(
'' => __( 'None', 'acf_rpw' ),
'=' => __( '=', 'acf_rpw' ),
'!=' => __( '!=', 'acf_rpw' ),
'>' => __( '>', 'acf_rpw' ),
'>=' => __( '>=', 'acf_rpw' ),
'<' => __( '<', 'acf_rpw' ),
'<=' => __( '<=', 'acf_rpw' ),
'LIKE' => __( 'LIKE', 'acf_rpw' ),
'IN' => __( 'IN', 'acf_rpw' ),
'NOT IN' => __( 'NOT IN', 'acf_rpw' ),
'BETWEEN' => __( 'BETWEEN', 'acf_rpw' ),
'NOT BETWEEN' => __( 'NOT BETWEEN', 'acf_rpw' ),
'EXISTS' => __( 'EXISTS', 'acf_rpw' ),
'NOT EXISTS' => __( 'NOT EXISTS', 'acf_rpw' ),
'REGEXP' => __( 'REGEXP', 'acf_rpw' ),
'NOT REGEXP' => __( 'NOT REGEXP', 'acf_rpw' ),
'RLIKE' => __( 'RLIKE', 'acf_rpw' ),
), __( 'Specify the meta compare format, see CODEX and plugin documentation for further reference.', 'acf_rpw' ) );
echo parent::gti( 'meta_value', __( 'Meta Value', 'acf_rpw' ), __( 'Specify the Meta Value to compare the key with. Leave empty for none.', 'acf_rpw' ) );
//echo parent::gt( 'mq', __( 'Meta Query.', 'acf_rpw' ), __( 'See plugin documentation for further reference.', 'acf_rpw' ) );
?>
term_id] = $cat->name;
}
echo parent::gtc( 'ltc', __( 'Limit to Category', 'acf_rpw' ), $categories );
?>
term_id] = $tag->name;
}
echo parent::gtc( 'lttag', __( 'Limit to Tag', 'acf_rpw' ), $tags );
echo parent::gti( 'ltt', __( 'Limit to taxonomy', 'acf_rpw' ), __( 'Ex: category=1,2,4&post-tag=6,12.', 'acf_rpw' ) );
echo parent::gts( 'ltto', __( 'Operator', 'acf_rpw' ), array( 'IN' => __( 'IN', 'acf_rpw' ), 'NOT IN' => __( 'NOT IN', 'acf_rpw' ) ), __( '"IN" includes posts from the taxonomies, NOT IN excludes posts from these taxonomies.', 'acf_rpw' ) );
?>
__( 'Display', 'acf_rpw' ) ) );
parent::gti( 'thh', __( 'Thumbnail Height', 'acf_rpw' ) );
parent::gti( 'thw', __( 'Thumbnail Width', 'acf_rpw' ) );
parent::gts( 'tha', __( 'Thumbnail Alignment', 'acf_rpw' ), array(
'acf-rpw-left' => __( 'Left', 'acf_rpw' ),
'acf-rpw-right' => __( 'Right', 'acf_rpw' ),
'acf-rpw-middle' => __( 'Middle', 'acf_rpw' )
)
);
?>
__( 'Ignore', 'acf_rpw' ) ) );
echo parent::gti( 'el', __( 'Excerpt Length', 'acf_rpw' ), __( 'Limits the excerpt to specified number of words.', 'acf_rpw' ) );
echo parent::gtc( 'is', __( 'Display Readmore', 'acf_rpw' ), array( __( 'Readmore', 'acf_rpw' ) ) );
?>