Revert "improved readability of get_summary by using ternary operator"
Some checks failed
Some checks failed
This reverts commit 7c9424526d
.
This commit is contained in:
parent
7d979a1c5e
commit
228dba06ae
1 changed files with 7 additions and 3 deletions
|
@ -138,9 +138,13 @@ 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 {
|
||||||
$excerpt = $this->wp_object->post_excerpt
|
if ( $this->wp_object->excerpt ) {
|
||||||
?: get_post_meta( $this->wp_object->ID, 'event-summary', true )
|
$excerpt = $this->wp_object->post_excerpt;
|
||||||
?: $this->get_content();
|
} elseif ( get_post_meta( $this->wp_object->ID, 'event-summary', true ) ) {
|
||||||
|
$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