PluginProbe ʕ •ᴥ•ʔ
Tracking Code Manager / 2.3.0
Tracking Code Manager v2.3.0
trunk 1.11.8 1.11.9 1.12.0 1.12.1 1.12.2 1.12.3 1.4 1.5 2.0.0 2.0.1 2.0.13 2.0.14 2.0.15 2.0.16 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0
tracking-code-manager / includes / admin / faq.php
tracking-code-manager / includes / admin Last commit date
about.php 1 year ago button-mce.php 1 year ago faq.php 1 year ago feedback.php 1 year ago metabox.php 1 year ago settings.php 1 year ago whatsnew.php 1 year ago
faq.php
17 lines
1 <?php
2 function irp_ui_faq() {
3 global $irp;
4 $i=1;
5 while($irp->Lang->H('Faq.Question'.$i)) {
6 $q=$irp->Lang->L('Faq.Question'.$i);
7 $r=$irp->Lang->L('Faq.Response'.$i);
8 ?>
9 <p>
10 <b><?php echo esc_html($q)?></b>
11 <br/>
12 <?php echo esc_html($r)?>
13 </p>
14 <?php
15 ++$i;
16 }
17 }