WordPress

Get custom fields for pages


To get values of custom fields from a post we use get_post_meta() but it doesn’t work for pages. get_metadata function has to be used for that purpose. It will bring custom fields meta data for pages. I used it to get some demo urls for anchors from specific page using this function. Screenshot is given below.

<a class="view-demo" target="_blank" href="<?php get_metadata('post', $post->ID, 'demo_var_url_one' true); ?>" >View Demo</a>


Have fun! 🙂

WordPress
Remove Category or Tag Slug from url
Quicky
Fixing Notice: Function _load_textdomain_just_in_time was called incorrectly for WordPress 6.7 update
There are currently no comments.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Hassan Raza