Read more »';
}
}
if( ! function_exists( 'abaris_excerpt_length' )) {
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 $abaris;
if( isset( $abaris['custom-css'] ) ) {
$custom_css = '';
echo $custom_css;
}
}
add_action( 'wp_footer', 'abaris_custom_js', 99 );
function abaris_custom_js() {
global $abaris;
if( isset( $abaris['custom-js'] ) ) {
$custom_js = '';
echo $custom_js;
}
}