Skip to content

Magento module for fetching content from WordPress through WP Rest API

Notifications You must be signed in to change notification settings

valguss/stunt_mage_wprest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Magento WP Rest Module

Magento and WordPress were always the mighty combination as Magento is lacking quality CMS control. Over the years, there were many extensions developed to run Magento inside WordPress and vice versa. However, they were all lacking ability to naturally or easily connect Magento and WordPress and mostly — they were not SEO friendly.

Thanks to the WP Rest API, clean WP-Magento integration if finally possible.

Magento WP Rest module solves problems caused by Magento's feature lacking CMS by integrating WordPress blog through WP Rest Api. With almost no configuration, your blog can now become natural part of your store. This will allow user to write content using WordPress and it's rich options, while posts, pages and categories will be showing in Magento.

Here is the overview of features provided by WP Rest module:

Requirements:

Configuration

Configuration for Magento WP Rest module can be found in Magento Admin Panel -> System -> Configuration -> WordPress REST API:

  • Base Uri - Defines the url where WordPress API is located. Url must be absolute and can eaither on same or different domain than Magento store is. Example: http://example.com/wp-json/

Integration

WpRest module is built for developers. It provides set of models for interaction with WordPress REST API, allowing developers to easily extend integration.

Each API model (post, page, category, media) allows fetching colection or single record.

Posts

Fetching collection of records

Full list of options can be found here - https://developer.wordpress.org/rest-api/reference/posts/#list-posts

$options = array(
  'slug' => 'example-post-slug',
  'categories' => 1,
  'orderby' => 'title'
);

$posts = Mage::getSingleton('stuntcoders_wprest/api_post')->getCollection($options);

Fethcing single record

$post = Mage::getSingleton('stuntcoders_wprest/api_post')->getMember($postId);

Pages

Fetching collection of records

Full list of options can be found here - https://developer.wordpress.org/rest-api/reference/pages/#list-pages

$options = array(
  'slug' => 'example-page-slug',
  'orderby' => 'title'
);

$pages = Mage::getSingleton('stuntcoders_wprest/api_page')->getCollection($options);

Fethcing single record

$page = Mage::getSingleton('stuntcoders_wprest/api_page')->getMember($pageId);

Categories

Fetching collection of records

Full list of options can be found here - https://developer.wordpress.org/rest-api/reference/categories/#list-categorys

$options = array(
  'slug' => 'example-category-slug',
  'orderby' => 'title'
);

$categories = Mage::getSingleton('stuntcoders_wprest/api_category')->getCollection($options);

Fethcing single record

$category = Mage::getSingleton('stuntcoders_wprest/api_category')->getMember($categoryId);

Media

Fetching collection of records

Full list of options can be found here - https://developer.wordpress.org/rest-api/reference/categories/#list-categorys

$options = array(
  'slug' => 'example-media-slug',
  'orderby' => 'title'
);

$media = Mage::getSingleton('stuntcoders_wprest/api_media')->getCollection($options);

Fethcing single record

$media = Mage::getSingleton('stuntcoders_wprest/api_media')->getMember($mediaId);

Copyright StuntCoders — Start Your Online Store Now

About

Magento module for fetching content from WordPress through WP Rest API

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 85.6%
  • HTML 14.4%