PK

ADDRLIN : /home/mannonia/www/wp-content/themes/mannoniavocat/
FLL :
Current File : /home/mannonia/www/wp-content/themes/mannoniavocat/functions.php_bak

<?php
/**
 * The7 theme.
 * @package The7
 * @since   1.0.0
 */

// File Security Check
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Set the content width based on the theme's design and stylesheet.
 * @since 1.0.0
 */
if ( ! isset( $content_width ) ) {
	$content_width = 1200; /* pixels */
}

/**
 * Initialize theme.
 * @since 1.0.0
 */
require( trailingslashit( get_template_directory() ) . 'inc/init.php' );




function laranz_change_h3( $custom_title ){
	$custom_title = str_replace( array( '<h1', '</h1' ), array( '<h3 style="color:#FF9E00;"', '</h3' ), $custom_title );
	return $custom_title;
}
add_filter("presscore_page_title", "laranz_change_h3");


PK 99