Advertisement
Guest User

footer-buddypress

a guest
Feb 3rd, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1.  
  2. <div id="footerWrapper">
  3. <div id="footer">
  4. <a href="#top" class="back_to_top"></a>
  5. <p class="left">
  6. <?php /* Replace default text if option is set */
  7. if( get_option('of_qs_fleft') == 'true'){
  8. echo get_option('of_qs_fleft_text');
  9. } else {
  10. ?>
  11. <a href="<?php echo home_url( '/' ) ?>" title="<?php bloginfo('name'); ?>" rel="home">&copy; <?php bloginfo('name'); ?></a>
  12. <?php } ?>
  13. </p>
  14. <p class="right">
  15. <?php /* Replace default text if option is set */
  16. if( get_option('of_qs_fright') == 'true'){
  17. echo get_option('of_qs_fright_text');
  18. } else {
  19. wp_loginout();
  20. if ( is_user_logged_in() ) {
  21. echo ' - '; ?>
  22. <a href="<?php bloginfo('url'); ?>/wp-admin/edit.php">Posts</a> -
  23. <a href="<?php bloginfo('url'); ?>/wp-admin/post-new.php">Add New</a>
  24. <?php } ?> -
  25. <a href="http://wordpress.org/" title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'quickstart'); ?>" rel="generator"><?php _e('Powered by WordPress', 'quickstart'); ?></a> -
  26. Designed by <a href="http://www.gabfirethemes.com/" title="Premium WordPress Themes">Gabfire Themes</a>
  27. <?php wp_footer(); ?>
  28. <?php } ?>
  29. </p>
  30. <div class="clear"></div>
  31. </div><!-- /wrapper -->
  32. </div><!-- /v -->
  33.  
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement