Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-22-2006, 05:50 AM   PM User | #1
true_friend
New Coder

 
Join Date: Oct 2006
Posts: 13
Thanks: 1
Thanked 0 Times in 0 Posts
true_friend is an unknown quantity at this point
Separating list items by "|"

i have a little problem, want to separate php list items by "|" so they can be distinguished one by one.
this is the code plz help me to specify | for each item. it is a wordpress blog where i want to do this in a list which is displayed inline.
PHP Code:
<li><h2><?php _e('حالیہ'); ?> <?php _e('تحاریر'); ?></h2>
    <ul>
    <?php wp_get_archives('type=postbypost&limit=7'); ?>
    </ul>
</li>
thnx for reading this post.
Regards
True_Friend

Last edited by true_friend; 11-22-2006 at 05:53 AM..
true_friend is offline   Reply With Quote
Old 11-22-2006, 12:12 PM   PM User | #2
chump2877
Senior Coder

 
chump2877's Avatar
 
Join Date: Dec 2004
Location: the U.S. of freakin' A.
Posts: 2,530
Thanks: 15
Thanked 128 Times in 121 Posts
chump2877 is on a distinguished road
Try this:

PHP Code:
<li><h2><?php _e('حالیہ'); ?> <?php _e('تحاریر'); ?></h2> 
    <ul> 
    <?php wp_get_archives('type=postbypost&limit=7&before=|&after=|'); ?> 
    </ul> 
</li>
You might need to use the url-encoded equivalent for the "|" character....

The function "wp_get_archives" appears in template-functions-general.php in your wp-includes folder. The function can take up to 6 arguments.
__________________
Regards, R.J.

---------------------------------------------------------

Help spread the word! Like my YouTube-to-Mp3 Web Conversion Software on Facebook !! :)
chump2877 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 08:46 AM.


Advertisement
Log in to turn off these ads.