Skip to content

Instantly share code, notes, and snippets.

View seoagentur-hamburg's full-sized avatar

Andreas Hecht seoagentur-hamburg

View GitHub Profile
@seoagentur-hamburg
seoagentur-hamburg / redirect-old-domain-to-new-domain.txt
Created April 13, 2015 12:07
301 Redirect von alter Domain auf eine neue Domain nach Domain-Umzug
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ http://example.net/$1 [L,R=301,NC]
@seoagentur-hamburg
seoagentur-hamburg / twenty-seventeen-editor-style.css
Created June 19, 2018 13:17
Das Editor-Style.css vom Twenty Seventeen Theme
/*
Theme Name: Twenty Seventeen
Description: Used to style the TinyMCE editor.
*/
/**
* Table of Contents:
*
* 1.0 - Body
@seoagentur-hamburg
seoagentur-hamburg / follow.html
Created May 10, 2018 18:02
Static Follow me Buttons
<div class="social-buttons">
<ul>
<li class="social-facebook"><a href="https://www.facebook.com/wphecht/" target="_blank" title="Folge mir auf Facebook" rel="nofollow"><i class="icon-facebook"></i></a></li>
<li class="social-twitter"><a href="https://twitter.com/andreashecht_hh" target="_blank" title="Folge mir auf Twitter" rel="nofollow"><i class="icon-twitter"></i></a></li>
<li class="social-linkedin"><a href="https://www.linkedin.com/in/andreas-hecht-492b9a54" target="_blank" title="Folge mir auf LinkedIn" rel="nofollow"><i class="icon-linkedin"></i></a></li>
<li class="social-github"><a href="https://github.com/hechtmediaarts" target="_blank" title="Folge mir auf Github" rel="nofollow"><i class="icon-github"></i></a></li>
<li class="social-rss"><a href="https://andreas-hecht.com/feed/" target="_blank" title="Abonniere meinen RSS-feed"><i class="icon-rss"></i></a></li>
</ul>
@seoagentur-hamburg
seoagentur-hamburg / sharebar.php
Created May 10, 2018 18:00
Sticky Sharebar with static links
<?php
if ( ! function_exists( 'ah_sticky_sharebar' ) ) :
/**
* Statische Share-Buttons für die einzelnen Artikel - Facebook, Twitter, Google + und Xing.
*
* @uses Hook "evolution_after_thumbnail()"
*/
function ah_sticky_sharebar() {
@seoagentur-hamburg
seoagentur-hamburg / 410-Gone
Created January 14, 2018 16:28
Beispiel eines 410-Gone Headers für die .htaccess.
ErrorDocument 410 /error/410.php
Redirect Gone /embed-code/index/find?placementVersionId=2287238314152891321572872
@seoagentur-hamburg
seoagentur-hamburg / .htaccess-redirect
Created January 14, 2018 16:24
Beispiel einer 301-Weiterleitung von einer alten auf eine neue Artikel-URL
RewriteEngine On
Redirect 301 /dein-alter-artikel/ https://www.deinewebsite.de/dein-neuer-artikel/
/* =Blog-Navigation - Pagination
----------------------------------------------- */
nav.pagination {
position: relative;
display: block;
}
.nav-links {
position: relative;
@seoagentur-hamburg
seoagentur-hamburg / sanitization.php
Created July 20, 2017 18:06
Sanitization Callbacks for the WP Customizer
<?php
/**
* Customizer: Sanitization Callbacks
*
* This file demonstrates how to define sanitization callback functions for various data types.
*
* @package code-examples
* @copyright Copyright (c) 2015, WordPress Theme Review Team
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License, v2 (or newer)
*/
[Roter-Button url="https://andreas-hecht.com/" text="Ein cooler Button" klasse="nomargins"]
@seoagentur-hamburg
seoagentur-hamburg / .htaccess
Last active May 3, 2017 12:03
Original .htaccess / DP
# ----------------------------------------------------------------------
# webP Grafiken statt jpgs verwenden
# ----------------------------------------------------------------------
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_ACCEPT} image/webp
RewriteCond %{DOCUMENT_ROOT}/$1.webp -f
RewriteRule ^(wp-content/uploads.+)\.(jpe?g|png)$ $1.webp [T=image/webp,E=accept:1]
</IfModule>