I would like to insert an "edit" link next to my tag list at the end of each post.
You can see my current setup here: http://quotes.practicalmanliness.com/general-douglas-macarthur/222/
Thank you!
I would like to insert an "edit" link next to my tag list at the end of each post.
You can see my current setup here: http://quotes.practicalmanliness.com/general-douglas-macarthur/222/
Thank you!
You must be a logged-in exclusive member to view this reply.
I inserted the code, but it still does not work.
Do you know what could be wrong?
Thank you!
This seems to be the code dealing with this part of the post page:
add_filter( 'hybrid_singular-post_entry_meta', 'my_singular_post_entry_meta' );
function my_multiple_entry_meta( $meta ) {
return '<p class="entry-meta">[entry-terms taxonomy="post_tag" before="Tagged "] [entry-comments-link before=" | "]</p>';
}
function my_singular_post_entry_meta( $meta ) {
return '<p class="entry-meta">[entry-terms taxonomy="post_tag" before="Tagged "]</p>';
}
add_filter( 'hybrid_singular-post_entry_meta', 'my_singular_post_meta' );
function my_singular_post_meta( $meta ) {
return '<p class="entry-meta">[entry-terms taxonomy="post_tag" before="Tagged "] [entry-edit-link before=" | "]</p>';
} You must be a logged-in exclusive member to view this reply.
Thank you!
That works perfectly.
You must log in to post.