Warning: This function has been deprecated. Use wp_dropdown_pages() instead.
bp_dtheme_wp_pages_filter( string $page_html )
In BuddyPress 1.2.x, this function filtered the dropdown on the Settings > Reading screen for selecting the page to show on front to include “Activity Stream.” As of 1.5.x, it is no longer required.
Description Description
See also See also
Parameters Parameters
- $page_html
-
(Required) A list of pages as a dropdown (select list)
Return Return
(string)
Source Source
File: bp-core/deprecated/1.5.php
function bp_dtheme_wp_pages_filter( $page_html ) { _deprecated_function( __FUNCTION__, '1.5', "No longer required." ); return $page_html; }
Changelog Changelog
Version | Description |
---|---|
1.5.0 | This function has been deprecated. Use wp_dropdown_pages() instead. |
1.2.0 | Introduced. |