Changeset 13468 for trunk/src/bp-core/classes/class-bp-component.php
- Timestamp:
- 05/03/2023 06:18:23 AM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/classes/class-bp-component.php
r13461 r13468 539 539 // compatibility; henceforth, plugins should register themselves by 540 540 // extending this base class. 541 add_action( 'bp_include', array( $this, 'includes' ), 8 );541 add_action( 'bp_include', array( $this, 'includes' ), 8 ); 542 542 543 543 // Load files conditionally, based on certain pages. 544 add_action( 'bp_late_include', array( $this, 'late_includes' ) );544 add_action( 'bp_late_include', array( $this, 'late_includes' ), 10 ); 545 545 546 546 // Generate navigation. 547 add_action( 'bp_ setup_nav', array( $this, 'register_nav' ), 7);547 add_action( 'bp_register_nav', array( $this, 'register_nav' ), 9 ); 548 548 549 549 // Setup navigation.
Note: See TracChangeset
for help on using the changeset viewer.