WPIntell

Source evidence

Perfect

Taxonomy Metadata · review · 2015-07-31T16:21:00+00:00

praisesentiment
mediumseverity
0.44relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 25 rows with source links

20.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

20 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

review · 5 stars
Sonicelo unresolved
Works as advertised. With help of following actions, you can make the graphical interface on the needed taxonomy page: add_action("{$taxonomy}_edit_form", "foo_add_taxonomy_meta_boxes", 10, 2); // Edit taxonomy page add_action("{$taxonomy}_add_form_fields", "foo_add_taxonomy_meta_boxes_2"); // Add taxonomy page (basicaly where you can list all of them) add_action("edit_{$taxonomy}", "foo_save_taxonomy_meta", 10, 2); // Editing existing one, be carefull as it runs also in quick edit add_action("create_{$taxonomy}","foo_save_taxonomy_meta", 10, 2); // Creating new taxonomy add_action("delete_{$taxonomy}", "foo_delete_taxonomy_meta", 10, 3); // Deleting a taxonomy, you should always clean up after yourself

Comments

1 shown
Sonicelo 2015-07-31T16:26:00+00:00

With help of following actions, you can make the graphical interface on the needed taxonomy page: add_action("{$taxonomy}_edit_form", "foo_add_taxonomy_meta_boxes", 10, 2); // Edit taxonomy page add_action("{$taxonomy}_add_form_fields", "foo_add_taxonomy_meta_boxes_2"); // Add taxonomy page (basicaly where you can list all of them) add_action("edit_{$taxonomy}", "foo_save_taxonomy_meta", 10, 2); // Editing existing one, be carefull as it runs also in quick edit add_action("create_{$taxonomy}","foo_save_taxonomy_meta", 10, 2); // Creating new taxonomy add_action("delete_{$taxonomy}", "foo_delete_taxonomy_meta", 10, 3); // Deleting a taxonomy, you should always clean up after yourself