acf_set_options_page_title()

Last updated Feb 17, 2022

Description

This function has been deprecated. Please use the acf/options_page/settings filter instead.

Modifies the default Options Page title, displayed when viewing the admin page.

Requirements

Parameters

acf_set_options_page_title( $title );
  • $title (string) (Required) The title for the default Options Page. Defaults to ‘Options’.

Example

This example demonstrates how to change the default Options Page title to ‘Theme Options’.

if( function_exists('acf_set_options_page_title') ) {
    acf_set_options_page_title( __('Theme Options') );
}
Supercharge Your Website With Premium Features Using ACF PRO

Speed up your workflow and unlock features to better develop websites using ACF Blocks and Options Pages, with the Flexible Content, Repeater, Clone, Gallery Fields & More.

Explore Features View Pricing

PRO Features
ACF Blocks
Options Pages
PRO Fields
Repeater
Flexible Content
Gallery
Clone

Related