PowerPress Posts From MySQL addon

PowerPress Posts From MySQL addon Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 3,529 downloads
PowerPress Posts From MySQL addon Icon

Try plugin: PowerPress Posts From MySQL addon

We'll create fresh WordPress site with PowerPress Posts From MySQL addon installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About PowerPress Posts From MySQL addon

Have a bunch of podcasts stored on your server and aren't excited about creating each post manually? This can help.

1


0


0


0


0

updated: 8 years ago
since: 12 years ago
author: Mark Chouinard

Description

By populating a MySQL database table with all the information about the podcasts you can automatically create the posts needed for podcasting with the Blubrry PowerPress plugin. This will allow you to post as draft or published and switch between the two as well as delete posts. Probably not useful to actual Podcasters, but it works for what I needed.

Information required from the database:

  • Host
  • Database Name
  • Database Table Name
  • Database Username
  • Database Password

Also field names from the database which will be used for the following:

  • Primary Key Field
  • Title
  • Category
  • Post Body
  • Featured Image(URL to an image)
  • Media URL
  • Media size
  • Media type
  • Date posted

Your categories need to be setup prior to using this.

Example database table for importing from

You may use the following database table as an example template for your database.

CREATE TABLE episodes (
  episode_id int(11) NOT NULL,
  episode_title varchar(255) NOT NULL,
  episode_category varchar(255) NOT NULL,
  episode_body text NOT NULL,
  episode_image_url varchar(4000) NOT NULL,
  episode_url varchar(4000) NOT NULL,
  episode_length int(11) NOT NULL,
  episode_content_type varchar(20) NOT NULL,
  episode_date date NOT NULL,
  PRIMARY KEY (episode_id)
) DEFAULT CHARSET=utf8;

Note: You must have at least one record in the database table before you can enter the database column fields in this plugin.