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 |
---|---|
619 |
|
620 | /** |
621 | * Filters the install action links for a plugin. |
622 | * |
623 | * @since 2.7.0 |
624 | * |
625 | * @param string[] $action_links An array of plugin action links. Defaults are links to Details and Install Now. |
626 | * @param array $plugin The plugin currently being listed. |
627 | */ |
628 | $action_links = apply_filters( 'plugin_install_action_links', $action_links, $plugin ); |
629 |
|
630 | $last_updated_timestamp = strtotime( $plugin['last_updated'] ); |
631 | ?> |
632 | <div class="plugin-card plugin-card-<?php echo sanitize_html_class( $plugin['slug'] ); ?>"> |
633 | <?php |
634 | if ( ! $compatible_php || ! $compatible_wp ) { |
635 | echo '<div class="notice inline notice-error notice-alt"><p>'; |
636 | if ( ! $compatible_php && ! $compatible_wp ) { |
637 | _e( 'This plugin doesn’t work with your versions of WordPress and PHP. ' ); |