As i am a WordPress developer, customizing more themes even plugins to my clients with specified features. Before a month, i had a affection with Multisite Development. Just had a research with it and i finally end with few implementations.
Multisite is a really cool feature which was introduced by WordPress before few versions of theirs. Nowadays, most of them started writing plugins for Multisite WordPress too.
Today, i had a small challenge with linkwithin widget. I mean, linkwithin widget should appear only on the 1 theme in a multisite network but not in other themes. To implement this, just read a linkwithin FAQ. From that, I noticed customizing the placement of the widget on WordPress blog by the below code,
<div class=”linkwithin_div”></div>
So, i added the above code below the function <?php the_content(); ?> or <?php the_excerpt(); ?> with the single piece on inliner CSS style. Finally it looks like below,
<div style=” visibility:hidden; height:5px; overflow:hidden;”></div>
Just have a look ,