このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

WP Shortcodes API

説明

The plugin take all of the data registered and created a multi-dimensional
array in an option called ‘_shortcodes’. Existing shortcodes that WP is away of
are also stored here with just their name and callback.

A few static methods for checking on shortcode info are provided.
GetShortcodeAtts($shortcode_name)
ShortcodeInPost($shortcode_name, $post_id)

Creating a new media button in the editor is easy with the add_media_button()
method. Just pass your shortcode name, attributes, a page title, introductory
text, and an icon image url.

インストール

  1. Upload wp-shortcodes-api.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. example implementation:

    if (class_exists('WP_Shortcodes_API')) {
            WP_Shortcodes_API::GetInstance()->
                add_shortcode($shortcode_name, $callback)->
                add_att($att_name)->
                add_att($att_name2)->
                add_media_button(array(
                    'shortcode' => $shortcode_name,
                    'title' => $thickbox_title,
                    'icon_url' => $button_icon_url,
                    'intro' => $introduction_to_form,
                    'input_atts' => WP_Shortcodes_API::GetShortcodeAtts($shortcode_name)
                ));
        } else {
            // fallback if the plugin is unavailable.
            add_shortcode($shorcode_name, $callback);
        }
    

評価

このプラグインにはレビューがありません。

貢献者と開発者

WP Shortcodes API はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“WP Shortcodes API” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

0.1

Initial release.