Advertisement
Guest User

lstelie

a guest
Sep 6th, 2008
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.88 KB | None | 0 0
  1. <?php
  2.     /*
  3.     Plugin Name: BBPress header footer code
  4.     Plugin URI: http://luc.saint-elie.com
  5.     Description: Adds header and footer elements in BBPress.
  6.     Author: Luc Saint-Elie
  7.     Author URI: http://luc.saint-elie.com
  8.     Version: 0.1a
  9.     */
  10.    
  11.  
  12. /**************************************
  13. HEADER AND FOOTER CONTENT
  14. ***************************************/
  15.    
  16. function bbpress_footer_code() { ?>
  17.  
  18. <!-- PASTE YOUR OWN HTML CODE HERE -->
  19.  
  20. <div style="border-top: 1px solid #ccc;
  21.     margin: auto;
  22.     color: #666;
  23.     font-size: 1.0em;
  24.     letter-spacing: 2px;
  25.     text-transform: uppercase;
  26.     padding-top: 10px;
  27.     clear: both;
  28.     text-align: center;
  29.     width: 760px;">
  30. <!-- Site Meter -->
  31. <script type="text/javascript" src="http://s17.sitemeter.com/js/counter.js?site=xxxx">
  32. </script>
  33. <noscript>
  34. <a href="http://s17.sitemeter.com/stats.asp?site=xxxx" target="_top">
  35. <img src="http://s17.sitemeter.com/meter.asp?site=xxxx" alt="Site Meter" border="0"/></a>
  36. </noscript>
  37. <!-- Copyright (c)2006 Site Meter -->
  38. </div>
  39. <!-- END OF YOUR OWN HTML CODE  -->
  40.  
  41. <?php }
  42.  
  43.  
  44. function bbpress_header_code() { ?>
  45.  
  46. <!-- PASTE YOUR OWN HTML CODE HERE -->
  47.  
  48. <!-- custom header elements -->
  49. <meta name="description" content="" />
  50. <meta name="keywords" content="" />
  51. <meta name="ICBM"  content="" />
  52. <meta name="DC.title" content="" />
  53. <meta name="language"  content="" />
  54. <meta name="author" content="" />
  55. <meta name="copyright" content="" />
  56. <meta name="robots" content="" />
  57. <meta name="revisit-after" content="" />
  58. <meta name="document-class"     content="" />
  59. <meta name="document-classification" content="" />
  60. <meta name="document-rights"    content="" />
  61. <meta name="document-type"  content="" />
  62. <meta name="document-rating"    content="" />
  63. <meta name="document-distribution"  content="" />      
  64. <meta name="document-state"     content="" />
  65. <meta name="cache-control"      content="no-cache" />
  66. <meta http-equiv="cache-control" content="no-cache" />
  67. <meta http-equiv="Pragma"   content="no-cache" />
  68. <meta content="true" name="MSSmartTagsPreventParsing" />
  69. <!-- /custom header elements -->
  70.  
  71. <!-- END OF YOUR OWN HTML CODE  -->
  72.  
  73. <?php }
  74.  
  75.  
  76. /**************************************
  77. CONFIGURATION PAGE (not really used)
  78. ***************************************/
  79. function bbpress_footer_code_configuration_page(){?>
  80. <h2><?php _e('Header Footer Configuration'); ?></h2>
  81.  
  82.  
  83.             <?php _e('No setting (yet ?), you need to edit directly the plug in file.'); ?>
  84.  
  85. <?php }
  86.  
  87. function header_footer_code_configuration_page_add() {
  88.     bb_admin_add_submenu(__('Header Footer Configuration'), 'use_keys', 'header_footer_code_configuration_page');
  89. }
  90.  
  91.  
  92.  
  93.  
  94. /**************************************
  95. ACTIONS
  96. ***************************************/
  97. add_action( "bb_foot", "bbpress_footer_code" );
  98. add_action( "bb_head", "bbpress_header_code" );
  99.  
  100.  
  101. add_action('bb_admin_menu_generator', 'header_footer_code_configuration_page_add');
  102. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement