• CAM

    (@caitlinmccartan)


    Has anyone found a way to remove “Bookmark the Permalink” text from every post?
    Thanks!

Viewing 1 replies (of 1 total)
  • Hey there caitlinmccartan,

    You could remove it by adding custom CSS and using nth-child selector and targeting the third child which is “Bookmark the Permalink”. Try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin.

    http://wordpress.org/plugins/simple-custom-css

    span.entry-meta:nth-child(3) {
    display: none;
    }

    This should remove “Bookmark the Permalink” from your posts.

    Have a great weekend 🙂

    Best regards,
    Bojan

Viewing 1 replies (of 1 total)

The topic ‘Cutting "bookmark the permalink"’ is closed to new replies.