
內容簡介
透過將所有播客相關的資訊填入 MySQL 資料庫中,您可以使用 Blubrry PowerPress 外掛 自動建立播客需要的文章。這將允許您以草稿或已發布的方式發布文章,並在兩者之間切換,以及刪除文章。對於實際播客人員可能不是很有用,但這很適合我的需求。
從資料庫中需要的資訊:
主機名稱
資料庫名稱
資料表名稱
資料庫使用者名稱
資料庫密碼
還需要使用資料庫中的欄位名稱來執行以下操作:
主鍵欄位
標題
分類
文章內容
特色圖片(圖片的 URL)
媒體 URL
媒體大小
媒體類型
文章發布日期
在使用此功能之前,您需要先設置分類。
匯入範例資料表
您可以使用以下資料庫表格作為匯入的範例模板。
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;
注意:您必須在此外掛中輸入資料庫欄位前,先至少在資料庫表格中設置一筆資料。
外掛標籤
開發者團隊
② 後台搜尋「PowerPress Posts From MySQL addon」→ 直接安裝(推薦)
原文外掛簡介
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.
