這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

DX Plugin Base

描述

This is a fully-functional sample skeleton plugin for plugin developers.

It serves as a startup code providing reference and working codebase for:

  • defining custom post types and taxonomies
  • creating admin pages
  • sample code of the Settings API implementation for admin pages
  • registration of activate/deactivate hooks
  • adding metaboxes on pages
  • creating sample shortcode
  • creating sample widget
  • creating AJAX requests storing sample data in the database
  • creating AJAX requests for fetching remote data with the HTTP API
  • adding frontend styles/scripts the right way
  • adding admin styles/scripts the right way
  • defining common constants for further use

and more. Use it freely as your plugin startup snippet.

Take the code as is for test and learning or use it when creating plugins for a solid base. To be extended with
widget and shortcode samples.

安裝

Upload the DX Plugin Base plugin to your blog and activate it. It would work as is.

Extend or comment whenever appropriate based on your assignment.

常見問題

Is it compatible with latest WordPress?

Yes, it is, as well as with the latest PHP.

I’ve removed the ‘pass-by-reference’ call for all array( $this, … ) entries as it’s deprecated since 5.3.0. If you happen to use 5.2.4, you can replace all $this in arrays with &$this or better update PHP version.

評價

閱讀全部2個評價

貢獻者及開發者

“DX Plugin Base” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 DX Plugin Base 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

1.6

  • Widget update for PHP compatibility with 4.3

1.5

  • Add custom fields to metaboxes
  • Save custom fields

1.4

  • Refreshing

1.3

  • Add page with AJAX options
  • Introduce AJAX call for storing data to DB
  • Introduce AJAX call to fetch title from remote HTTP resouce

1.2

  • Fix small issues and prevent some unexpected activities

1.0

  • Initial commit