Changeset 3459575
- Timestamp:
- 02/12/2026 06:47:05 AM (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
squirrly-seo/tags/12.4.15/models/domain/Patterns.php
r3435711 r3459575 22 22 23 23 public function getDate() { 24 if ( $this->_currentpost->post_date ) {24 if ( isset($this->_currentpost->post_date) && $this->_currentpost->post_date ) { 25 25 return wp_date( 'c', strtotime( $this->_currentpost->post_date ) ); 26 26 } elseif ( $this->_date ) { … … 514 514 515 515 public function getModified() { 516 if ( $this->_currentpost->post_modified ) {516 if ( isset( $this->_currentpost->post_modified ) && $this->_currentpost->post_modified ) { 517 517 return wp_date( 'c', strtotime( $this->_currentpost->post_modified ) ); 518 518 } elseif ( $this->_modified ) {
Note: See TracChangeset
for help on using the changeset viewer.