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 |
---|---|
1665 | * @since 4.6.0 The `$context` parameter default changed from `false` to an empty string. |
1666 | * |
1667 | * @param array $types Types of connections. |
1668 | * @param array $credentials Credentials to connect with. |
1669 | * @param string $type Chosen filesystem method. |
1670 | * @param object $error Error object. |
1671 | * @param string $context Full path to the directory that is tested |
1672 | * for being writable. |
1673 | */ |
1674 | $types = apply_filters( 'fs_ftp_connection_types', $types, $credentials, $type, $error, $context ); |
1675 |
|
1676 | ?> |
1677 | <form action="<?php echo esc_url( $form_post ) ?>" method="post"> |
1678 | <div id="request-filesystem-credentials-form" class="request-filesystem-credentials-form"> |
1679 | <?php |
1680 | // Print a H1 heading in the FTP credentials modal dialog, default is a H2. |
1681 | $heading_tag = 'h2'; |
1682 | if ( 'plugins.php' === $pagenow || 'plugin-install.php' === $pagenow ) { |
1683 | $heading_tag = 'h1'; |