Add URL to selected post in meta box
Super short version: Replace $post->post_title with get_permalink($post->ID). Short version: Add a filter to your current Code, where you output the post_title. $posts = get_posts(array(‘post_type’=> ‘lesson’, ‘post_status’=> ‘publish’, ‘suppress_filters’ => false, ‘posts_per_page’=>-1)); //here you add the HTML of the dropdown you add something like echo ‘<p>Select the lesson: <select name=”_dappcf_i_dropdown” class=”widefat” style=”width:170px” >’; foreach ($posts as … Read more