I'm wondering, what exactly is the avia_framework_post taxonomy? I see it referenced by SEO plugins, sitemap plugins, etc. I'm not sure if I'm supposed to hide it, noindex it, publish a sitemap for it, etc. Can you let me know how this functions in the Abundance theme and possibly give an example of it?
What exactly is the avia_framework_post taxonomy?
4 posts from 3 voices-
Posted 2 months ago #
-
Hi lynxmarketing,
Its the post type that the framework uses to save images for the options pages. From the framework>php>class-media.php file you can see it generated:
/** * The avia media generate_post_type function builds the hidden posts necessary for image saving on options pages */ public static function generate_post_type() { register_post_type( 'avia_framework_post', array( 'labels' => array('name' => 'Avia Framework' ), 'show_ui' => false, 'query_var' => true, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => false, 'supports' => array( 'editor', 'title' ), 'can_export' => true, 'public' => true, 'show_in_nav_menus' => false ) ); }So you don't need to do anything with it in regards to SEO except maybe tell the plugins to leave it alone.
Regards,
Devin
Posted 2 months ago # -
So it sounds like more of a backend thing? Is there a reason it's set to public?
Posted 2 months ago # -
Hi,
Public just means that the data will be displayed to other instances and classes of object. Private means data available only to object itself. Since we definitely want this data available to other objects, it can't be private, .. well it could, but it would defeat the purpose of having extra image functionality. WPML wouldn't be able to translate it either if it were private. It provides all that extra image/slider functionality and you can think of it as a memory extension pack for normal wordpress images.
Thanks,
Nick
Posted 2 months ago #
Reply
You must log in to post.














