bp_nouveau_document_hook( string $when = '', string $suffix = '' )
Fire specific hooks into the document entry template
Description
Parameters
- $when
-
(Optional) Either 'before' or 'after'.
Default value: ''
- $suffix
-
(Optional) Use it to add terms at the end of the hook name.
Default value: ''
Source
File: bp-templates/bp-nouveau/includes/document/template-tags.php
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | function bp_nouveau_document_hook( $when = '' , $suffix = '' ) { $hook = array ( 'bp' ); if ( $when ) { $hook [] = $when ; } // It's an media entry hook. $hook [] = 'document' ; if ( $suffix ) { $hook [] = $suffix ; } bp_nouveau_hook( $hook ); } |
Changelog
Version | Description |
---|---|
BuddyBoss 1.4.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.