Forum Replies Created
-
AuthorPosts
-
jdingman
MemberI've tried numerous combinations, but nothing has worked -- even changing that under Settings > Reading
Blogging at jonathan.vc
jdingman
MemberFor example, if I have this HTML:
<div class="post-3984 person type-person status-publish hentry entry">
<h2 class="entry-title"><a href="http://v3./person/brian-gardner/" title="Brian Gardner" rel="bookmark">Brian Gardner</a></h2>
<div class="entry-content">
<div class="post-info"><span class="date published time" title="2013-01-17T00:11:50+00:00">January 17, 2013</span> By <span class="author vcard"><span class="fn"><a href="http://v3./author/jonathan/" class="fn n" title="Jonathan Dingman" rel="author">Jonathan Dingman</a></span></span> <span class="post-comments"><a href="http://v3./person/brian-gardner/#comments">20 Comments</a></span> <a class="post-edit-link" href="http://v3./wp-admin/post.php?post=3984&action=edit" title="Edit Person">(Edit)</a></div><p>My name is Brian Gardner and I created this site. Call it a playground, of sorts, for my mind to unravel itself into paragraph form. I love to write. In fact, I’ve always loved to write. When I was younger, it was an exit strategy — a way to let go of reality and enter a world that meant peace.</p>
</div><!-- end .entry-content -->
I want to edit almost every tag so I can manually add stuff, like itemscope and itemprop all the along the way.
Blogging at jonathan.vc
jdingman
MemberI'm a little confused about this as well,
function wps_tag_post_title_text( $title ) {
// do something
return $title;
}How do I modify what the actual HTML for the top HTML is of a title?
I'm trying to implement Schema.org data into my page, that's what I'm trying to modify the HTML for.
Blogging at jonathan.vc
jdingman
MemberThanks Travis, that should definitely help.
I'll play around with it and see what I can do.
Question actually, is there a place I can view all the options to modify the $title and those variables? I'm not sure what I have available to modify.
Blogging at jonathan.vc
jdingman
MemberHi Christopher,
I tried looking at genesis_post_title as a hook, but in my testing I wasn't able to modify the HTML.
Do you have any examples I could see?
Blogging at jonathan.vc
jdingman
MemberBack to trying to figure this out.
Does anyone know of a better permanent solution that lets me add a second menu to the same line as the primary menu?
ie, I'm looking at Metro and trying to add a second menu in the primary nav menu that will go on the right side of the div.
Blogging at jonathan.vc
jdingman
MemberWhat about a single function to set a specific layout for a specific CPT?
ie, if I have a CPT called "Themes" and I want all Posts under "Themes" to be set to the "full width" layout. How would I do that?
Blogging at jonathan.vc
jdingman
MemberNevermind, I figured out a solution that will work temporarily.
I just did this, and built my own custom function() to do it.
remove_action( 'genesis_before_header', 'genesis_do_subnav' );
add_action( 'genesis_after_header', 'custom_menu' );
This seems to work well until I can figure out a better long-term solution.
Blogging at jonathan.vc
-
AuthorPosts