Add placeholder hooks.
This commit is contained in:
parent
cb959848b8
commit
18c41ca780
@ -513,8 +513,13 @@ function opalestate_get_image_placeholder( $size = '', $url = false ) {
|
||||
return '<img src="' . esc_url( $src ) . '" alt="' . sprintf( esc_html__( 'Placeholder %s', 'opalestate-pro' ), $size ) . '" />';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get image placeholder src.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function opalestate_get_image_placeholder_src() {
|
||||
return OPALESTATE_PLUGIN_URL . 'assets/images/placeholder.png';
|
||||
return apply_filters( 'opalestate_get_image_placeholder_src', OPALESTATE_PLUGIN_URL . 'assets/images/placeholder.png' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -20,11 +20,15 @@ function opalestate_property_mortgage() {
|
||||
|
||||
function opalestate_load_template_path( $tpl, $args = [], $layout = '' ) {
|
||||
return Opalestate_Template_Loader::get_template_part( $tpl, $args, $layout );
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Get image avatar placeholder src.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function opalestate_get_image_avatar_placehold() {
|
||||
return OPALESTATE_PLUGIN_URL . 'assets/images/avatar-placeholder.png';
|
||||
return apply_filters( 'opalestate_get_image_avatar_placeholder', OPALESTATE_PLUGIN_URL . 'assets/images/avatar-placeholder.png' );
|
||||
}
|
||||
|
||||
function opalestate_get_admin_view( $file ) {
|
||||
|
Loading…
Reference in New Issue
Block a user