#Security
#Anti-Spam
#Performance
- WP Rocket (ab 29 Eur - Kaufempfehlung!)
- W3 Total Cache
#Security
#Anti-Spam
#Performance
.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% |
a.external { | |
content: " \f08e"; | |
font: normal normal normal 14px/1 FontAwesome; | |
} |
<?php | |
new theme_customizer(); | |
class theme_customizer { | |
public function __construct() { | |
add_action( 'customize_register', array(&$this, 'customize_linje' )); | |
} | |
/** | |
* Customizer manager demo |
<?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' ); | |
?> |