build_dropdown_script_block_core_categories

函数
build_dropdown_script_block_core_categories ( $dropdown_id )
参数
  • (string) $dropdown_id ID of the dropdown field.
    Required:
返回值
  • (string) Returns the dropdown onChange redirection script.
定义位置
相关方法
render_block_core_categoriesregister_block_core_categoriesdropdown_link_categorieswp_dropdown_categoriesdropdown_categories
引入
-
弃用
-

build_dropdown_script_block_core_categories: 这个函数用来建立下拉菜单,以便在类别块中选择一个类别。

为类别下拉字段生成内联脚本。

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 esc_url( home_url() ); ?>/?cat=" + dropdown.options[ dropdown.selectedIndex ].value;
			}
		}
		dropdown.onchange = onCatChange;
	})();
	/* ]]> */
	</script>
	<?php
	return ob_get_clean();
}

常见问题

FAQs
查看更多 >