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


Top ↑

Parameters Parameters

$page_html

(Required) A list of pages as a dropdown (select list)


Top ↑

Return Return

(string)


Top ↑

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;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.5.0 This function has been deprecated. Use wp_dropdown_pages() instead.
1.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.