I have created custom field from this example
I would like to get taxonomies name by containing "web" in custom_term_meta
(created new field) in mysql query in phpmyadmin.
I have created custom field from this example
I would like to get taxonomies name by containing "web" in custom_term_meta
(created new field) in mysql query in phpmyadmin.
WordPress 4.4 and up has Term Meta built in: https://www.smashingmagazine.com/2015/12/how-to-use-term-meta-data-in-wordpress/
But in your example you are storing term meta in wp_options table. You should get the value via get_option() function like this:
echo get_option("taxonomy_$term_id");
... where the $term_id is the ID of the term for which you would like to get the meta data.