You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support RSS Feeds, JSON Feed, Facebook Instant Articles and Apple News. Syndication feeds come in two flavors:
BasicFeed - A standard RSS V 2.0.1 feed designed to be used without item enclosures.
ExtendedFeed - An RSS V2/Atom Feed with support for item enclosures such as images or video. Use this if when want to integrate your feed with services like MailChimp or Flipboard.
JSON feed come in two flavors:
BasicJsonFeed - A standard JSON feed designed to be used without content html.
ExtendedJsonFeed - A JSON feed with support for content html in items.
Getting Started
The latest release (0.1.0) breaks backward compatibility with previous versions of Wagtail which were baseed Django 1.x. Use 0.0.8 for projects based on older versions of Wagtail
To use Django Wagtail Feeds in a project:
pip install django-wagtail-feeds
Remember to add wagtail_feeds to installed apps in settings file.
django-wagtail-feeds has a dependency on wagtail settings app. You must add wagtail.contrib.settings to your INSTALLED_APPS: