Add pluggable function wrappers to inc/setup.pphp
This commit is contained in:
parent
8da32c1a75
commit
b2e336e2e8
|
@ -11,7 +11,9 @@ if ( ! isset( $content_width ) ) {
|
||||||
$content_width = 640; /* pixels */
|
$content_width = 640; /* pixels */
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! function_exists( 'understrap_setup' ) ) :
|
add_action( 'after_setup_theme', 'understrap_setup' );
|
||||||
|
|
||||||
|
if ( ! function_exists ( 'understrap_setup' ) ) {
|
||||||
/**
|
/**
|
||||||
* Sets up theme defaults and registers support for various WordPress features.
|
* Sets up theme defaults and registers support for various WordPress features.
|
||||||
*
|
*
|
||||||
|
@ -91,8 +93,10 @@ if ( ! function_exists( 'understrap_setup' ) ) :
|
||||||
understrap_setup_theme_default_settings();
|
understrap_setup_theme_default_settings();
|
||||||
|
|
||||||
}
|
}
|
||||||
endif; // understrap_setup.
|
}
|
||||||
add_action( 'after_setup_theme', 'understrap_setup' );
|
|
||||||
|
|
||||||
|
add_filter( 'excerpt_more', 'understrap_custom_excerpt_more' );
|
||||||
|
|
||||||
if ( ! function_exists( 'understrap_custom_excerpt_more' ) ) {
|
if ( ! function_exists( 'understrap_custom_excerpt_more' ) ) {
|
||||||
/**
|
/**
|
||||||
|
@ -106,7 +110,8 @@ if ( ! function_exists( 'understrap_custom_excerpt_more' ) ) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
add_filter( 'excerpt_more', 'understrap_custom_excerpt_more' );
|
|
||||||
|
add_filter( 'wp_trim_excerpt', 'understrap_all_excerpts_get_more_link' );
|
||||||
|
|
||||||
if ( ! function_exists( 'understrap_all_excerpts_get_more_link' ) ) {
|
if ( ! function_exists( 'understrap_all_excerpts_get_more_link' ) ) {
|
||||||
/**
|
/**
|
||||||
|
@ -121,5 +126,4 @@ if ( ! function_exists( 'understrap_all_excerpts_get_more_link' ) ) {
|
||||||
return $post_excerpt . ' [...]<p><a class="btn btn-secondary understrap-read-more-link" href="' . esc_url( get_permalink( get_the_ID() )) . '">' . __( 'Read More...',
|
return $post_excerpt . ' [...]<p><a class="btn btn-secondary understrap-read-more-link" href="' . esc_url( get_permalink( get_the_ID() )) . '">' . __( 'Read More...',
|
||||||
'understrap' ) . '</a></p>';
|
'understrap' ) . '</a></p>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
add_filter( 'wp_trim_excerpt', 'understrap_all_excerpts_get_more_link' );
|
|
Reference in New Issue