I received many requests to add a mechanism to sociofluid wordpress plugin to display the buttons in custom places. For example a lot of people want to chose in the template where to display the buttons.

Starting with version 1.1 this mechanism is in place. This mechanism consist in2 functions which are available when the plugin is activated. Beside this, nothing is changed, the plugin needs to be configured from sociofluid admin panel.

  • externalGetSociofluidButtonsInLoop() - this function must be invoked if the code must be displayed inside a loop(the sociofluid menu is displayed for each post item in the loop) or if it’s associated with a specific post(the sociofluid menu is displayed in a single post).
  •  externalGetSociofluidButtonsForCurrentUrl() - this function must be invoked if the code must be displayed somewhere outside of the main loop. For example in sidebars

All you have to do is to edit the template and add the following 2 lines in the place where you want to have the buttons displayed and to go in the sociofluid admin panel and to check this option:

  • for each post in a loop or for single post pages:

<? if (function_exists('externalGetSociofluidButtonsForCurrentUrl'))
                {echo externalGetSociofluidButtonsForCurrentUrl();} ?>
  • for the cases when the sociofluid widget is not related to a post and relates to the url instead:
<? if (function_exists('externalGetSociofluidButtonsInLoop'))
                {echo externalGetSociofluidButtonsInLoop();} ?>
http://www.improveseo.info/wp-content/plugins/sociofluid/images/digg_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/reddit_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/stumbleupon_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/delicious_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/blinklist_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/blogmarks_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/furl_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/newsvine_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/technorati_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/magnolia_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/google_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/myspace_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/facebook_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/yahoobuzz_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/sphinn_48.png http://www.improveseo.info/wp-content/plugins/sociofluid/images/mixx_48.png

Related Posts