Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ohyeahdev/b61240388c1a149fd1c3b142c5e64805 to your computer and use it in GitHub Desktop.
Save ohyeahdev/b61240388c1a149fd1c3b142c5e64805 to your computer and use it in GitHub Desktop.
Crear una página de opciones en con Advanced Custom Fields Pro estableciendo el título de la página
<?php
/*
* Description: Código que crear una página de opciones. Establecer el título de la página de opciones a "Opciones Generales".
* Tested with: ACF Pro V5.7
* Author: @ohyeahdev
* Author URI: https://www.ohyeahdev.com
*/
if( function_exists('acf_add_options_page') ) {
acf_add_options_page('Opciones Generales');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment