• Good Day Everyone,

    I’m sure the code exist already but I can’t find it anywhere.

    For now am using the below code to list all the pages and return the PAGE ID… But when I come back to my page with this drop down list it always shows the “Select Page” option it doesn’t return the page title…

    Can anyone help me in the good direction?

    <select name="page_selection">
    	<option value=""><?php echo esc_attr( __( 'Select page' ) ); ?></option>
    	<?php
    	$pages = get_pages();
    	foreach ( $pages as $page ) {
    		$option = '<option value="' . $page->ID . '">';
    		$option .= $page->post_title;
    		$option .= '</option>';
    		echo $option;
    	}
    	?>
    </select>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Drop Down Listing all Pages with some options’ is closed to new replies.