Advertisement
jan_dembowski

Oxygen Theme 0.2.5/0.3 diff

Jul 25th, 2012
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 2.53 KB | None | 0 0
  1. Common subdirectories: 0.2.5/.svn and 0.3/.svn
  2. Common subdirectories: 0.2.5/admin and 0.3/admin
  3. Common subdirectories: 0.2.5/docs and 0.3/docs
  4. diff 0.2.5/footer.php 0.3/footer.php
  5. 34c34
  6. <                       <div id="footer-content">
  7. ---
  8. >                       <div id="footer-content" class="footer-content">
  9. diff 0.2.5/functions.php 0.3/functions.php
  10. 5c5
  11. <  * @version 0.2.5
  12. ---
  13. >  * @version 0.3
  14. 90c90
  15. <       add_custom_background();
  16. ---
  17. >       add_theme_support( 'custom-background' );
  18. 424a425,447
  19. > /**
  20. >  * Oxygen site title.
  21. >  *
  22. >  */
  23. > function oxygen_site_title() {
  24. >
  25. >       if ( hybrid_get_setting( 'oxygen_logo_url' ) ) {
  26. >
  27. >               $tag = ( is_front_page() ) ? 'h1' : 'div';
  28. >
  29. >               echo '<' . $tag . ' id="site-title">' . "\n";
  30. >                       echo '<a href="' . get_home_url() . '" title="' . get_bloginfo( 'name' ) . '" rel="Home">' . "\n";
  31. >                               echo '<img class="logo" src="' . esc_url( hybrid_get_setting( 'oxygen_logo_url' ) ) . '" alt="' . get_bloginfo( 'name' ) . '" />' . "\n";
  32. >                       echo '</a>' . "\n";
  33. >               echo '</' . $tag . '>' . "\n";
  34. >
  35. >       } else {
  36. >
  37. >               hybrid_site_title();
  38. >
  39. >       }
  40. > }
  41. >
  42. diff 0.2.5/header.php 0.3/header.php
  43. 57,69c57
  44. <                                               <?php if ( hybrid_get_setting( 'oxygen_logo_url' ) ) { ?>
  45. <
  46. <                                                       <h1 id="site-title">
  47. <                                                               <a href="<?php echo home_url(); ?>/" title="<?php echo bloginfo( 'name' ); ?>" rel="Home">
  48. <                                                                       <img class="logo" src="<?php echo hybrid_get_setting( 'oxygen_logo_url' ); ?>" alt="<?php echo bloginfo( 'name' ); ?>" />
  49. <                                                               </a>
  50. <                                                       </h1>
  51. <
  52. <                                               <?php } else { ?>
  53. <
  54. <                                                       <?php hybrid_site_title(); ?>
  55. <
  56. <                                               <?php } ?>
  57. ---
  58. >                                               <?php oxygen_site_title(); ?>
  59. Common subdirectories: 0.2.5/images and 0.3/images
  60. Common subdirectories: 0.2.5/js and 0.3/js
  61. Common subdirectories: 0.2.5/languages and 0.3/languages
  62. Common subdirectories: 0.2.5/library and 0.3/library
  63. diff 0.2.5/style.css 0.3/style.css
  64. 5c5
  65. <  * Version: 0.2.5
  66. ---
  67. >  * Version: 0.3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement