Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
<?php if (is_home()) { ?>
<h2>Blogroll</h2>
<?php wp_list_bookmarks('');
} ?>
It is possible to modify the sidebar.php file which usually contains the blogroll in order to make links display only at the homepage using the $_SERVER['REQUEST_URI'] predefined variable.
Yeah, it's possible. Though I'm assuming you want to make the entire blogroll homepage only, rather than just one link.
Simply put this code in the sidebar.php file
That should put a basic list in the sidebar.PHP:<?php if (is_home()) { ?> <h2>Blogroll</h2> <?php wp_list_bookmarks(''); } ?>
![]()
Yeah, it's possible. Though I'm assuming you want to make the entire blogroll homepage only, rather than just one link.
Simply put this code in the sidebar.php file
PHP:<?php if (is_home()) { ?> <h2>Blogroll</h2> <?php wp_list_bookmarks(''); } ?>
That should put a basic list in the sidebar.![]()
Yeah, it's possible. Though I'm assuming you want to make the entire blogroll homepage only, rather than just one link.
Simply put this code in the sidebar.php file
PHP:<?php if (is_home()) { ?> <h2>Blogroll</h2> <?php wp_list_bookmarks(''); } ?>
That should put a basic list in the sidebar.![]()
I've added the code to the sidebap.php file but nothing happen ... except that on the home page, over the Blogroll appears another Blogroll block.
<?php if ( is_home() || is_page() ) { ?>
[B][COLOR="Blue"]Your Link Here[/COLOR][/B]
<?php } ?>