Forums

special characters inside php (4 posts)

  1. dejanc
    Member
    Posted 4 years ago #

    how can i add special character inside php? for example

    wp_get_archives("type=monthly&format=custom&before=

  2. <span>«</span>&after=
  3. ")

    i want to add this bold text

  • dejanc
    Member
    Posted 4 years ago #

    ?php wp_get_archives("type=monthly&format=custom&before=<li><span>&laquo;</span>&after=</li>"); ?>

    i mean this so i want this to show &laquo;

  • mkormendy
    Member
    Posted 4 years ago #

    This can be done by formatting the code like this:

    <?php
    
    $archive_defaults = array(
    'type' => 'monthly',
    'limit' => ,
    'format' => 'custom',
    'before' => '<li><span>&laquo;</span>',
    'after' => '</li>',
    'show_post_count' => false);
    
    wp_get_archives($archive_defaults);
    
    ?>
  • mkormendy
    Member
    Posted 4 years ago #

    I just wish they had before & after options for wp_list_pages.

  • Topic Closed

    This topic has been closed to new replies.

    About this Topic

    Tags