Advertisement
Guest User

functions.php

a guest
Nov 8th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. function graphene_custom_header_width(){
  4.  
  5. return 960;
  6.  
  7. }
  8.  
  9. function graphene_custom_header_height(){
  10.  
  11. return 138;
  12.  
  13. }
  14.  
  15. add_filter('graphene_header_image_width', 'graphene_custom_header_width');
  16.  
  17. add_filter('graphene_header_image_height', 'graphene_custom_header_height');
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement