Use with custom post type AND normal posts?
-
function rpl_change_ptype( $args ) { $args['post_type'] = 'your_post_type_goes_here'; return $args; } add_filter( 'random_post_args', 'rpl_change_ptype' );
The code above works great but will this plugin only work with one type of post at a time? Is it possible to generate a link for custom post types AND normal blog posts?
- The topic ‘Use with custom post type AND normal posts?’ is closed to new replies.