Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | function jetpack_monorepo_is_not_a_plugin() { |
||
18 | echo '<div class="notice notice-error"><p>'; |
||
19 | printf( |
||
20 | wp_kses( |
||
21 | /* translators: Link to Jetpack installation instructions. */ |
||
22 | __( 'The Jetpack Monorepo is not a plugin, and should not be installed as one. See <a href="%s">the Jetpack Monorepo documentation</a> for instructions on correctly installing Jetpack.', 'jetpack' ), |
||
23 | array( |
||
24 | 'a' => array( 'href' => array() ), |
||
25 | ) |
||
26 | ), |
||
27 | esc_url( 'https://github.com/Automattic/jetpack#jetpack-monorepo' ) |
||
28 | ); |
||
29 | echo "</p></div>\n"; |
||
30 | } |
||
31 | |||
33 |