Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
WordPress Plugin Development

Post Meta and User Meta

Store keyed data on posts and users with the meta APIs.

Post Meta and User Meta — a practical guide to WordPress post meta user meta with clear examples you can reuse in real projects.

WordPress Plugin Development Series (36/95). Prefer one article? Read the complete WordPress plugin development tutorial.

Short description

Use post meta for content attributes and user meta for per-user preferences/state.

User meta

update_user_meta($user_id, 'acme_timezone', 'Asia/Kolkata');
$tz = get_user_meta($user_id, 'acme_timezone', true);

Leave a reply

Your email address will not be published. Required fields are marked *