/ Published in: PHP
Expand |
Embed | Plain Text
<?php /** * The site footer. This file should not be loaded by itself, but should instead be included using get_template_part or locate_template. * Replacing this file in a child theme is the easiest and upgrade-safe way to "get rid of" the footer credits! * Users can override this in a child theme. * * @since 3.8.3 * @package Suffusion * @subpackage Custom */ $display = apply_filters('suffusion_can_display_site_footer', true); if (!$display) { return; } if ($suf_footer_layout_style != 'in-align') { ?> <div id='page-footer'> <div class='col-control'> <?php } ?> <div id="cred"> <table> <tr> <td class="cred-center"><?php $strip = stripslashes($suf_footer_center); $strip = wp_specialchars_decode($strip, ENT_QUOTES); echo do_shortcode($strip); ?></td> </tr> <tr> <td class="cred-left"><?php $strip = stripslashes($suf_footer_left); $strip = wp_specialchars_decode($strip, ENT_QUOTES); echo do_shortcode($strip); ?></td> </tr> </table> </div> <?php if ($suf_footer_layout_style != 'in-align') { ?> </div> </div> <?php } ?> <!-- <?php echo get_num_queries(); ?> queries, <?php suffusion_get_memory_usage(); ?> in <?php timer_stop(1); ?> seconds. -->
You need to login to post a comment.
