wpsc_render_footer()
Render common footer
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_render_footer();
wpsc_render_footer() wpsc render footer code WPSCache 3.1.1
<?php
function wpsc_render_footer() {
?>
<div class="footer">
<div class="wp-super-cache-version">
<img class="wpsc-icon" src="<?php echo esc_url( plugin_dir_url( __FILE__ ) . '/assets/super-cache-icon.png' ); ?>" />
<span class="wpsc-name"><?php echo esc_html( 'WP Super Cache' ); ?></span>
</div>
<div class="automattic-airline">
<img class="wpsc-icon" src="<?php echo esc_url( plugin_dir_url( __FILE__ ) . '/assets/automattic-airline.svg' ); ?>" />
</div>
</div>
<?php
}