Changeset 3002745
- Timestamp:
- 11/28/2023 01:23:08 PM (2 years ago)
- Location:
- be-media-from-production
- Files:
-
- 2 edited
-
tags/1.7.0/readme.txt (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
be-media-from-production/tags/1.7.0/readme.txt
r2940960 r3002745 20 20 Once the plugin is installed, add the following constant to wp-config.php with your production URL. 21 21 22 ` ``22 ` 23 23 define( 'BE_MEDIA_FROM_PRODUCTION_URL', 'https://www.billerickson.net' ); 24 ` ``24 ` 25 25 26 26 Alternatively, you can use the filter in a Code Snippets plugin or a mu-plugin: 27 27 28 ` ``28 ` 29 29 add_filter( 'be_media_from_production_url', function() { 30 30 return 'https://www.billerickson.net'; 31 31 }); 32 ` ``32 ` 33 33 34 34 **Installation via WP-CLI and constants** 35 35 36 ` ``36 ` 37 37 wp plugin install --activate be-media-from-production 38 38 wp config set BE_MEDIA_FROM_PRODUCTION_URL https://www.billerickson.net --type=constant 39 ` ``39 ` 40 40 41 41 **Using with WP Migrate** -
be-media-from-production/trunk/readme.txt
r2940960 r3002745 20 20 Once the plugin is installed, add the following constant to wp-config.php with your production URL. 21 21 22 ` ``22 ` 23 23 define( 'BE_MEDIA_FROM_PRODUCTION_URL', 'https://www.billerickson.net' ); 24 ` ``24 ` 25 25 26 26 Alternatively, you can use the filter in a Code Snippets plugin or a mu-plugin: 27 27 28 ` ``28 ` 29 29 add_filter( 'be_media_from_production_url', function() { 30 30 return 'https://www.billerickson.net'; 31 31 }); 32 ` ``32 ` 33 33 34 34 **Installation via WP-CLI and constants** 35 35 36 ` ``36 ` 37 37 wp plugin install --activate be-media-from-production 38 38 wp config set BE_MEDIA_FROM_PRODUCTION_URL https://www.billerickson.net --type=constant 39 ` ``39 ` 40 40 41 41 **Using with WP Migrate**
Note: See TracChangeset
for help on using the changeset viewer.