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 |
---|---|
1035 | * @type array $link_slug { |
1036 | * An array of information about the individual link to a page. |
1037 | * |
1038 | * $type string $label Label to use for the link. |
1039 | * $type string $url URL, relative to `network_admin_url()` to use for the link. |
1040 | * $type string $cap Capability required to see the link. |
1041 | * } |
1042 | * } |
1043 | */ |
1044 | $links = apply_filters( |
1045 | 'network_edit_site_nav_links', |
1046 | array( |
1047 | 'site-info' => array( |
1048 | 'label' => __( 'Info' ), |
1049 | 'url' => 'site-info.php', |
1050 | 'cap' => 'manage_sites', |
1051 | ), |
1052 | 'site-users' => array( |
1053 | 'label' => __( 'Users' ), |