how can i add special character inside php? for example
wp_get_archives("type=monthly&format=custom&before=
i want to add this bold text
how can i add special character inside php? for example
wp_get_archives("type=monthly&format=custom&before=
i want to add this bold text
?php wp_get_archives("type=monthly&format=custom&before=<li><span>«</span>&after=</li>"); ?>
i mean this so i want this to show «
This can be done by formatting the code like this:
<?php
$archive_defaults = array(
'type' => 'monthly',
'limit' => ,
'format' => 'custom',
'before' => '<li><span>«</span>',
'after' => '</li>',
'show_post_count' => false);
wp_get_archives($archive_defaults);
?>I just wish they had before & after options for wp_list_pages.
This topic has been closed to new replies.