Title: artelogs's Replies | WordPress.org

---

# artelogs

  [  ](https://wordpress.org/support/users/artelogs/)

 *   [Profile](https://wordpress.org/support/users/artelogs/)
 *   [Topics Started](https://wordpress.org/support/users/artelogs/topics/)
 *   [Replies Created](https://wordpress.org/support/users/artelogs/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/artelogs/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/artelogs/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/artelogs/engagements/)
 *   [Favorites](https://wordpress.org/support/users/artelogs/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Activello] Remove author from home page and posts](https://wordpress.org/support/topic/remove-author-from-home-page-and-posts/)
 *  [artelogs](https://wordpress.org/support/users/artelogs/)
 * (@artelogs)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/remove-author-from-home-page-and-posts/#post-12320199)
 * You can identify the class or div attached to the author element (by broser inspecting
   F12) ,
    for exemple : <span> <div class=”author”> your author name </div> </span
   >
 * then all you need to do is add some JS or jQuery code (using a snippet or prebuild
   in theme)
    ——————- JQuery : jQuery(document).ready(function( $ ){ jQuery(“span”).
   remove(“.author”); }); —————— JS : var myobj = document.getElementByClassName(“
   author”); myobj.remove();

Viewing 1 replies (of 1 total)