Skip to content

Instantly share code, notes, and snippets.

View Avesha-2016's full-sized avatar

Людмила Avesha-2016

View GitHub Profile
@Avesha-2016
Avesha-2016 / delete_padding_bootstrap_grid
Created March 7, 2018 12:37 — forked from mserikov/delete_padding_bootstrap_grid
Убрать отступы в колонках bootstrap (fullwidth)
//CSS
.no-gutter > [class*='col-'] {
padding-right:0;
padding-left:0;
}
//HTML
<div class="row no-gutter">
<div class="col-md-4">
...
@Avesha-2016
Avesha-2016 / functions.php
Created August 17, 2017 13:45 — forked from taninbkk/functions.php
Polylang Shortcode
// Polylang Shortcode - https://wordpress.org/plugins/polylang/
// Add this code in your functions.php
// Put shortcode [polylang] to post/page for display flags
function polylang_shortcode() {
ob_start();
pll_the_languages(array('show_flags'=>1,'show_names'=>0));
$flags = ob_get_clean();
return $flags;
}