Download the PHP package wp-content-framework/core without Composer

On this page you can find all versions of the php package wp-content-framework/core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package core

WP Content Framework

CI Status License: GPL v2+ PHP: >=5.6 WordPress: >=3.9.3

WordPressのプラグインやテーマ開発用のフレームワークです。

Table of Contents

Details - [要件](#%E8%A6%81%E4%BB%B6) - [手順](#%E6%89%8B%E9%A0%86) - [プラグインからの利用](#%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3%E3%81%8B%E3%82%89%E3%81%AE%E5%88%A9%E7%94%A8) - [テーマからの利用](#%E3%83%86%E3%83%BC%E3%83%9E%E3%81%8B%E3%82%89%E3%81%AE%E5%88%A9%E7%94%A8) - [モジュール](#%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB) - [画面の追加](#%E7%94%BB%E9%9D%A2%E3%81%AE%E8%BF%BD%E5%8A%A0) - [API の追加](#api-%E3%81%AE%E8%BF%BD%E5%8A%A0) - [filter の追加](#filter-%E3%81%AE%E8%BF%BD%E5%8A%A0) - [cron の追加](#cron-%E3%81%AE%E8%BF%BD%E5%8A%A0) - [カスタム投稿タイプの追加](#%E3%82%AB%E3%82%B9%E3%82%BF%E3%83%A0%E6%8A%95%E7%A8%BF%E3%82%BF%E3%82%A4%E3%83%97%E3%81%AE%E8%BF%BD%E5%8A%A0) - [テストの追加](#%E3%83%86%E3%82%B9%E3%83%88%E3%81%AE%E8%BF%BD%E5%8A%A0) - [コンフィグ](#%E3%82%B3%E3%83%B3%E3%83%95%E3%82%A3%E3%82%B0) - [設定](#%E8%A8%AD%E5%AE%9A) - [フィルタ](#%E3%83%95%E3%82%A3%E3%83%AB%E3%82%BF) - [DB](#db) - [権限](#%E6%A8%A9%E9%99%90) - [デフォルトの動作の上書き](#%E3%83%87%E3%83%95%E3%82%A9%E3%83%AB%E3%83%88%E3%81%AE%E5%8B%95%E4%BD%9C%E3%81%AE%E4%B8%8A%E6%9B%B8%E3%81%8D) - [基本設定](#%E5%9F%BA%E6%9C%AC%E8%A8%AD%E5%AE%9A) - [サンプルプラグイン](#%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3) - [Author](#author)

要件

手順

プラグインからの利用

  1. プラグインフォルダの作成 wp-content/plugins フォルダに プラグイン用のフォルダを作成 例:wp-content/plugins/example

  2. プラグインファイルの作成 作成したプラグインフォルダに適当なPHPファイル (例:autoload.php) を作成 標準プラグイン情報 を参考にプラグインの情報を入力

  3. このライブラリのインストール composer を使用してインストールします。 作成したプラグインフォルダで以下のコマンドを実行します。

  4. ライブラリの使用 作成したプラグインファイルにライブラリを使用する記述を追記します。 プラグインファイルはおおよそ以下のようになります。

最終的なプラグインの構成は以下のようになります。

テーマからの利用

  1. テーマフォルダの作成 wp-content/themes フォルダに テーマ用のフォルダを作成 例:wp-content/themes/example

  2. テーマ用CSSの作成 作成したテーマフォルダに style.css を作成 テーマスタイルシート を参考にテーマの情報を入力

  3. このライブラリのインストール composer を使用してインストールします。 作成したプラグインフォルダで以下のコマンドを実行します。

  4. ライブラリの使用 テーマフォルダに functions.php を作成しライブラリを使用する記述を追記します。 functions.php はおおよそ以下のようになります。

最終的なテーマの構成は以下のようになります。

  複数のプラグイン及びテーマでこのライブラリを使用する場合、モジュールも含めて最新のものが自動的に使用されます。

モジュール

必要に応じてモジュールを追加します。 いくつかのモジュールは依存関係によって自動的にインストールされます。

画面の追加

admin

API の追加

api

filter の追加

今後ドキュメント追加予定

cron の追加

cron

カスタム投稿タイプの追加

custom_post

テストの追加

test

コンフィグ

設定

設定例:

設定ページで設定可能になります。 プログラムで使用するには以下のようにします。

フィルタ

DB

権限

デフォルトの動作の上書き

今後追加予定

基本設定

設定値 説明
required_php_version 動作に必要なPHPの要求バージョン [default = 5.6]
required_wordpress_version 動作に必要なWordPressの要求バージョン [default = 3.9.3]
filter_separator filter prefix の separator [default = '/']
設定値 説明
admin_menu_position 管理画面のメニューの表示位置

サンプルプラグイン

Author


All versions of core with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
wp-content-framework/common Version ^1.0
wp-content-framework/cache Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wp-content-framework/core contains the following files

Loading the files please wait ....