I have a site in the development stages. It was running WP 3.3 and SP 4.5 and I decided to upgrade to SP 5. When I originally installed SP, I had some display problems in my theme (iThemes Builder) so I used the template tags to insert the forum links on the blog posts instead of the automatic function (the auto function causes forum links to show up in widget areas that shouldn’t have them)
This is the code that worked in my theme in SP 4.5:
<?php global $post; sf_blog_linked_tag($post->ID, true); ?>
After upgrading to SP 5, the code now shows an error in my theme pages:
Fatal error: Call to undefined function sf_blog_linked_tag() in /problem-with-post-edit-buttonome/ninja/public_html/nbs/wp-content/themes/BuilderChild-Foundation-Blank/page.php on line 22
I’m guessing the template tag formats have changed for version 5 but after searching around the forum here, I haven’t found any solutions. I do have the template tag plugin installed and activated. Does anyone know what code I should use to replace the original template tag for showing the forum link?