• Hey Guys.

    I’m using this to display my 10 most recent posts, works great:

    <?php wp_get_archives('title_li=&type=postbypost&limit=10'); ?>

    I just want to add a bullet point in front of each recent post…

    I was thinking something like this:
    <?php wp_get_archives('&bull'+'title_li=&type=postbypost&limit=10'); ?>

    Obviously, that’s wrong, anyone know the correct syntax?

    Thanks!

Viewing 1 replies (of 1 total)
  • you could do this with css in style.css:

    https://www.w3schools.com/Css/css_list.asp

    you could try and add this to the end of style.css of your theme:

    .widget_recent_entries li { list-style-type: disc; }

    if it works will depend on the other styles;
    if you like a more individual suggestion, please post a link to your site

Viewing 1 replies (of 1 total)
  • The topic ‘Went to add a bullet point to Recent Posts’ is closed to new replies.