Forum Replies Created
-
AuthorPosts
-
psvj
Memberawesome thanks
July 29, 2014 at 9:51 pm in reply to: Remove Standard Navbar & Replace with completely custom HTML markup #116304psvj
Membergreat.
i found the answer here, in case anyone finds this thread through google---->
http://stackoverflow.com/questions/18828500/customize-genesis-header
July 29, 2014 at 7:37 pm in reply to: Remove Standard Navbar & Replace with completely custom HTML markup #116297psvj
MemberThanks-- do you happen to know how to add a new HTML navbar?
as in using only html /css that i write?
psvj
MemberThanks !
i ended up finding this snippet of code- which did the trick--
/* Filter the_content() */
add_filter( 'the_content', 'my_content_filter' );function my_content_filter( $content ) {
if ( is_single()) {
$content .= ' insert content ';
}
return $content;
}psvj
MemberThanks Andrea.
I ended up using this little snippet of code in my theme function.php file--
/* Filter the_content() */
add_filter( 'the_content', 'my_content_filter' );function my_content_filter( $content ) {
if ( is_single()) {
$content .= 'insert content';
}
return $content;
}psvj
Memberthanks!
-
AuthorPosts