PluginProbe ʕ •ᴥ•ʔ
ShareThis Follow Buttons / 1.1.1
ShareThis Follow Buttons v1.1.1
1.4.7 trunk 1.0.1 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6
sharethis-follow-buttons / templates / follow-buttons / list.php
sharethis-follow-buttons / templates / follow-buttons Last commit date
button-config.php 8 years ago enable-buttons.php 8 years ago follow-button-settings.php 8 years ago list.php 8 years ago onoff-buttons.php 8 years ago shortcode-templatecode.php 8 years ago widget.php 8 years ago
list.php
29 lines
1 <?php
2 /**
3 * List Template
4 *
5 * The template wrapper for the list of pages / categories used for exclusion.
6 *
7 * @package ShareThisFollowButtons
8 */
9
10 ?>
11 <div class="list-wrapper">
12 <h4>
13 <?php
14 // translators: The list type plural.
15 printf( esc_html__( 'Exclude specific %1$s', 'sharethis-follow-buttons' ), esc_html( $type['multi'] ) );
16 ?>
17 </h4>
18 <input id="<?php echo esc_attr( $type['single'] ); ?>-ta" type="text" placeholder="
19 <?php
20 // translators: The list type singular.
21 printf( esc_html__( 'Search for a %1$s', 'sharethis-follow-buttons' ), esc_html( $type['single'] ) );
22 ?>
23 " size="40" autocomplete="off">
24 <span id="<?php echo esc_attr( $type['single'] ); ?>" class="search-st-icon"></span>
25 <ul id="<?php echo esc_attr( $type['single'] ); ?>-result-wrapper"></ul>
26 <ul id="<?php echo esc_attr( $type['single'] ); ?>-current-omit"><?php echo wp_kses( $current_omit, $allowed ); ?></ul>
27 </div>
28
29