Making WordPress.org

Changeset 11241


Ignore:
Timestamp:
09/15/2021 08:36:17 PM (4 years ago)
Author:
coreymckrill
Message:

WordPress.org Learn: Sync with GitHub

https://github.com/WordPress/learn/compare/b786efa59c12a5bb4c987f84ba5fc56e9c776c8f...7b3890692153b1036440ed363fde3f3763d96b91

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-learn/inc/post-type.php

    r10992 r11241  
    116116    );
    117117
     118    $supports = array(
     119        'comments',
     120        'custom-fields',
     121        'editor',
     122        'excerpt',
     123        'revisions',
     124        'thumbnail',
     125        'title',
     126        'wporg-internal-notes',
     127    );
     128
    118129    $args = array(
    119130        'label'               => __( 'Workshop', 'wporg_learn' ),
    120131        'description'         => __( 'WordPress.org Training Workshop', 'wporg_learn' ),
    121132        'labels'              => $labels,
    122         'supports'            => array( 'title', 'editor', 'comments', 'revisions', 'custom-fields', 'thumbnail', 'excerpt' ),
     133        'supports'            => $supports,
    123134        'taxonomies'          => array( 'topic' ),
    124135        'hierarchical'        => true,
Note: See TracChangeset for help on using the changeset viewer.