Skip to content

Commit

Permalink
Replace theme update urls.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgardner committed Dec 23, 2024
1 parent 3a56838 commit f0a537e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function powder_register_pattern_categories() {
* Check for theme updates.
*/
function powder_theme_updates( $transient ) {
$update_url = 'https://powderwp.com/updates.json';
$update_url = 'https://briangardner.com/powder-updates.json';

$response = wp_remote_get( $update_url );
if ( is_wp_error( $response ) ) {
Expand All @@ -126,7 +126,7 @@ function powder_theme_updates( $transient ) {
$transient->response['powder'] = array(
'theme' => 'powder',
'new_version' => $data->version,
'url' => 'https://powderwp.com/changelog/',
'url' => 'https://briangardner.com/powder/changelog/',
'package' => $data->download_url,
);
}
Expand Down

0 comments on commit f0a537e

Please sign in to comment.