如何在插件行操作中添加插件版本更新选项?

时间:2020-04-02 作者:Mainuddin Rashed

我想在wp插件激活行中添加版本更新选项。

请获取附加链接https://prnt.sc/rrgj0l

    $path = plugin_basename( __FILE__ );
    add_action(\'after_plugin_row_{$path}\' array( $this, \'call_back_plugin_row_action \' ), 10, 3);

    function call_back_plugin_row_action ( $plugin_file, $plugin_data, $status ) {
            echo \'<tr class="active">
            <td>&nbsp;</td>
            <td colspan="2">Some Description for update</td>
           </tr>\';
    }
我使用了此代码,但没有显示任何内容。。检查此处https://prnt.sc/rrgbf5

雷加德斯曼丁

1 个回复
SO网友:Neolot

如果我没说错的话,您希望在插件行之后添加自定义文本。

Example:

$path = plugin_basename( __FILE__ );
add_action( "after_plugin_row_{$path}", function ( $plugin_file, $plugin_data, $status ) {
    echo \'<tr class="active"><td>&nbsp;</td><td colspan="2"><p style="background-color: #d54e21; padding: 10px; color: #f9f9f9; margin-top: 10px"><strong>Important Notice!</strong></td></tr>\';
}, 10, 3 );

相关推荐