Alright, so, for quite some time I have been working on iwannaplay, which is an online Arcade site. And, the progress has gone smoothly. However, I have hit a stump in the road-- I want to add a blog. Now, that would be easy normally, but I don't want to be like the majority of webdesigners and use premade skins. No, I have to make my own.
I am basing it off of my sites, so that way it fits in. This progress has gone well, but, now I'm at the sidebar.
Here is the code I would use for a sidebar item:
' <div class="box-header">
</div>
<div class="box-content">
-
<?php wp_get_archives('type=monthly'); ?>
</div>
It has a header class, and a content class, then I would just repeat it for each item. It worked!~ For two of the menu items. However, Blogroll and pages are different.
Here is my progress so far:
http://www.iwannaplay.org/blog
As you can see, I have the majority of the menu done, as said, except for the Blogroll and Pages section. Here is my blogroll code:
' <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>
<?php } ?>'
That, I have NO CLUE how to edit into working with the afformentioned code.
Here is my Pages Code:
' <?php wp_list_pages('title_li=<div class="box-header"><h2>' . __('Pages') . '</h2> </div>'); ?>'
Clearly, I got the header part done. The content part.... Not so well.
How would I modify wp_list_pages and get_links_list? I can't even find where the functions are at.