Forum Replies Created
-
AuthorPosts
-
lucaswijntjesMember
This forum is for people learning how to do things, not to direct them to buy the things they can't do.
Is this sort of spam allowed?
January 20, 2014 at 9:39 am in reply to: Move Post Title on pages: Genesis Sandbox (HTML5 Markup) #86100lucaswijntjesMemberThanks for the reply Zach, unfortunately it didn't work for me. It gave me 2 entry titles. Any clue how to make it work?
Just like the fat media example I'm using a sticky header.
January 20, 2014 at 8:24 am in reply to: Move Post Title on pages: Genesis Sandbox (HTML5 Markup) #86092lucaswijntjesMemberHi Zach,
Would you mind sharing how you managed to do it? I'm looking to do the very same thing as in the example you shared.
Looking forward to hearing from you soon.
lucaswijntjesMemberHi Sridar, thanks for your reply. It wasn't working, but got me in the right direction. This is working:
add_filter( 'the_content_more_link', 'sp_read_more_link' ); function sp_read_more_link() { return '... <a class="more-link" href="' . get_permalink() . '">Continue Reading: ' . get_the_title() . '</a>'; }
lucaswijntjesMemberI have the same question, and it wish to have it similar as in your example Sridhar. Just like this:
Continue Reading: "Title of the post"
(including the "s)
How would I put this in the functions file? Thanks for your help
July 18, 2013 at 9:08 am in reply to: Copy blog post title in more-link and comment field heading #51309lucaswijntjesMemberDavid, you helped me find the answer. I used a combination of the two, which works perfectly:
add_filter( 'the_content_more_link', 'custom_read_more_link' ); function custom_read_more_link() { return '<a> Continue reading: ' . get_the_title() . '</a>'; }
Thanks a lot!
Now I just need to find the solution for the comment box title. Any clue?
July 18, 2013 at 8:13 am in reply to: Copy blog post title in more-link and comment field heading #51300lucaswijntjesMemberThanks for your reply David. Seems like I'm getting closer
The code for the comments link isn't doing anything. I have a Dutch translation installed through the Genesis -Translations plugin. Should that affect anything?
I've been trying the more-link, but can't get it to copy the blogpost title. I have this:
/** Customize Read More */ add_filter( 'the_content_more_link', 'custom_read_more_link' ); function custom_read_more_link() { return '<a class="more-link" href="' . get_permalink() . '">Continue reading: get_the_title()</a>'; }
Thanks for your help
-
AuthorPosts