Skip to content

Instantly share code, notes, and snippets.

@webghostx
webghostx / wp-content-filter-anchor-heading.php
Last active July 22, 2020 19:22
In Überschriften automatisch id-Attribut setzten und Anker-Link einfügen
<?php
/**
* Wordpress Content Filter
* Automatisch html-Anker Elemente in Überschriften setzen
*
* Im ersten Abschnitt (edit bis /edit) können Einstellungen vorgenommen werden.
*
* @author usysto https://usysto.net/wordpress-content-filter-anker-links-in-ueberschriften-ohne-plugin
* @copyright free
*/
@Mihailoff
Mihailoff / AnObj.php
Created September 11, 2012 18:17
PHP Anonymous Object
<?php
/**
* PHP Anonymous Object
*/
class AnObj
{
protected $methods = array();
public function __construct(array $options)