A U Crawford
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Thank you for the reply. I am using english.
I found the text in the plugin code and modified it to my needs, however I worry about having to manually re-perform this change whenever the plugin gets an update.
I looked into the pro version but it doesn’t mention anything about form customization. So I’m looking for some clarity on this.
- This reply was modified 7 years, 2 months ago by A U Crawford.
Nope. You can control the email text but not the form text.
Forum: Hacks
In reply to: Next/previous linksI’m building locally or I would provide a link. Here’s my code though:
add_action( 'loop_start', 'my_loop_start' ); function my_loop_start( $query ) { if( $query->is_main_query() ) { add_filter( 'the_content', 'my_navigation' ); add_action( 'loop_end', 'my_loop_end' ); } } function my_navigation( $content ) { $my_nav = previous_post_link('%link', '<<', true); $my_nav .= next_post_link('%link', '>>', true); $content = $my_nav . $content; return $content; } function my_loop_end() { remove_action( 'the_post', 'my_navigation' ); }
Viewing 3 replies - 1 through 3 (of 3 total)