quicktag breaking FancyBox plugin on my blog’s front page

Your images aren’t being encapsulated by the hyperlink markup, so unless you’re using additional calls, Fancybox won’t know which hyperlinks/images to Fancybox. You’ll either need to fix this in the template loop that your homepage uses, or add some hacky additional call like: jQuery(‘.post .imgpost’).on(‘click’, function($) { $.fancybox(); });

Child Theme’s Read More Text

As this line of code is hardcoded in the index.php file rather than called via a function you only really have two options: Write your own function to call this code (with your chosen read more text), then replace the relevant section in the child theme’s index.php file with a call to this function. The … Read more

How to change the “Read more” text?

The excerpt_more filter only handles the linked text – not the link itself. Try: function new_excerpt_more( $more ) { return ‘<br/><br/>Read More’; } add_filter( ‘excerpt_more’, ‘new_excerpt_more’);

More tag locked in Hemingway

WordPress has the functionality built-in natively. Try updating the read more tag in the Text editor. Examples: <!–more Episode Summary and Extras –> <!–more Regular Blog Post –> <!–more Read More About My Cats –> This only works with the_content(), but it sounds like your theme’s blog loop is using that.

Read more on pages WordPress

Better to use <!–nextpage–> if you want to split content. See theme requirement: http://codex.wordpress.org/Template_Tags/wp_link_pages I don’t understand why people keep wanting “Read more” to work in Pages.