filtrod 6.5.0
block_core_navigation_listable_blocks
Opis — z kodu źródłowego
Filter the list of blocks that need a list item wrapper.
Affords the ability to customize which blocks need a list item wrapper when rendered within a core/navigation block. This is useful for blocks that are not list items but should be wrapped in a list item when used as a child of a navigation block.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$needs_list_item_wrapper | array | The list of blocks that need a list item wrapper. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'block_core_navigation_listable_blocks', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'block_core_navigation_listable_blocks', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii