Update
This commit is contained in:
parent
d12ef914b3
commit
c93c699a77
@ -19,26 +19,32 @@ switch ( $type ) {
|
||||
case 'agent' :
|
||||
$agent_id = $property->get_metabox_value( 'agent' );
|
||||
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box',
|
||||
array( 'author' => $data,
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box', [
|
||||
'author' => $data,
|
||||
'id' => $agent_id,
|
||||
'prefix' => OPALESTATE_AGENT_PREFIX,
|
||||
'picture' => '',
|
||||
'type' => 'agent',
|
||||
'hide_description' => true ) );
|
||||
'hide_description' => true,
|
||||
] );
|
||||
break;
|
||||
case 'agency' :
|
||||
$agency_id = $property->get_metabox_value( 'agency' );
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box',
|
||||
array( 'author' => $data,
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box', [
|
||||
'author' => $data,
|
||||
'id' => $agency_id,
|
||||
'picture' => '',
|
||||
'type' => 'agency',
|
||||
'hide_description' => true ) );
|
||||
'hide_description' => true,
|
||||
] );
|
||||
break;
|
||||
default:
|
||||
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-user-box', array('author' => $data , 'hide_description' => true ), $layout );
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-user-box', [
|
||||
'author' => $data,
|
||||
'hide_description' => true,
|
||||
],
|
||||
$layout
|
||||
);
|
||||
|
||||
break;
|
||||
}
|
||||
|
@ -14,8 +14,7 @@ switch ( $type ) {
|
||||
case 'agent' :
|
||||
$agent_id = $property->get_metabox_value( 'agent' );
|
||||
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box',
|
||||
[
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box', [
|
||||
'author' => $data,
|
||||
'id' => $agent_id,
|
||||
'prefix' => OPALESTATE_AGENT_PREFIX,
|
||||
@ -26,8 +25,7 @@ switch ( $type ) {
|
||||
break;
|
||||
case 'agency' :
|
||||
$agency_id = $property->get_metabox_value( 'agency' );
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box',
|
||||
[
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box', [
|
||||
'author' => $data,
|
||||
'id' => $agency_id,
|
||||
'picture' => '',
|
||||
@ -36,8 +34,12 @@ switch ( $type ) {
|
||||
] );
|
||||
break;
|
||||
default:
|
||||
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-user-box', [ 'author' => $data, 'hide_description' => true ], $layout );
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-user-box', [
|
||||
'author' => $data,
|
||||
'hide_description' => true,
|
||||
],
|
||||
$layout
|
||||
);
|
||||
|
||||
break;
|
||||
}
|
||||
|
@ -14,8 +14,7 @@ switch ( $type ) {
|
||||
case 'agent' :
|
||||
$agent_id = $property->get_metabox_value( 'agent' );
|
||||
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box',
|
||||
[
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box', [
|
||||
'author' => $data,
|
||||
'id' => $agent_id,
|
||||
'prefix' => OPALESTATE_AGENT_PREFIX,
|
||||
@ -26,8 +25,7 @@ switch ( $type ) {
|
||||
break;
|
||||
case 'agency' :
|
||||
$agency_id = $property->get_metabox_value( 'agency' );
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box',
|
||||
[
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-member-box', [
|
||||
'author' => $data,
|
||||
'id' => $agency_id,
|
||||
'picture' => '',
|
||||
@ -36,8 +34,12 @@ switch ( $type ) {
|
||||
] );
|
||||
break;
|
||||
default:
|
||||
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-user-box', [ 'author' => $data, 'hide_description' => true ], $layout );
|
||||
$author_info = opalestate_load_template_path( 'single-property/user/author-user-box', [
|
||||
'author' => $data,
|
||||
'hide_description' => true,
|
||||
],
|
||||
$layout
|
||||
);
|
||||
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user