Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* CMB Theme Options
* @version 0.1.0
*/
class Theme_options_admin {
/**
* Option key, and option page slug
* @var string
private function linkify($status_text){
// linkify URLs
$status_text = preg_replace(
'/(https?:\/\/\S+)/',
'<a href="\1">\1</a>',
$status_text
);
// linkify twitter users
$status_text = preg_replace(