This file contains 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
// Enable WP_DEBUG mode | |
define('WP_DEBUG', true); | |
// Enable Debug logging to the /wp-content/debug.log file | |
define('WP_DEBUG_LOG', true); | |
// Disable display of errors and warnings | |
define('WP_DEBUG_DISPLAY', true); | |
@ini_set('display_errors',0); |
This file contains 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
add_filter('the_content', 'content_uppercase'); | |
function content_uppercase($data) { | |
// return string as uppercase | |
return strtoupper($data); | |
} |
This file contains 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
p { | |
font-family: Arial; | |
font-size: 14pt; | |
} |
This file contains 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
<object width="640" height="360"> | |
<param name="movie" value="http://www.youtube.com/embed/XX_ID_XX?html5=1&rel=0&hl=de_DE&version=3&controls=0&showinfo=0&VQ=HD720" <param=""> | |
<param name="allowscriptaccess" value="no"> | |
<embed width="640" height="360" src="http://www.youtube.com/embed/XX_ID_XX?html5=1&rel=0&hl=de_DE&version=3&controls=0&showinfo=0&VQ=HD720" class="youtube-player" type="text/html" allowscriptaccess="always" allowfullscreen="true"> | |
</object> |
This file contains 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
add_filter( 'body_class', 'altitude_body_class' ); | |
function altitude_body_class( $classes ) { | |
$classes[] = 'front-page'; | |
return $classes; | |
} |
This file contains 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
remove_action( 'genesis_header', 'genesis_header_markup_open', 5 ); | |
remove_action( 'genesis_header', 'genesis_do_header' ); | |
remove_action( 'genesis_header', 'genesis_header_markup_close', 15 ); |
This file contains 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
remove_action( 'genesis_before_loop', 'genesis_do_before_loop' ); | |
remove_action( 'genesis_loop', 'genesis_do_loop' ); | |
remove_action( 'genesis_after_loop', 'genesis_do_after_loop' ); |
This file contains 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
.header-image .site-title > a { | |
background: url(images/arkadius-jonczek-internetagentur-logo.png) no-repeat left; | |
background-size: contain; | |
float: left; | |
height: 25px; | |
width: 175px; | |
margin: 5px 20px; | |
} | |
@media all and (-webkit-min-device-pixel-ratio: 1.5) { |
This file contains 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
<!DOCTYPE html> | |
<html lang="de"> | |
<head> | |
<meta charset="utf-8"> | |
<title>aussagekräftiger Titel der Seite</title> | |
</head> | |
<body> | |
<!-- Sichtbarer Dokumentinhalt im body --> | |
<p>Sehen Sie sich den Quellcode dieser Seite an.</p> | |
</body> |
This file contains 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
add_action( 'genesis_entry_content', 'single_post_featured_image', 1 ); | |
function single_post_featured_image() { | |
if ( ! is_singular( 'post' ) ) | |
return; | |
$img = genesis_get_image( array( | |
'format' => 'html', | |
'size' => genesis_get_option( 'image_size' ), | |
'attr' => array( 'class' => 'post-image' ) ) ); | |