| 1 |
<?php |
| 2 |
// Exit if accessed directly |
| 3 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 4 |
|
| 5 |
function wppb_toolbox_userlisting_search_placeholder_text( $default ) { |
| 6 |
$text = wppb_toolbox_get_settings( 'userlisting', 'search-placeholder-text' ); |
| 7 |
|
| 8 |
if ( $text == false ) |
| 9 |
return $default; |
| 10 |
|
| 11 |
return esc_html( $text ); |
| 12 |
} |
| 13 |
add_filter('wppb_userlisting_search_field_text', 'wppb_toolbox_userlisting_search_placeholder_text', 20 ); |
| 14 |
|