improved readability of get_summary by using ternary operator
This commit is contained in:
parent
f99f009e2e
commit
7c9424526d
1 changed files with 3 additions and 7 deletions
|
@ -158,13 +158,9 @@ final class GatherPress extends Event {
|
||||||
* @return string $summary The custom event summary.
|
* @return string $summary The custom event summary.
|
||||||
*/
|
*/
|
||||||
public function get_summary(): string {
|
public function get_summary(): string {
|
||||||
if ( $this->wp_object->excerpt ) {
|
$excerpt = $this->wp_object->post_excerpt
|
||||||
$excerpt = $this->wp_object->post_excerpt;
|
?: get_post_meta( $this->wp_object->ID, 'event-summary', true )
|
||||||
} elseif ( get_post_meta( $this->wp_object->ID, 'event-summary', true ) ) {
|
?: $this->get_content();
|
||||||
$excerpt = get_post_meta( $this->wp_object->ID, 'event-summary', true );
|
|
||||||
} else {
|
|
||||||
$excerpt = $this->get_content();
|
|
||||||
}
|
|
||||||
|
|
||||||
$address = get_post_meta( $this->wp_object->ID, 'event-location', true );
|
$address = get_post_meta( $this->wp_object->ID, 'event-location', true );
|
||||||
$start_time = get_post_meta( $this->wp_object->ID, 'event-start-date', true );
|
$start_time = get_post_meta( $this->wp_object->ID, 'event-start-date', true );
|
||||||
|
|
Loading…
Reference in a new issue