• Ho is it possible remove “published by” on the top of the articles and “published in category” on the bottom of the post?
    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • try to add this to your css

    .entry-meta {
    display: none;
    }

    @fabiobelli22: Yes just add the above css that @dids-wp gave in “Appearance => Theme Options => Custom CSS” box.
    .entry-meta { display: none; }

    kudo93

    (@kudo93)

    Well, how can I do the same thing but for specific posts, or for specific category of post ?
    I want actually to remove those information on the slider posts..

    Thanks,

    Sakin Shrestha

    (@sakinshrestha)

    @kudo93: It depends on the category ID, we can hide it. So, first you need to find your category ID. Then if you want to hide it only for category ID 1 then the css will be as below:
    .category-1 .entry-meta { display: none; }

    Note: replace 1 with your category ID. To find category ID, you might want to use plugin https://ww.wp.xz.cn/plugins/catch-ids/

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove "published by"’ is closed to new replies.