Forum Replies Created
-
AuthorPosts
-
meghanwagnerMember
No problem, thought I could be able to help troubleshoot. Sorry I couldn't be any more help. Good luck!
meghanwagnerMemberNope you shouldn't. What is your site URL?
meghanwagnerMemberHmm I'm not sure what to tell you. I'd double check that a semi-colon didn't get dropped.
meghanwagnerMemberIt may not be the best solution but try removing ’ . get_the_title() . ‘ and just entering the title you want to show, it's not dynamic but that may be the problem.
meghanwagnerMemberYes in the functions.php file.
meghanwagnerMemberHey Josephine,
This is how i got the title to show:
//Add Blog Title
add_action( 'get_header', 'add_blog_title');
function add_blog_title() {
if (is_home() ) {
add_filter( 'genesis_before_content_sidebar_wrap', 'blog_title' );
function blog_title() {
echo '<h1 class="entry-title">' . get_the_title() . '</h1>';
}}
}meghanwagnerMemberNope doesn't work. Would it be possible to have something that is blocking the code or overriding it?
I'm just not sure what that would be. -
AuthorPosts