build_dropdown_script_block_core_categories( string $dropdown_id )

Generates the inline script for a categories dropdown field.


Description Description


Parameters Parameters

$dropdown_id

(string) (Required) ID of the dropdown field.


Top ↑

Return Return

(string) Returns the dropdown onChange redirection script.


Top ↑

Source Source

File: wp-includes/blocks/categories.php

function build_dropdown_script_block_core_categories( $dropdown_id ) {
	ob_start();
	?>
	<script type='text/javascript'>
	/* <![CDATA[ */
	( function() {
		var dropdown = document.getElementById( '<?php echo esc_js( $dropdown_id ); ?>' );
		function onCatChange() {
			if ( dropdown.options[ dropdown.selectedIndex ].value > 0 ) {
				location.href = "<?php echo home_url(); ?>/?cat=" + dropdown.options[ dropdown.selectedIndex ].value;
			}
		}
		dropdown.onchange = onCatChange;
	})();
	/* ]]> */
	</script>
	<?php
	return ob_get_clean();
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.