Title: Theme matching
Last modified: May 9, 2023

---

# Theme matching

 *  Resolved [kokojambo](https://wordpress.org/support/users/kokojambo/)
 * (@kokojambo)
 * [3 years ago](https://wordpress.org/support/topic/theme-matching/)
 * Hi and thanks for an amazing plugin!
 * I’m using a theme where the developer registered CPT fields in a php file,
 * Any call to show “ts-speaker” post type looks like this:
 *     ```wp-block-code
       <?php
       // speaker details
       $exhibs_designation = exhibz_meta_option(get_the_id(), 'exhibs_designation');
       $exhibs_photo       = exhibz_meta_option(get_the_id(), 'exhibs_photo');
       $exhibs_logo        = exhibz_meta_option(get_the_id(), 'exhibs_logo');
       $exhibs_summery     = exhibz_meta_option(get_the_id(), 'exhibs_summery');
       $socials            = exhibz_meta_option(get_the_id(), 'social');
   
       ?>
       ```
   
 * Can I still use the plugin? I tried in a few ways like meta fields but it doesn’t
   really work.

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Thread Starter [kokojambo](https://wordpress.org/support/users/kokojambo/)
 * (@kokojambo)
 * [3 years ago](https://wordpress.org/support/topic/theme-matching/#post-16722903)
 * found this on global.php, something called metabox, although there is no plugin
   installed
 *     ```wp-block-code
       // return the specific value from metabox
   
       // ----------------------------------------------------------------------------------------
       function exhibz_meta_option($postid, $key, $default_value = '')
       {
       	if (defined('FW')) {
       		$value = fw_get_db_post_option($postid, $key, $default_value);
       	}
       	return (!isset($value) || $value == '') ? $default_value :  $value;
       }
       ```
   
    -  This reply was modified 3 years ago by [kokojambo](https://wordpress.org/support/users/kokojambo/).
 *  Plugin Author [Aurovrata Venet](https://wordpress.org/support/users/aurovrata/)
 * (@aurovrata)
 * [3 years ago](https://wordpress.org/support/topic/theme-matching/#post-16722934)
 * I don’t understand your question. Are you looking to design a cf7 form ?
 *  Thread Starter [kokojambo](https://wordpress.org/support/users/kokojambo/)
 * (@kokojambo)
 * [3 years ago](https://wordpress.org/support/topic/theme-matching/#post-16722980)
 * Sorry
   I followed a link from a video description on [YouTube](https://www.youtube.com/watch?v=BcIkJbBclKE&list=UULFRnyvmqj4wYktGA-Xge8tUQ&index=9&ab_channel=AurovrataVenet-WordPressGurus)
   I reposted the thread in the appropriate forum.
 *  Plugin Author [Aurovrata Venet](https://wordpress.org/support/users/aurovrata/)
 * (@aurovrata)
 * [3 years ago](https://wordpress.org/support/topic/theme-matching/#post-16723194)
 * So your question isn’t related to this plugin?
 *  Plugin Author [Aurovrata Venet](https://wordpress.org/support/users/aurovrata/)
 * (@aurovrata)
 * [3 years ago](https://wordpress.org/support/topic/theme-matching/#post-16723496)
 * Marking this thread as resolved as it is unrelated to this plugin.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Theme matching’ is closed to new replies.

 * ![](https://ps.w.org/cf7-grid-layout/assets/icon-256x256.png?rev=1834229)
 * [Smart Grid-Layout Design for Contact Form 7](https://wordpress.org/plugins/cf7-grid-layout/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/cf7-grid-layout/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/cf7-grid-layout/)
 * [Active Topics](https://wordpress.org/support/plugin/cf7-grid-layout/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/cf7-grid-layout/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/cf7-grid-layout/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [Aurovrata Venet](https://wordpress.org/support/users/aurovrata/)
 * Last activity: [3 years ago](https://wordpress.org/support/topic/theme-matching/#post-16723496)
 * Status: resolved