This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: BP Example Block | |
| * Plugin URI: https://buddypress.org/ | |
| * Description: Example of BuddyPress block. | |
| * Author: The BuddyPress Community | |
| * Author URI: https://buddypress.org/ | |
| * Version: 1.0.0 | |
| * Text Domain: buddypress | |
| * Domain Path: /languages/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Registers a REST field for the Activity Endpoints. | |
| function example_register_activity_rest_field() { | |
| bp_rest_register_field( | |
| 'activity', // Id of the BuddyPress component the REST field is about | |
| 'example_field', // Used into the REST response/request | |
| array( | |
| 'get_callback' => 'example_get_rest_field_callback', // The function to use to get the value of the REST Field | |
| 'update_callback' => 'example_update_rest_field_callback', // The function to use to update the value of the REST Field |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Using WP Statuses for custom Post Types. | |
| * | |
| * @link http://github.com/imath/wp-statuses | |
| */ | |
| // Exit if accessed directly. | |
| defined( 'ABSPATH' ) || exit; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Exit if accessed directly | |
| defined( 'ABSPATH' ) || exit; | |
| /** | |
| * Référencer un Idea Meta ! | |
| */ | |
| function uana_custom_register_metas() { | |
| // A very simple way to add a custom field (for text field only) | |
| wp_idea_stream_ideas_register_meta( 'anonymous', array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * What is the wp-idea-stream-custom.php file ? | |
| * @see https://github.com/imath/wp-idea-stream/wiki/wp-idea-stream-custom.php | |
| */ | |
| function uana_map_to_editor( $caps, $cap, $user_id, $args ) { | |
| /** | |
| * Role > min cap. | |
| * editor > edit_pages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * For more infos about how to use the wp-idea-stream-custom.php file | |
| * @see https://github.com/imath/wp-idea-stream/wiki/wp-idea-stream-custom.php | |
| */ | |
| // Exit if accessed directly | |
| defined( 'ABSPATH' ) || exit; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @see https://codex.buddypress.org/themes/bp-custom-php/ | |
| * to learn more about the bp-custom.php file | |
| */ | |
| // Exit if accessed directly | |
| defined( 'ABSPATH' ) || exit; | |
| /** | |
| * Edit each fetched Buddydrive to include the file owner display name. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * 1st step: Just register a new sidebar. | |
| */ | |
| function twentyseventeen_child_register_sidebar() { | |
| register_sidebar( array( | |
| 'name' => __( 'Ideas', '2017-child' ), | |
| 'description' => __( 'Above the list of ideas', '2017-child' ), | |
| 'id' => 'ideas', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * WP Idea Stream Custom | |
| * | |
| * If i'm located in WP_PLUGIN_DIR, WP Idea Stream will load me. | |
| */ | |
| // Exit if accessed directly | |
| defined( 'ABSPATH' ) || exit; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Exit if accessed directly | |
| defined( 'ABSPATH' ) || exit; | |
| function georgio_idea_footer_actions( $footer = '' ) { | |
| if ( ! bp_is_group() ) { | |
| return $footer; | |
| } |