The WP-Recent-phpBB plugin v1.1 has been released. This is an upgrade release.
- [feature] Introduced [
phpbb
] shortcode to list the most recent phpBB posts in a WordPress post or page. - [feature] In themes with static sidebar,
phpbb_recent_posts
function returns the most recent phpBB posts as a string. This function accepts an array of parameters identical to shortcode parameters.
Kambiz, thanks for your great contributions to the community!
I guess, the links to the post should be corrected from the form:
http://forum.delphiarea.com/viewtopic.php?p=POSTID#POSTID
to the form:
http://forum.delphiarea.com/viewtopic.php?p=POSTID#pPOSTID
You need to change only the line 78 for that, original:
$link.’viewtopic.php?p=’.$phpbb_post->post_id.’#’.$phpbb_post->post_id,
to:
$link.’viewtopic.php?p=’.$phpbb_post->post_id.’#p’.$phpbb_post->post_id,
Voila, now you can navigate correctly in the terms of phpBB v3.
God is in the details 🙂
Thank you Valerian for the fix!
I just updated the plugin.
Cool! Thanks again, Kambiz.