Skip to content

Instantly share code, notes, and snippets.

View rodruiz's full-sized avatar

Rodolfo Ruiz rodruiz

View GitHub Profile
@rodruiz
rodruiz / 01-common-example.php
Last active August 3, 2018 21:42 — forked from westonruter/01-common-example.php
Temporarily disabling filters in WordPress
<?php // Common way to do it:
remove_filter( 'the_title', 'wptexturize' );
$title = get_the_title();
add_filter( 'the_title', 'wptexturize' );