Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #48166


Ignore:
Timestamp:
09/29/2019 10:34:04 AM (4 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #48166

    • Property Component changed from General to Posts, Post Types
  • Ticket #48166 – Description

    initial v1  
    88
    99Current:
     10{{{
    1011        public function register_taxonomies() {
    1112                foreach ( $this->taxonomies as $taxonomy ) {
     
    1314                }
    1415        }
    15 
     16}}}
    1617Proposed Fix:
     18{{{
    1719        public function register_taxonomies() {
    1820                if (!is_array($this->taxonomies)) { return; }
     
    2123                }
    2224        }
     25}}}