PluginProbe
Polylang / 3.7
Polylang v3.7
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
polylang / settings / view-about.php

view-about.php in Polylang 3.7, at settings/view-about.php

30 lines 830 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Displays the content of the About metabox
4 *
5 * @package Polylang
6 */
7
8 defined( 'ABSPATH' ) || exit;
9
10 ?>
11 <p>
12 <?php
13 printf(
14 /* translators: %1$s is link start tag, %2$s is link end tag. */
15 esc_html__( 'Polylang is provided with an extensive %1$sdocumentation%2$s (in English). It includes information on how to set up your multilingual site and use it on a daily basis; FAQs, and documentation for developers to adapt their plugins and themes.', 'polylang' ),
16 '<a href="https://polylang.pro/doc/">',
17 '</a>'
18 );
19 if ( ! defined( 'POLYLANG_PRO' ) ) {
20 echo ' ';
21 printf(
22 /* translators: %1$s is link start tag, %2$s is link end tag. */
23 esc_html__( 'Support and extra features are available to %1$sPolylang Pro%2$s users.', 'polylang' ),
24 '<a href="https://polylang.pro">',
25 '</a>'
26 );
27 }
28 ?>
29 </p>
30