' . __( 'RSS', 'cakifo' ) . '';
echo '
';
}
/**
* @deprecated Cakifo 1.4.0
*/
function cakifo_topbar_search() {
_deprecated_function( __FUNCTION__, '1.4.0', 'get_search_form()' );
get_search_form();
}
/**
* @deprecated Cakifo 1.3.0 Use wp_trim_words() instead.
*/
function cakifo_the_excerpt( $length = 55, $echo = true ) {
_deprecated_function( __FUNCTION__, 'Cakifo 1.3.0', 'wp_trim_words()' );
$more_link = apply_filters( 'excerpt_more', '...' ) . '
' . __( 'Continue reading →', 'cakifo' ) . '';
if ( $echo )
echo wp_trim_words( get_the_excerpt(), $length, $more_link );
else
return wp_trim_words( get_the_excerpt(), $length, $more_link );
}