Skip to content

Instantly share code, notes, and snippets.

@maksakoviliya
maksakoviliya / webdev_online_resources.md
Created July 20, 2018 14:57 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@maksakoviliya
maksakoviliya / button.sass
Created May 5, 2017 09:05 — forked from agragregra/button.sass
Button Sass Styles (Universal Starter)
.button
display: inline-block
border: none
color: #fff
text-decoration: none
background-color: $accent
padding: 15px 45px
font-size: 13px
text-transform: uppercase
font-weight: 600
@maksakoviliya
maksakoviliya / шаблон_вывода.php
Created September 7, 2016 11:45
Вывод поста
<?php $posts = get_posts( array(
'numberposts' => 5, // тоже самое что posts_per_page
'offset' => 0,
'category' => '8',
'orderby' => 'post_date',
'order' => 'DESC',
'include' => '',
'exclude' => '',
'meta_key' => '',
'meta_value' => '',
<?php if (have_posts()) : query_posts('p=id');
while(have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php if (has_post_thumbnail()): ?>
// ссылка на пост
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail(array(200, 200)); ?>
</a>
#loader {
background: none repeat scroll 0 0 #ffffff;
bottom: 0;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 9999;