Skip to:
Content

bbPress.org


Ignore:
Timestamp:
10/14/2010 02:37:34 AM (16 years ago)
Author:
johnjamesjacoby
Message:

Replace 'topic_reply' references with 'reply' (this includes the post_type ID)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-loader.php

    r2515 r2557  
    8989
    9090                // The default topic post type ID
    91                 if ( !defined( 'BBP_TOPIC_REPLY_POST_TYPE_ID' ) )
    92                         define( 'BBP_TOPIC_REPLY_POST_TYPE_ID', apply_filters( 'bbp_topic_reply_post_type_id', 'bbp_topic_reply' ) );
     91                if ( !defined( 'BBP_REPLY_POST_TYPE_ID' ) )
     92                        define( 'BBP_REPLY_POST_TYPE_ID', apply_filters( 'bbp_reply_post_type_id', 'bbp_reply' ) );
    9393
    9494                // The default topic post type ID
     
    333333
    334334                // Topic reply post type labels
    335                 $topic_reply_labels = array (
     335                $reply_labels = array (
    336336                        'name'                  => __( 'Replies', 'bbpress' ),
    337337                        'singular_name'         => __( 'Reply', 'bbpress' ),
     
    350350
    351351                // Topic post type rewrite
    352                 $topic_reply_rewrite = array (
    353                         'slug'              => BBP_REPLY_SLUG,
    354                         'with_front'        => false
     352                $reply_rewrite = array (
     353                        'slug'        => BBP_REPLY_SLUG,
     354                        'with_front'  => false
    355355                );
    356356
    357357                // Topic post type supports
    358                 $topic_reply_supports = array (
     358                $reply_supports = array (
    359359                        'title',
    360360                        'editor',
     
    365365                // Register topic reply post type
    366366                register_post_type (
    367                         BBP_TOPIC_REPLY_POST_TYPE_ID,
     367                        BBP_REPLY_POST_TYPE_ID,
    368368                        apply_filters( 'bbp_register_topic_reply_post_type',
    369369                                array (
    370                                         'labels'            => $topic_reply_labels,
    371                                         'rewrite'           => $topic_reply_rewrite,
    372                                         'supports'          => $topic_reply_supports,
     370                                        'labels'            => $reply_labels,
     371                                        'rewrite'           => $reply_rewrite,
     372                                        'supports'          => $reply_supports,
    373373                                        'menu_position'     => '100',
    374374                                        'public'            => true,
     
    376376                                        'can_export'        => true,
    377377                                        'capability_type'   => 'post',
    378                                         'hierarchical'      => false,
     378                                        'hierarchical'      => true,
    379379                                        'query_var'         => true,
    380380                                        'menu_icon'         => ''
Note: See TracChangeset for help on using the changeset viewer.