/var/www/html_fr/wp-content/plugins/yaymail/templates/fallbacks/fallback-minimum-wp.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

defined
'ABSPATH' ) || exit;

global 
$wp_version;

add_action(
    
'admin_notices',
    function() {
        if ( 
current_user_can'activate_plugins' ) ) {
            
?>
<div class="notice notice-error is-dismissible">
    <p>
        <strong>
            <?php
             
// translators: %1$s: current WordPress version,
            
printfesc_html__'YayMail requires WordPress 5.2.0 to work and does not support your current WordPress version %1$s.''yaymail' ), isset( $wp_version ) ? esc_html$wp_version ) : '' )
            
?>
        </strong>
    </p>
</div>
            <?php
        
}
    }
);