There is no need to change the the_author()
function itself. A simple conditional tag will do the trick. Example:
<?php
/*** on your functions.php file ***/
function ifRegistered() {
if(is_user_logged_in()) {
the_author();
} else {
echo get_the_post_meta($post->ID, 'your_post_meta_key', true);
// or anything else, of course
}
}
/*** on the template you want to use the function **/
// your HTML markup ...
ifRegistered();
// more possible HTML ...
?>
Hope that helps!
EDIT: Updated the function.
Related Posts:
- Why am I getting an infinite loop with have_posts?
- How do I retrieve the slug of the current page?
- How to extract data from a post meta serialized array?
- How to save an array with one metakey in postmeta?
- WordPress is stripping escape backslashes from JSON strings in post_meta
- Lack of composite indexes for meta tables
- Content hooks vs User hooks
- Why time functions show invalid time zone when using ‘c’ time format?
- Save both current and new version of post meta
- WP REST API “rest_no_route” when trying to update meta
- get_post_meta – get a single value
- What action hook updates post meta?
- get_post_meta / update_post_meta array
- How do I access post meta data when publishing a new post in Gutenberg?
- Triple meta_key on custom SELECT query
- update_post_meta not adding anything.(Nor add_post_meta)
- Identifying Importer Posts
- How metadata API works?
- How to sanitize post meta field value?
- Post IDs missing on delete_postmeta action hook
- How trigger to save post when updating post meta
- Create a Metabox that behaves Like a Taxonomy Box
- Views count with time limit per IP
- order by multiple meta_keys?
- Custom meta field don’t give me numerical value
- echo image caption
- get_*_meta doesn’t always return an array
- Generate multiple goo.gl shortlinks for qtranslate bilingual blog
- MySQL Query To Select Post By Postmeta
- Limit the number of acf content when displaying in post loop [closed]
- Unset field from an array not working as expected
- Update post_meta with WooCommere variation data
- Copy content stored in meta to post content
- How to programmatically customise the Contact Form7 notification email prior to sending? [closed]
- Saving repeated option values when querying in Published, draft and all
- How to hide meta block(s) in certain post format
- need some assistance with the checkboxes (selecting/deselecting featured posts)
- get_post_meta() not work for the first post inside the loop
- Adding new value to existing meta key
- Get post id within comments loop
- how to get a list of meta data fields assocaited with a custom post type
- Gutenberg: How to display meta field data in the block frontend (save function)
- String taken from database table post_meta is showing HTML tags on Frontend
- Delete posts based on post meta data
- Query posts WITHOUT a custom meta field
- Add box with custom per-page properties
- get_post_meta not working when variable used for post ID
- Update post meta dynamically
- How do I edit the posted “by” and “on” in the post meta
- Sending mail not working correctly
- How to delete duplicate records in wp_postmeta database table?
- Need a SQL query to update meta_key=’_price’ with value in meta_key=’_regular_price’
- update_post_meta() adding bits in database [closed]
- Get posts ordered by meta data
- Remember the Meta Value With Radio Buttons
- The loop starting at a certain ID
- Displaying values from related field – if empty shows current post type’s link and title
- get_post_meta inside echo [closed]
- WordPress postmeta: Store data as an array or single item?
- Display Post Meta in Header
- Array of user ids to list of user names
- Conditional For get_the_author_meta
- Custom fields or something else
- How can I sort my loop based on meta data, using a form?
- I want to Add Feedburner Right After Meta Details
- How to add custom checkboxes from loop to WooCommerce product variation options?
- if get_post_meta function returns empty – Do Not Display HTML
- Custom column on CPT not showing correct value when meta data not set
- How to access post meta on the first time a post is published
- I Can’t get the post_tag name from term_id using wp_set_object_terms
- URL from get_post_meta() is broken my URL
- How to update/add child posts meta whenever the parent post meta is updated?
- How to query post with meta?
- why is my postmeta table is so heavy
- update_post_meta() throws Uncaught error: Cannot create duplicate attribute
- Using a comma instead of a pipe to separate metadata
- Export media library with metadata and import into new blog
- Please tell how to stop the category from showing up on posts
- show user based on user_meta
- Meta keys won’t add using wp_insert_post
- How Can I extract Image urls from post meta
- Retrieve posts from meta key
- Twenty Twelve entry meta data – change and move
- Humanmade | Custom meta box class: How to display a repeatable meta box group?
- How can I prevent the post_modified column in wp_posts from being updated?
- Display articles related to a custom field on a page
- Sorting meta box values by start- and enddate and all dates in between
- Use an id on a button to update_post_meta in post
- get_post_meta image width for lazy load
- Write query according to post_meta
- Custom Fields help
- Why values dont shows in custom post column?
- why get_post_meta is returning 0?
- WP-API : post_meta not updated… but have another entry
- Parse error thrown by get_post_meta [closed]
- How to get all the related ids without array?
- Remove action of an external plugin after checking if custom post meta is set
- How to show wordpress post in the site based on custom field value?
- wordpress query making site very slow
- if condition from post_meta not working in save_post