I ended up adding an additional taxonomy meta class
I was then able to use the following to get my phone number:
<?php
//Get the correct taxonomy ID by slug
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
//Get Taxonomy Meta
$saved_data = get_tax_meta($term->term_id,'loc_phone');
?>
<?php if( $saved_data != "" ) {
echo $saved_data;
} else {
echo '(555) 555-555';
}?>
Related Posts:
- Custom Taxonomy Meta Admin Column
- How to show taxonomy meta on frontpage?
- Checking if a Page has an Associated Term?
- Insert form checkbox at bottom of taxonomy edit term page
- Conditional display for custom fields/taxonomy
- How to show the a custom taxonomy term on single post metadata
- Add Custom Taxonomy for Blog Meta Info
- Changing select options based on previous select with PHP & AJAX
- Clean Taxonomy terms in new post type wordpress
- Best Method to Switch Between Terms (Custom Taxonomy)
- Inserting terms in an Hierarchical Taxonomy
- How do I add a custom taxonomy as an option for menus under “Appearance” > “Menus”
- custom post type taxonomy “tag” archive : no post found
- Is there a (relatively easy!) way to create relationships between taxonomies WITHOUT needing a post as an intermediary
- Custom hierarchal taxonomy loses interface hierarchy when selecting parent & children
- How to add a style to taxonomy edit page
- Formating the_terms() function output
- Determine if Term has Grandparent/Great-Grandparent
- How to fix a double slash in custom permalinks with hierarchical taxonomy’s?
- Getting archive pages in WP’s AJAX internal link finder?
- Creating a custom Admin panel
- Dynamically tax_query
- tax_query not working on main query
- Approach for saving a product attribute values with a custom UI in a woocommerce+dokan set up [closed]
- Combine multiple custom user taxonomy in single url
- Contact Form 7 – Populating dropdown list with terms relative to the post
- Add custom taxonomy to default category taxonomy?
- Ordering Posts with Custom Taxonomy Terms Array
- Taxonomy based permalinks
- How to create a theme template for the taxonomy “root”
- Taxonomy , subtaxonomy,child taxonomy of a product woocommerce
- wp_insert_post via shell category not being inserted
- wp_query to display custom taxonomy terms
- How to register child taxonomies?
- get_terms in a taxonomy template
- Creating an Archive using a Custom Taxonomy
- Custom Taxonomy template is not recognised
- WP REST API – Limit the taxonomy search to the first letter
- How to filter terms from a custom taxonomy by a usermeta value on all screens and templates
- How to adjust code to refresh a dropdown box with tags that are active on filtered category listing
- How do I display a list of posts under all hierarchical children of the current taxonomy?
- AJAX response, edit tags
- List child terms if parent but show nothing on children
- If post has ANY term attached to it, get the first one only
- Locale switching with a “language” taxonomy
- query_posts and custom taxonomy posts order
- Modify “View” in admin panel for custom taxonomy
- User: Editor, can’t see edit taxonomy screen
- How to get my post title to work with an apostrophe (‘s)?
- How do I exclude posts from custom taxonomy from a custom post type archive?
- Hide product categories and taxonomy terms in menu if empty
- Using custom taxonomy to tag posts for inclusion in slider
- Custom taxonomy forms for user profile
- Is it possible to store Json data in post_meta and manipulate
- Search Tool only refreshes Page without showing results
- Add Taxonomy Subcategory To Permalink
- Updating / Saving items generated by wp_terms_checklist on frontend
- How can I highlight a top level dashboard menu item created for a custom taxonomy?
- Customizing Primary Menu to include custom taxonomy description
- Rewrites with hierarchical taxonomies in permalink
- How to rename custom taxonomy URL with extra words
- Separate tags with semicolon
- Adding content to custom taxonomy category pages
- Display formatted list of taxonomy terms with last seperator different
- Are term IDs unique even between multiple custom taxonomies
- How to customize custom taxonomy url?
- What is the action hook that deletes a taxonomy term from the backend? And how to retireve the term id before deleting it?
- Display a colour of custom taxonomy on the page
- How can I get a paginated list of custom taxonomy tags with posts?
- Add attribute taxonomy through code don’t appear in admin product page
- Search only custom taxonomies
- Create alphabetical Pagination for custom taxonomy?
- Save values generated via API as taxonomy terms
- URL rewriting taxonomy term
- Show all terms in a custom taxonomy with all child terms wrapped in a ul
- Order taxonomy terms wordpress
- WPML taxonomies not translated
- Why do my quick edits for custom taxonomies not show on the post frontend?
- WordPress REST API – get custom taxonomy category posts
- Pull data from MySQL and add it to terms
- Taxonomy and Page Slug Same
- Tracking the name of a custom taxonomy
- Filter language in Polylang for custom taxonomy
- Group posts in a category based on tags in custom taxonomy
- Multiple Custom Taxonomy Rewrite
- use apply_filters return taxonomies custom post type
- how to display custom taxonomy on an archive page?
- custom taxonomies menu
- Custom Taxonomy Archive page is not showing when clicking on
- ACF – Get unique values of array
- pagination for list category posts ( Custom post type )
- How to create a second set of tags that use the same slug or URL?
- Trying to test out wp_set_object_terms, but not working
- How to display custom taxonomy
- Taxonomy term breadcrumb; how?
- Transfer taxonomy to custom field
- How can I get the term_id from the action hook ‘set_object_terms’?
- Group custom taxonomies based on tags contained in their posts
- Taxonomies starting with a hyphen (minus) to assign B.C. dates to a post
- Rewrite URL for a specific taxonomy [duplicate]