mtekk / Breadcrumb-NavXT

The longest maintained Breadcrumb plugin for WordPress
https://mtekk.us/code/breadcrumb-navxt
51 stars 25 forks source link

Run setup_setting_default as late as possible #262

Closed mtekk closed 2 years ago

mtekk commented 2 years ago

Looks like some other plugins are doing silly things when they don't need to (like registering post types later than priority 10 on init), so we need to try to run late (ideally after all post types are registered).

mtekk commented 2 years ago

wp_loaded is probably the absolute latest this could be run (assume all plugins are done registering taxonomies and CPTs by that time).

mtekk commented 2 years ago

Running at priority 9000 should be late enough for most things, also appears to still work with everything else (no conflicts with settings saving/updating settings).