Advertisement
fahimmurshed

Remove "By" string from the post meta.

Sep 26th, 2023
781
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. add_filter( 'astra_default_strings', 'wpd_astra_default_strings' );
  2. function wpd_astra_default_strings( $strings ) {
  3.     $strings['string-blog-meta-author-by'] = '';
  4.     return $strings;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement