style guide fixes
Some checks failed
PHP Code Checker / PHP Code Checker (pull_request) Failing after 40s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m3s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m5s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m6s

This commit is contained in:
ruru4143 2024-09-30 19:07:05 +02:00
parent 66e06655c2
commit f5df3102ad

View file

@ -283,13 +283,12 @@ abstract class Event extends Post {
*
* @param string $template The template string.
* @param WP_Post|WP_Comment $wp_object The wp_object which was used to select the template.
*
*/
public static function remove_ap_permalink_from_template( $template, $wp_object ) {
// we could override the template here, to get out custom template from an option.
if ( $wp_object->post_type === "event" ) {
if ( 'event' === $wp_object->post_type ) {
$template = str_replace( '[ap_permalink]', '', $template );
$template = str_replace( '[ap_permalink type="html"]', '', $template );
}
@ -345,7 +344,7 @@ abstract class Event extends Post {
// * [ ] add organizer.
// * [ ] do add Cancelled reason in the content.
// return parent::get_content();
// return parent::get_content();?
return $this->wp_object->post_content;
}
}