Files
archived-comicpress/sidebar-right.php
Kniebremser 9a61003ec0 added escaping functions for output part 1
the first files have no WPCS messages more
2019-07-06 22:53:15 +02:00

43 lines
912 B
PHP

<?php
/**
* Notice for Sidebar rights
* by Philip M. Hofer (Frumph)
* http://frumph.net/
*
* Content for Notice for Sidebar rights
*
* @package Comicpress
*/
?>
<div id="sidebar-right">
<div class="sidebar">
<?php
do_action( 'comicpress-sidebar-right' );
if ( ! dynamic_sidebar( 'sidebar-right-sidebar' ) ) {
?>
<div class="sidebar-no-widgets">
<?php esc_html_e( 'There are currently no widgets assigned to the right-sidebar, place some!', 'comicpress' ); ?>
<br />
<br />
<?php esc_html_e( 'Once you add widgets to this sidebar, this default information will go away.', 'comicpress' ); ?>
<br />
<br />
<?php esc_html_e( 'Widgets can be added by going to your dashboard (wp-admin) &#10132; Appearance &#10132; Widgets, drag a widget you want to see into one of the appropriate sidebars.', 'comicpress' ); ?>
<br />
</div>
<?php
}
?>
</div>
</div>