Filter hook 'akismet_show_compatible_plugins'

in WP Core File wp-content/plugins/akismet/views/config.php at line 75

View Source

akismet_show_compatible_plugins

Filter Hook

Hook Information

File Location wp-content/plugins/akismet/views/config.php View on GitHub
Hook Type Filter
Line Number 75

Hook Parameters

This hook doesn't accept any parameters.

Usage Examples

Basic Usage
<?php
// Hook into akismet_show_compatible_plugins
add_filter('akismet_show_compatible_plugins', 'my_custom_filter');

function my_custom_filter() {
    // Your custom filtering logic here
    return 'modified_value';
}

Source Code Context

wp-content/plugins/akismet/views/config.php:75 - How this hook is used in WordPress core
<?php
  70  					</ul>
  71  				</div> <!-- close akismet-new-snapshot -->
  72  			</div> <!-- close akismet-card -->
  73  		<?php endif; ?>
  74  
  75  		<?php if ( apply_filters( 'akismet_show_compatible_plugins', true ) ) : ?>
  76  			<?php Akismet::view( 'compatible-plugins' ); ?>
  77  		<?php endif; ?>
  78  
  79  		<?php if ( $akismet_user ) : ?>
  80  			<div class="akismet-card">

PHP Documentation

No PHP documentation available for this hook.
Quick Info
  • Hook Type: Filter
  • Parameters: 0
  • File: wp-content/plugins/akismet/views/config.php
Related Hooks

Related hooks will be displayed here in future updates.