This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Switch Upload Dir & Url | |
| * | |
| * @since 1.0.0 | |
| * | |
| * @param string $file The file path. | |
| * @param string $switch The reference to the string to replace. Allowed 'dir>url', 'url>dir'. | |
| * | |
| * @return string The file url |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Add Extra Image sizes | |
| * | |
| * Add extra image size to chosen select | |
| * | |
| * @param array $list The list of the default wordpress image sizes | |
| * @return array $list The filtered image sizes | |
| */ | |
| add_filter( 'image_size_names_choose', function( $list ) { |
NewerOlder