Skip to content

Instantly share code, notes, and snippets.

@muks999
Forked from artikus11/functions.php
Created October 9, 2018 12:55
Show Gist options
  • Save muks999/a1b318dc664d91d76b5e4a91e1724ef9 to your computer and use it in GitHub Desktop.
Save muks999/a1b318dc664d91d76b5e4a91e1724ef9 to your computer and use it in GitHub Desktop.
Сообщение на сайте поверх всех элементов
/*=================================================================================
* Сообщения
*================================================================================= */
add_action( 'wp_head', 'artabr_notice_shop' );
function artabr_notice_shop() {
?>
<style>
.shop-notice {
position: fixed;
bottom: 0;
z-index: 10000;
background: red;
width: 100%;
text-align: center;
color: #fff;
/* height: 40px; */
margin-bottom: 0;
padding: 10px;
display: block;
}
</style>
<div class="shop-notice"><span class="notice">Магазин работает в режиме пуско-наладки. Для заказа <a
href="https://korolandia.space/kontakt/">свяжитесь с нами </a></span></div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment