jeffdoan06
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Filter only posts after a certain dateAlso how do I change the template used with the above function?
Update: figured this part out =)
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Filter only posts after a certain dateadd_filter( 'the_content', 'add_related_posts_after_post_content' ); function add_related_posts_after_post_content( $content ) { //check if it's a single post page. if ( is_single() ) { // check if we're inside the main loop if ( in_the_loop() && is_main_query() ) { // add your own attributes here (between the brackets [ ... ]) $shortcode = '[related_posts_by_tax posts_per_page="4" orderby="post_date"]'; // add the shortcode after the content $content = $content . $shortcode; } } return $content; }Thanks — I just used sample code here, but I’m just trying to figure out the best filter to use here =)
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Filter only posts after a certain dateNeither — including it in functions.php
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Filter only posts after a certain dateYes this would work — we’ll prolly need to update it every month, but this’ll work. Is there a way to limit posts to only after X month?
Thanks for the reply!
Viewing 4 replies - 1 through 4 (of 4 total)