bbp_get_admin_repair_tool_page_url( array $args = array() )

Return a URL to the repair tool page


Description Description


Parameters Parameters

$args

(Optional)

Default value: array()


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/admin/tools/common.php

function bbp_get_admin_repair_tool_page_url( $args = array() ) {

	// Parse arguments
	$r = wp_parse_args( $args, array(
		'page' => bbp_get_admin_repair_tool_page()
	) );

	return add_query_arg( $r, admin_url( 'tools.php' ) );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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