===== How to Create a Linkpage ===== Sometimes you don’t want to have a list of your bookmarks in your blog’s sidebar, but on a separate page. In this article I would like to give you a small tutorial on how to do this. ==== Solution: WordPress page-template ==== To create a linkpage you have to go to your current theme-directory and make a copy of the file page.php. It is very likely that the listings further below will not work with your theme. You have to work with a copy of the file page.php from your theme. For this tutorial, the copy is named page-feedreading-blogroll.php, but you can choose any name you want. So we start by copying page.php from your theme-directory and by naming the copy page-feedreading-blogroll.php. Now, we open page-feedreading-blogroll.php in an editor. The file might be looking something like this. Your file might be looking quite differently. But one similarity will be there: the content-template-tag: You will find this tag in the listing of page.php below: page.php / unmodifiyed page-feedreading-blogroll.php:

’, ‘

’); ?>
Just below of the_content(); is the best place for the template-tag of the blogroll. Furthermore, notice the first five line of the modified page-feedreading-blogroll.php. A name for the template was added. In this case it’s Feed Reading Blogroll Page. Apply the changes to your own template and save them. Now that the plugin’s template-tag and the template-name have been added, the modified file should look something like this: modified page-feedreading-blogroll.php:

’, ‘

’); ?>
This modified file should now be uploaded to the directory of your theme. Now, go to your blog’s admin-section and create a new page. Toward the bottom of the Write > Page administration panel (or on the sidebar, depending on which version of WordPress you are using) is a drop-down labeled “Page Template.” From there you can select which Template will be used when displaying this particular Page. Select the page template called “Feed Reading Blogroll Page” – that is the one you have just uploaded to your theme-directory. Save and publish the page. The last step for you is to go to the plugin's option-page and to enable the option **Enable Linkpage**: {{:feedreadingblogroll:enable_linkpage_option.png|}} That’s it – view the page on your blog. It should contain the blogroll! Further resources at the WordPress codex * [[http://codex.wordpress.org/Write_Page_SubPanel|Write Page subpanel]] * [[http://codex.wordpress.org/Pages#Page_Templates|WordPress Codex about page templates]]