You appear to be a bot. Output may be restricted
Description
Load hierarchical posts
Usage
bw_load_noderef2_hier( $post_type, $args );
Parameters
- $post_type
- ( string ) required – the post type to load
- $args
- ( array ) required – other parameters to get_pages()
Returns
voidSource
File name: oik/includes/bw_noderef2.phpLines:
1 to 6 of 6
function bw_load_noderef2_hier( $post_type, $args ) { $args['post_type'] = $post_type; $posts = get_pages( $args ); $options = bw_post_array_hier( $posts ); return( $options ); }View on GitHub View on Trac