Skip to content

Instantly share code, notes, and snippets.

@greghunt
greghunt / wp-non-orphaned-titles.php
Last active March 13, 2018 16:08
No WP orphans
<?php
function no_orphans( $title ) {
global $post;
if( $title == $post->post_title ){
//Take apart
$title_words = explode(' ', $title);
$tile_without_last_word = array_slice($title_words, 0, -1);
$last_word = array_slice($title_words, -1, 1);