I just did a custom footer. It works but when logged into my site the top dashboard bar is missing
-
Admin
Just copy the content of the theme’s
footer.phpfile. Then, replace the entire portion of the code below with your custom footer. It’ll be much easier.<div id="footer" class="clearfix">
<?php if ( ! $graphene_settings['hide_copyright'] ) : ?>
<div id="copyright">
<h3><?php _e('Copyright', 'graphene'); ?></h3>
<?php if ( $graphene_settings['copy_text'] == '' && ! $graphene_settings['show_cc'] ) : ?>
<p>
<?php printf( '© %1$s %2$s.', date( 'Y' ), get_bloginfo( 'name' ) ); ?>
</p>
<?php elseif ( ! $graphene_settings['show_cc'] ) : ?>
<?php
if ( ! stristr( $graphene_settings['copy_text'], '</p>' ) ) { $graphene_settings['copy_text'] = wpautop( $graphene_settings['copy_text'] ); }
echo $graphene_settings['copy_text'];
?>
<?php endif; ?>
<?php if ( $graphene_settings['show_cc'] ) : ?>
<?php /* translators: %s will replaced by a link to the Creative Commons licence page, with "Creative Commons Licence" as the link text. */?>
<p>
<?php printf( __( 'Except where otherwise noted, content on this site is licensed under a %s.', 'graphene' ), '<a href="http://creativecommons.org/licenses/by-nc-nd/3.0/">' . __( 'Creative Commons Licence', 'graphene' ) . '</a>' ); ?>
</p>
<p class="cc-logo"><span><?php _e( 'Creative Commons Licence BY-NC-ND', 'graphene' ); ?></span></p>
<?php endif; ?>
<?php do_action('graphene_copyright'); ?>
</div>
<?php endif; ?>
<?php if ( has_nav_menu( 'footer-menu' ) || ! $graphene_settings['hide_return_top'] ) : ?>
<div class="footer-menu-wrap">
<ul id="footer-menu" class="clearfix">
<?php /* Footer menu */
$args = array(
'container' => '',
'fallback_cb' => 'none',
'depth' => 2,
'theme_location' => 'footer-menu',
'items_wrap' => '%3$s'
);
wp_nav_menu(apply_filters('graphene_footer_menu_args', $args));
?>
<?php if ( ! $graphene_settings['hide_return_top'] ) : ?>
<li class="menu-item return-top"><a href="#"><?php _e('Return to top', 'graphene'); ?></a></li>
<?php endif; ?>
</ul>
</div>
<?php endif; ?>
<?php if ( ! $graphene_settings['disable_credit'] ) : ?>
<div id="developer" class="grid_7">
<p>
<?php /* translators: %1$s is the link to WordPress.org, %2$s is the theme's name */ ?>
<?php printf( __('Powered by %1$s and the %2$s.', 'graphene'), '<a href="http://wordpress.org/">WordPress</a>', '<a href="http://www.khairul-syahir.com/wordpress-dev/graphene-theme">' . __('Graphene Theme', 'graphene') . '</a>'); ?>
</p>
<?php do_action('graphene_developer'); ?>
</div>
<?php endif; ?>
<?php do_action('graphene_footer'); ?>
</div><!-- #footer -->Also, make sure that you’re aware of the caveat of replacing any of the theme’s template files with your own:
http://docs.graphene-theme.com/Customisation_using_a_child_theme#Special_consideration
it worked perfectly thank you. and I read the link you gave me. ok I will not customize the template other then the footer since I want the updates. Thank you for your help
Viewing 2 posts - 11 through 12 (of 12 total)
- 1
- 2
- You must be logged in to reply to this topic.
