All configuration paths are under the orangecollar_wordpress/ prefix in Magento’s core_config_data table.
Admin path: Stores > Configuration > Orange Collar > WordPress Integration
Connection Group
Config Path Type Default Description connection/ wordpress_ urltext (none) Full URL to WordPress installation connection/ api_ keyobscure (encrypted) (none) API key from OC Magento Bridge plugin connection/ timeouttext 10 HTTP request timeout in seconds
Blog Settings Group
Config Path Type Default Description blog/ base_ urltext blog URL path prefix for blog pages blog/ posts_ per_ pagetext 10 Posts per listing page blog/ default_ imageimage (none) Default featured image when post has none blog/ enable_ commentsselect 0 Show comment section links
SEO Group
Config Path Type Default Description seo/ use_ wp_ seoselect 0 Pull meta/OG from Yoast or RankMath seo/ blog_ meta_ titletext Blog Title tag for blog listing page seo/ blog_ meta_ descriptiontextarea (none) Meta description for blog listing seo/ url_ structureselect post-name URL format: post-name or date-name
Config Path Type Default Description menus/ enabledselect 0 Enable WordPress menu fetching
Cache Group
Config Path Type Default Description cache/ lifetimetext 1800 Post cache lifetime in seconds cache/ category_ lifetimetext 86400 Category/tag cache lifetime in seconds cache/ enable_ webhookselect 0 Accept webhook cache purge requests
Content Group
Config Path Type Default Description content/ enable_ relatedselect 0 Show related posts on post pages content/ related_ counttext 5 Number of related posts to show content/ enable_ sharingselect 0 Show social sharing links content/ enable_ author_ pagesselect 0 Enable author archive pages
Reading Config in Code
Always access configuration through Model/Config.php. Never call ScopeConfigInterface::getValue() directly in controllers, blocks, or templates.
PHP SCROLL → COPY
// Correct
$url = $this->config->getWordPressUrl();
// Incorrect - do not do this
$url = $this->scopeConfig->getValue('orangecollar_wordpress/connection/wordpress_url');