How to get posts in backbone where a custom field matches a value?

The REST API endpoint “List Posts” (e.g. GET /wp/v2/posts) does not support filtering the posts by a post meta (or custom field), therefore passing post meta parameters like meta_key and meta_value will by default do nothing. But the rest_<post type>}_query filter can be used to manually add custom meta queries to the query arguments passed … Read more

Create WhatsApp URL dynamically using ACF Pro from different fields

You can used ACF Pro and adding some custom code to your theme’s functions.php file. // Add ACF fields if( function_exists(‘acf_field_group’) ): acf_field_group(array( ‘key’ => ‘group_60aaf3a3f3d4a’, ‘title’ => ‘WhatsApp Fields’, ‘fields’ => array( array( ‘key’ => ‘field_60aaf3aaf3d4b’, ‘label’ => ‘WhatsApp Phone’, ‘name’ => ‘whatsapp_phone’, ‘type’ => ‘text’, ‘instructions’ => ‘Enter the WhatsApp phone number’, ‘required’ … Read more