Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

Hide username from blog post source code

The data you’re seeing in the source code is structured data (often used for SEO purposes) in the form of JSON-LD. Given that deactivating the “All in One SEO” plugin seemed to solve the problem, it’s likely that the plugin is generating this data.

But if you don’t want to disable the entire plugin, you can use a filter to modify the output. This way, you can keep the benefits of the SEO plugin while ensuring that the usernames aren’t leaked in the source code.

Try adding this to your theme’s functions.php file. It’s designed to filter out the username from the structured data:

function filter_json_ld_output( $data ) {
    // Check if author data is set and unset it
    if ( isset( $data['author'] ) ) {
        unset( $data['author'] );
    }
    // Check if creator data is set and unset it
    if ( isset( $data['creator'] ) ) {
        unset( $data['creator'] );
    }
    return $data;
}
add_filter( 'aioseop_json_ld_data', 'filter_json_ld_output' );

This function checks if ‘author’ or ‘creator’ data is present in the JSON-LD output by the “All in One SEO” plugin and then removes it. This way, you still get the rest of the SEO benefits from the plugin without exposing the username.

Related Posts:

  1. Content hooks vs User hooks
  2. Job of meta_key meta_value fields in database tables
  3. get_*_meta doesn’t always return an array
  4. Like & Dislike functionality using JavaScript
  5. Retrieve user_meta and copy to post_meta
  6. Array of user ids to list of user names
  7. get Insert id for meta field
  8. help to decipher wp metadata
  9. Check For get_post_meta on Author Archive Page
  10. show user based on user_meta
  11. How do I retrieve the slug of the current page?
  12. Most efficient way to get posts with postmeta
  13. Get posts by meta value
  14. Explanation of update_post_(meta/term)_cache
  15. How to extract data from a post meta serialized array?
  16. How to save an array with one metakey in postmeta?
  17. WordPress is stripping escape backslashes from JSON strings in post_meta
  18. How can I get the post ID from a WP_Query loop?
  19. Check if Post Title exists, Insert post if doesn’t, Add Incremental # to Meta if does
  20. How to update_post_meta value as array
  21. Adding meta tag without plugin
  22. What’s the point of get_post_meta’s $single param?
  23. What is the different between an attachment in wp_posts and an attachment in wp_postmeta?
  24. How to edit a post meta data in a Gutenberg Block?
  25. Sanitizing integer input for update_post_meta
  26. post formats – how to switch meta boxes when changing format?
  27. Execute action after post is saved with all related post_meta records (data)
  28. Lack of composite indexes for meta tables
  29. Get a single post by a unique meta value
  30. if get_post_meta is empty do something
  31. How we get_post_meta without post id
  32. How get post id from meta value
  33. What is the code to get the download link for a product in WooCommerce?
  34. Safe to delete blank postmeta?
  35. advanced custom fields update_field for field type: Taxonomy
  36. update_post_meta not saving when value is zero
  37. Can I count the number of users matching a value in a multiple value key?
  38. Meta compare with date (stored as string) not working
  39. Trying to get custom post meta through Jetpack JSON API [closed]
  40. How to update/insert custom field(post meta) data with wordpress REST API?
  41. Restrict post edit/delete based on user ID and custom field
  42. get_post_meta returning empty string when data shows in the database
  43. publish_post action hook doesn’t give post_meta_data
  44. Remove WordPress.org Meta link
  45. Remove post meta keys
  46. How to access the post meta of a post that has just been published?
  47. Why time functions show invalid time zone when using ‘c’ time format?
  48. Why is get_post_meta returning an array when I specify it as single?
  49. How to update/delete array in post meta value?
  50. How to get all term meta for a taxonomy – getting term_meta for taxonomy
  51. Adding an assisting editor box to Post page
  52. delete unused postmeta
  53. Should I sanitize custom post meta if it is going to be escaped later?
  54. Add post meta based on another post meta value before publish post
  55. How do I retrieve multi-dimensional arrays from the wp_postmeta table, & display on a website?
  56. Front-end update_post_meta snippet displays white screen?
  57. Query between two meta values?
  58. Save both current and new version of post meta
  59. Get Advanced Custom Fields values before saving [closed]
  60. Give extra post-meta to RSS feeds
  61. How to get meta value in wp_attachment_metadata
  62. WP REST API “rest_no_route” when trying to update meta
  63. Clean up output added via wp_head()
  64. List posts under meta_value heading
  65. Why am I getting an infinite loop with have_posts?
  66. Creating a custom post type upon registration
  67. get_post_meta – get a single value
  68. delete value 0 in post meta [closed]
  69. Can I safely delete a record, manually, in the wp postmeta table?
  70. How to store post meta in an array?
  71. What action hook updates post meta?
  72. Can’t translate the post meta data (Date) in another language
  73. get_post_meta / update_post_meta array
  74. adding a URL to a post meta
  75. Exclude a category from the filed under list
  76. Short of raw SQL, can I query for multiple attachment metadata that have a given array key?
  77. How do I access post meta data when publishing a new post in Gutenberg?
  78. update_post_meta() not working when used with WordPress action
  79. Using Advanced Custom Field (ACF) to insert meta description on each page
  80. Triple meta_key on custom SELECT query
  81. get_post_custom()
  82. Adding meta data to an attachment post
  83. update_post_meta not adding anything.(Nor add_post_meta)
  84. loop through all meta keys with get_post_meta
  85. Get posts by meta value with date
  86. How to add meta tag to wordpress posts filter?
  87. Are multiple values from get_post_meta guaranteed to be ordered?
  88. Identifying Importer Posts
  89. Get updated post meta on save_post action?
  90. Get post from meta_key and meta_value
  91. Add a post metadata if only the key and value does not exist
  92. get_post_meta returns bool(false)
  93. How metadata API works?
  94. Correct processing of `$_POST`, following WordPress Coding Standards
  95. Metabox Data not being saved [closed]
  96. How can I get values using key in Carbon Fields from Multiselect?
  97. Delete post meta conditionally after save post
  98. How to sanitize post meta field value?
  99. Problem With Order Item Meta In Woocommerce
  100. WordPress Action Hooks and Post ID?
Categories post-meta Tags post-meta, user-meta
How to make Contact Form 7 work when injected via AJAX in WordPress?
Python rest api post article, update problem

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Post Navigation Elementor
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • WPFacet multiple loop displaying duplicate content
  • Get the name of the template/*html file used
  • Fix: WordPress.DB.PreparedSQL.NotPrepared Plugin Check (PCP)
  • Removing unnecessary CSS and JS code from wp_head()
  • hexagonal image gallery. Am I on the right track? [closed]
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
© 2026 Read For Learn
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress