wpgenie

shortcode no results display message

Jul 30th, 2024 (edited)
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function wsa_no_results_message( $attributes ) {
  2.     echo __( 'No auction(s) found.', 'my-language-domain' );
  3. }
  4. add_action( 'woocommerce_shortcode_ending_soon_auctions_loop_no_results', 'wsa_no_results_message', 10, 1 );
  5. add_action( 'woocommerce_shortcode_all_user_auctions_loop_no_results', 'wsa_no_results_message', 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment