In addition, you will see the word 'Permalink' displayed in place of the blank title.
This fix corrects the code by removing the word 'permalink' from the post title. It also adds the word 'Permalink' to the 'custom read more' if you are using '%title%' in it's configuration.
edit functions.php and change line 285 (version 3.6.4) from
HTML Code:
$custom_read_more = str_replace('%title%', the_title('','',FALSE), $custom_read_more);
HTML Code:
if ( get_the_title() == '' ) { $custom_read_more = str_replace('%title%', 'Permalink', $custom_read_more); } else { $custom_read_more = str_replace('%title%', the_title('','',FALSE), $custom_read_more); }
HTML Code:
// Since 3.6.1: Display a link to the full post if there is no post title and the post is too short // for a read more link. if ( get_the_title() == '' ) { ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link">Permalink</a><?php } else if ( (!is_single() AND !is_page()) OR $bfa_ata_display_body_title == '' ) {
HTML Code:
if ( (!is_single() AND !is_page()) OR $bfa_ata_display_body_title == '' ) {
Put 'functions.php' in the 'atahualpa' folder replacing the original.
Put 'bfa_post_parts.php' in the 'atahualpa/functions' folder replacing the original.
functions.php.zip
bfa_post_parts.php.zip