Metabox multiple custom post select -> display selected items?
Based on the code you’ve posted I assume cl_guest post meta contains an array of post IDs. Building upon this assumption, you could do something like this. 1) Add these helper functions to your theme’s funtions.php file // custom template tag to render guests function render_guests( array $guests ) { if ( $guests ) { … Read more