Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi blkedy!

    Looks like you’ve found the solution. Would you mind letting us know whether it worked?

    Hi – I was looking to change the default “No Feed items found text”, and tried pasting the link blkedy suggested in functions.php. I switched out the text in single quotes inside the parentheses, but it didn’t make any difference on the front end for an empty feed. Can you help?
    Thanks!

    Hi edharrisdotme and to whom it may concern,

    The script blkedy provides is the filter itself.

    To make use of this filter, try to use this code instead on your theme’s function.php file (I recommend using a Child Theme):

    add_filter( 'no_feed_items_found', 'my_no_feed_items_found_text' );
    function my_no_feed_items_found_text() {
    	return __( 'Put your text in here.', 'text-domain' );
    }

    Hope this helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change "No feed items found." text.’ is closed to new replies.