WordPress Core Settings
Configure WordPress core functionality through the Combo plugin.
Assets Management
Control how assets (CSS, JavaScript) are loaded and managed:
1assets:2version: "1.0.0" # Version string for cache busting3lazyload: true # Enable image lazy loading (true, 'vanilla', or false)4deferred-scripts: # Scripts to defer loading5- 'bones-scripts'
Options
- version: String used for cache busting. Append this to asset URLs to force browsers to load fresh versions.
- lazyload: Enable lazy loading for images. Options:
true: Enable native lazy loading'vanilla': Use vanilla JavaScript lazy loadingfalse: Disable lazy loading
- deferred-scripts: Array of script handles to defer loading until after the page has loaded.
WordPress Cleanup
Remove unnecessary WordPress features and metadata:
1cleanup:2emoji-styles: false # Disable WordPress emoji styles3comments-styles: false # Disable WordPress comment styles4post-rel-links: false # Disable post relation links5generator: false # Remove WordPress generator meta tag6rsd-link: false # Remove RSD link7wlwmanifest-link: false # Remove Windows Live Writer manifest8term-description-kses: false # Allow HTML in term descriptions9protected-text: false # Remove "Protected:" text from protected posts10rss-version: false # Remove RSS version
Options
Set any option to false to disable/remove the feature. Set to true to keep it enabled.
Admin Features
Customize admin functionality and security features:
1admin:2xml-rpc: false # Disable XML-RPC3unlogged-api: true # Allow API access for unlogged users4rss-feeds: false # Disable RSS feeds5svg-import: true # Allow SVG uploads6svg-dimensions: true # Preserve SVG dimensions7admin-bar: true # Show admin bar8options-pages: # ACF options pages9- page_title: 'Options'10menu_title: 'Options'11menu_slug: 'options'12capability: 'edit_posts'13position: null14parent_slug: ''15icon_url: 'dashicons-admin-generic'16redirect: true17post_id: 'options'18autoload: false
Options
- xml-rpc: Enable or disable XML-RPC functionality (recommended to disable for security).
- unlogged-api: Allow API access for users who aren't logged in.
- rss-feeds: Enable or disable RSS feeds.
- svg-import: Allow SVG file uploads in the media library.
- svg-dimensions: Preserve SVG dimensions when displaying SVG files.
- admin-bar: Show or hide the WordPress admin bar.
- options-pages: Array of ACF options pages to create. Each item can include:
page_title: Title displayed at the top of the options pagemenu_title: Title displayed in the admin menumenu_slug: URL slug for the options pagecapability: WordPress capability required to access the pageposition: Position in the menu (null for default)parent_slug: Parent menu slug for submenu itemsicon_url: Dashicon or URL for the menu iconredirect: Whether to redirect to the first child pagepost_id: Post ID to save/load data fromautoload: Whether to autoload the options