Possible to add another setting to ‘Front page displays’ setting for Custom Post Type
It appears that the options-reading.php file is hard-coding its options, rather than using the Settings API. And that option is using wp_dropdown_pages() specifically. The Codex lists the following arguments for wp_dropdown_pages(): <?php $args = array( ‘depth’ => 0, ‘child_of’ => 0, ‘selected’ => 0, ‘echo’ => 1, ‘name’ => ‘page_id’); ?> The Codex page also … Read more