プラグインの更新時にカスタムメッセージを作成する方法


10

プラグインページにアクセスすると、今日このメッセージが表示されました。 カスタムプラグイン更新メッセージ

では、ワードプレスでホストされている自分のプラグインを更新したい場合、これをどのように作成しますか?

回答:


9

このメッセージは、にW3_Total_Cache->in_plugin_update_message()フックされて作成さ"in_plugin_update_message-$file"wp_plugin_update_row()ます。

readmeを解析してchangelogからの情報を表示するためにいくつかの気の利いたことをしますが、全体的には他のフックと同じようにいくつかのものをエコーすることができます。


ああ、そのフックは私が探しているものです。Thx
ariefbayu

10

フックビルディング

アクションフック名を明確にするには:

global $pagenow;
if ( 'plugins.php' === $pagenow )
{
    // Better update message
    $file   = basename( __FILE__ );
    $folder = basename( dirname( __FILE__ ) );
    $hook = "in_plugin_update_message-{$folder}/{$file}";
    add_action( $hook, 'your_update_message_cb', 20, 2 );
}

フックされたコールバック関数

関数自体には2つの$variablesアタッチが付いています:$plugins_data$r。プラグインからアクセスできます。

/**
 * Displays an update message for plugin list screens.
 * Shows only the version updates from the current until the newest version
 * 
 * @param (array) $plugin_data
 * @param (object) $r
 * @return (string) $output
 */
function your_update_message_cb( $plugin_data, $r )
{
    // readme contents
    $data       = file_get_contents( 'http://plugins.trac.wordpress.org/browser/YOUR_PLUGIN_FOLDER_NAME_IN_THE_OFFICIAL_REPO/trunk/readme.txt?format=txt' );

    // assuming you've got a Changelog section
    // @example == Changelog ==
    $changelog  = stristr( $data, '== Changelog ==' );

    // assuming you've got a Screenshots section
    // @example == Screenshots ==
    $changelog  = stristr( $changelog, '== Screenshots ==', true );

    // only return for the current & later versions
    $curr_ver   = get_plugin_data('Version');

    // assuming you use "= v" to prepend your version numbers
    // @example = v0.2.1 =
    $changelog  = stristr( $changelog, "= v{$curr_ver}" );

    // uncomment the next line to var_export $var contents for dev:
    # echo '<pre>'.var_export( $plugin_data, false ).'<br />'.var_export( $r, false ).'</pre>';

    // echo stuff....
    $output = 'whatever you want to do';
    return print $output;
}

脚注:

このアプローチは、内部リンクチェッカープラグインにあります。

添加:

plugin_basename(__FILE__)上記の2行の代わりに使用できます。また、現在のページがプラグインページであるかどうかを確認することは、関数がそのページからのみ呼び出されるため、実際には必要ありません。(非常に小さな)利点は、別のコールバックがアタッチされていないことです。この答えはかなり古いので、このアプローチは問題なく機能しますが、によって返されたオブジェクトに対して確認してくださいget_current_screen()

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.