Pavle123 Active member Jan 18, 2015 #1 Is there a way to feature last 3-5 articles from my WP blog onto a XF sidebar or somewhere else?
LPH Well-known member Jan 18, 2015 #2 Start here: https://xenforo.com/community/resources/how-to-add-a-new-sidebar-in-the-forum-list.308/ Then use something like: PHP: $args = array( 'numberposts' => '5' ); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $recent ){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> '; }
Start here: https://xenforo.com/community/resources/how-to-add-a-new-sidebar-in-the-forum-list.308/ Then use something like: PHP: $args = array( 'numberposts' => '5' ); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $recent ){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> '; }