Git-flow fails with “fatal: no tag message? / Tagging failed. Please run finish again to retry”
particlebefore finish your release/hotfix branch add the tag manually git tag -a v0.1.2 -m “release_added”
before finish your release/hotfix branch add the tag manually git tag -a v0.1.2 -m “release_added”
// WP – Read more for page var $showMore = $(‘span[id*=”more-“]’); $showMore.html(“Lees meer “); var $showMoreNext = $showMore.parent().nextAll(); $showMoreNext.hide(); $showMore.on(‘click’, function() { $showMoreNext.toggle(“slow”); });
# Change to PHP version 5.6 AddHandler application/x-httpd-php56 .php .php7 .php5 .php4 .php3 SetHandler application/x-lsphp56 # EOF
ul li::before {content: “•”; color: @yellow;}
// load editor style direct as admin without caching add_action(‘admin_enqueue_scripts’, function(){ if(is_admin()){ – add_editor_style(get_template_directory_uri().’editor-style.css?1′); + add_editor_style(get_template_directory_uri().’/editor-style.css’); } });
/ of get_stylesheet_directory_uri als het een child is
‘@media only screen and (max-width: 600px) { body { background-color: lightblue; } }
// 15. asterix list // ————- @mixin loop-number { $star : ‘*’; @for $i from 1 through 10 { &:nth-child(#{$i}) { &:before { content: “#{$star}”; } } $star : $star + ‘*’; } } ul li { @include loop-number;}