sullysul
Forum Replies Created
-
Thanks for the feedback! The “entry-title” is not inside the index.php file. But I did a search and it’s found in the content-extentions.php file.
// Create post title
if (function_exists(‘childtheme_override_postheader_posttitle’)) {
function thematic_postheader_posttitle() {
return childtheme_override_postheader_posttitle();
}
} else {
function thematic_postheader_posttitle() {if (is_single() || is_page()) {
$posttitle = ‘<h1 class=”entry-title”>’ . get_the_title() . “</h1>\n”;
} elseif (is_404()) {
$posttitle = ‘<h1 class=”entry-title”>’ . __(‘Not Found’, ‘thematic’) . “</h1>\n”;
} else {
$posttitle = ‘<h2 class=”entry-title”><a href=”‘;
$posttitle .= apply_filters(‘the_permalink’, get_permalink());
$posttitle .= ‘” title=”‘;
$posttitle .= __(‘Permalink to ‘, ‘thematic’) . the_title_attribute(‘echo=0’);
$posttitle .= ‘” rel=”bookmark”>’;
$posttitle .= get_the_title();
$posttitle .= “</h2>\n”;
}return apply_filters(‘thematic_postheader_posttitle’,$posttitle);
}
} // end postheader_posttitleHave any your thoughts about what to edit or move?
Forum: Fixing WordPress
In reply to: Please don't immediately bash Godaddy is Economy hosting too slow?I already have web master tools installed, where do I look to get definitive answers?
Forum: Fixing WordPress
In reply to: Is having a site map necessary for google with a blog?I’m always hesitant in installing plug ins, should I be for this?
Forum: Fixing WordPress
In reply to: Draft Saving and then Publish Immediately Not Available?I did that but the relevancy in google and potency of the post seems to be lessened.
Forum: Themes and Templates
In reply to: comments in an iframeAndy: Did you figure the comments put into an iframe to scroll your comments in a post? If so, can I take a look – what’s your site? I’m trying to do the same thing. ran into issues filtering in the comments. I can’t find out where the wordpress generated files (or the correct php code) is? Take a look at my progress at: https://www.chicagoillinoisweddingphotography.com. As you can see, it’s loading the whole comment page instead of just the comments. Thanks for your help.