• I have two questions.I don’t want to open a different topic that why I am asking in this one.

    1.How to remove the post date from the post.
    2.How to change the word Leave a Reply from the comment section.I want the words Leave Your Feedback instead of Leave a Reply.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi smayurika. This thread discusses removing the post date.
    To change the Leave a Reply text, add this function to a child theme functions.php file:

    function my_NewText( $translated_text, $text, $domain ) {
      switch ( $translated_text ) {
        case 'Leave a Reply' :
          $translated_text = __( 'Leave Your Feedback', 'hueman' );
          break;
      }
      return $translated_text;
    }
    add_filter( 'gettext', 'my_NewText', 20, 3 );
    Thread Starter smayurika

    (@smayurika)

    It works. Thanks a lot.
    But i am not able to remove the author name in the post.

    Well, you didn’t ask about the author in your original question. Take a look a this thread.

    Thread Starter smayurika

    (@smayurika)

    Works really great.Thanks a ton.

    You’re welcome. Glad I could help. If you don’t need any further assistance with this topic please mark it as Resolved. Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove post date….’ is closed to new replies.