Show blogroll only in homepage
I searched in google and baidu for methods how to show blogroll only in homepage again and again. I tried 3 methods, but at last i got it.
First method, edit your sidebar code
<?php if (is_home ()&&!is_paged() ) : ?>
<div id=”flink”>
<div>
<h3>blogroll</h3>
<ul><?php get_links(2, ‘<li>’, ‘</li>’, ”, TRUE, ‘url’, FALSE); ?></ul>
</div>
</div>
<?php endif; ?>
i tried this method, but i got error when i open my website. So i tried other methods.
Second method, i tried widget logic plugin and add some code in appearance->widet->links. Code as bellow: “is_home()&&!is_paged()”, but i still can not get what i need.
At last i finally get what i need. Display Widgets helps me solved all problem, after installing the plugin, you can set what you need in show/hide widget in appearance->widet->links.


.png)