WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1040 | * @type array $link_slug { |
1041 | * An array of information about the individual link to a page. |
1042 | * |
1043 | * $type string $label Label to use for the link. |
1044 | * $type string $url URL, relative to `network_admin_url()` to use for the link. |
1045 | * $type string $cap Capability required to see the link. |
1046 | * } |
1047 | * } |
1048 | */ |
1049 | $links = apply_filters( |
1050 | 'network_edit_site_nav_links', |
1051 | array( |
1052 | 'site-info' => array( |
1053 | 'label' => __( 'Info' ), |
1054 | 'url' => 'site-info.php', |
1055 | 'cap' => 'manage_sites', |
1056 | ), |
1057 | 'site-users' => array( |
1058 | 'label' => __( 'Users' ), |