Read more »';
}
function abaris_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'abaris_excerpt_length', 999 );
add_action( 'wp_head', 'abaris_custom_css' );
function abaris_custom_css() {
global $urvr;
if( isset( $urvr['custom-css'] ) ) {
$custom_css = '';
echo $custom_css;
}
}
add_action( 'wp_footer', 'abaris_custom_js', 99 );
function abaris_custom_js() {
global $urvr;
if( isset( $urvr['custom-js'] ) ) {
$custom_js = '';
echo $custom_js;
}
}
global $urvr;
if( isset( $urvr['analytics-place'] ) && $urvr['analytics-place'] == 1 ) {
add_action( 'wp_footer', 'abaris_add_analytics' );
} else {
add_action( 'wp_head', 'abaris_add_analytics' );
}
function abaris_add_analytics() {
global $urvr;
if( isset( $urvr['google-analytics'] ) ) {
$ga = "";
echo $ga;
}
}