php wp-get questions
-
Right, You see the boxes in the home page. categories and archives. I’m running a plugin all exec-php. Works great and does what i need it to.
Here is the code I’m using in the text widget for the boxes to show up:
<div class="plan"> <div class="title"> <h4>Archives</h4> </div> <div class="content"> <ul> <?php wp_get_archives( $args ); ?> </ul> </div> </div>
The only differentiating factor is <?php wp_get_archives( $args ); ?> – This call loads the correct content. Now i’m looking into this myself. But i’ll post here too, how do i remove the bullet points from both boxes? Secondly, the category loads the word “Categories” above all the cats, I already have this as the boxes title header. How do i remove this line?
Thanks!
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘php wp-get questions’ is closed to new replies.