Skip to content

Instantly share code, notes, and snippets.

View arkadiusjonczek's full-sized avatar
🏴‍☠️

Arkadius Jonczek arkadiusjonczek

🏴‍☠️
View GitHub Profile
@arkadiusjonczek
arkadiusjonczek / wp-config.php
Created September 6, 2015 22:06
WordPress Config - Debug Settings
// 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);
@arkadiusjonczek
arkadiusjonczek / functions.php
Created September 19, 2015 13:45
Really simple WordPress Filter Hook
add_filter('the_content', 'content_uppercase');
function content_uppercase($data) {
// return string as uppercase
return strtoupper($data);
}
@arkadiusjonczek
arkadiusjonczek / style.css
Created September 19, 2015 13:46
Simple CSS Style
p {
font-family: Arial;
font-size: 14pt;
}
@arkadiusjonczek
arkadiusjonczek / youtube.html
Created September 22, 2015 12:32
YouTube object snippet
<object width="640" height="360">
<param name="movie" value="http://www.youtube.com/embed/XX_ID_XX?html5=1&amp;rel=0&amp;hl=de_DE&amp;version=3&amp;controls=0&amp;showinfo=0&amp;VQ=HD720" <param="">
<param name="allowscriptaccess" value="no">
<embed width="640" height="360" src="http://www.youtube.com/embed/XX_ID_XX?html5=1&amp;rel=0&amp;hl=de_DE&amp;version=3&amp;controls=0&amp;showinfo=0&amp;VQ=HD720" class="youtube-player" type="text/html" allowscriptaccess="always" allowfullscreen="true">
</object>
@arkadiusjonczek
arkadiusjonczek / front-page.php
Created October 11, 2015 21:19
[WordPress] Add body class for front page
add_filter( 'body_class', 'altitude_body_class' );
function altitude_body_class( $classes ) {
$classes[] = 'front-page';
return $classes;
}
@arkadiusjonczek
arkadiusjonczek / functions.php
Created October 11, 2015 21:20
[WordPress] Remove Genesis header
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 );
@arkadiusjonczek
arkadiusjonczek / functions.php
Created October 11, 2015 21:20
[WordPress] Remove Genesis Loop
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' );
@arkadiusjonczek
arkadiusjonczek / style.css
Created November 3, 2015 09:13
CSS for sharp logo on all devices (Retina style)
.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) {
@arkadiusjonczek
arkadiusjonczek / index.html
Created November 11, 2015 10:40
Sample HTML5 file
<!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>
@arkadiusjonczek
arkadiusjonczek / functions.php
Created November 12, 2015 08:19
Genesis show featured image in single post
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' ) ) );