ionfish (owner)

Revisions

gist: 86016 Download_button fork
public
Description:
Plugin to change your WordPress theme's custom header size
Public Clone URL: git://gist.github.com/86016.git
Embed All Files: show embed
custom_header_resize.php #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/*
Plugin Name: Custom Header Resize
Plugin URI: http://tarskitheme.com/
Description: Change your theme's custom header size.
Author: Benedict Eastaugh
Version: 1.0
Author URI: http://extralogical.net/
*/
 
// Change these values to meet your requirements
define('HEADER_IMAGE_WIDTH', 900);
define('HEADER_IMAGE_HEIGHT', 200);
 
?>