- autoclose-html
- autocomplete-wordpress-hooks
- editorconfig
- emmet
- file-icons
- fonts
- git-control
- highlight-line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$mycontent = $post->post_content; // wordpress users only | |
$word = str_word_count( strip_tags( $mycontent ) ); | |
$m = floor( $word / 200 ); | |
$s = floor( $word % 200 / ( 200 / 60 ) ); | |
$estS = $s . ' Sekunde' . ( $s == 1 ? '' : 'n' ); | |
$estMs = $m . ' Minute' . ( $m == 1 ? '' : 'n' ) . ', ' . $s . ' Sekunde' . ( $s == 1 ? '' : 'n' ); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
new theme_customizer(); | |
class theme_customizer { | |
public function __construct() { | |
add_action( 'customize_register', array(&$this, 'customize_linje' )); | |
} | |
/** | |
* Customizer manager demo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a.external { | |
content: " \f08e"; | |
font: normal normal normal 14px/1 FontAwesome; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pullquote | |
-moz-box-shadow: 0 1px 0 #eeeeee, inset 0 1px 0 #eeeeee | |
-webkit-box-shadow: 0 1px 0 #eeeeee, inset 0 1px 0 #eeeeee | |
box-shadow: 0 1px 0 #eeeeee, inset 0 1px 0 #eeeeee | |
color: #444 | |
border: 0 | |
padding: 1em 0 | |
margin: 1em 1.625em 1em 0 | |
text-align: right | |
width: 33% |
#Security
#Anti-Spam
#Performance
- WP Rocket (ab 29 Eur - Kaufempfehlung!)
- W3 Total Cache
#Music
#Sport
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Retina ready images | |
@mixin at2x($image_name, $w: auto, $h: auto, $extention: '.png') | |
background-image: url($image_name + $extention) | |
$x2img : $image_name + '@2x' + $extention | |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) | |
background-image: url($x2img) | |
-webkit-background-size: $w $h | |
-moz-background-size: $w $h | |
-o-background-size: $w $h |
NewerOlder