私はwordpressでxmlprcからリモートでいくつかの機能を実行しています。
私が開発したテーマのためにリモートでupgrade-themeを実行したいと思います。
Wpがテーマの新しいバージョンがあることを知っていると仮定します。 pre_set_site_transient_update_themes
呼び出すべき本当の関数は何ですか。そしてそれをどう呼ぶか?
それが必要かもしれない人に。
これがコードです。
誰かに役立つことを願っています。
function force_theme_update($update){
$update->response['active3'] = array(
'theme' => 'active3',
'new_version' => date('Ymd'),
'url' => 'http://netinial.com/theme/theme.php',
'package' => 'http://netinial.com/theme/theme.Zip',
);
return $update;
}
if(current_user_can('manage_options')){ add_filter('site_transient_update_themes', 'force_theme_update'); }