diff --git a/docs/bin/generate-manifest.php b/docs/bin/generate-manifest.php index 74e39476..4a23ee4f 100644 --- a/docs/bin/generate-manifest.php +++ b/docs/bin/generate-manifest.php @@ -118,6 +118,42 @@ } } +/** + * Sort entries hierarchically - null parents first, then by depth. + * + * @param array $manifest The manifest to sort. + * @return array Sorted manifest. + */ +function sort_manifest_hierarchically( $manifest ) { + // First, group by depth + $grouped = array(); + foreach ( $manifest as $key => $entry ) { + $depth = substr_count( $key, '/' ); + if ( ! isset( $grouped[ $depth ] ) ) { + $grouped[ $depth ] = array(); + } + $grouped[ $depth ][ $key ] = $entry; + } + + // Sort depths + ksort( $grouped ); + + // Merge back maintaining order + $sorted = array(); + foreach ( $grouped as $depth => $entries ) { + // Sort entries within each depth + ksort( $entries ); + foreach ( $entries as $key => $entry ) { + $sorted[ $key ] = $entry; + } + } + + return $sorted; +} + +// Before writing the manifest, sort it hierarchically +$manifest = sort_manifest_hierarchically( $manifest ); + file_put_contents( $root . '/bin/manifest.json', json_encode( (object) $manifest, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES ) ); $count = count( $manifest ); diff --git a/docs/bin/generate-parsed-md.php b/docs/bin/generate-parsed-md.php index 0312d5dd..c080f0b3 100644 --- a/docs/bin/generate-parsed-md.php +++ b/docs/bin/generate-parsed-md.php @@ -23,7 +23,7 @@ class DocGenerator { /** * PHP Parser instance. * - * @var ParserFactory + * @var \PhpParser\Parser */ private $parser; @@ -96,7 +96,8 @@ class DocGenerator { * @param string $output_dir Directory where documentation will be generated. */ public function __construct( $output_dir ) { - $this->parser = ( new ParserFactory() )->create( ParserFactory::PREFER_PHP7 ); + $parser_factory = new ParserFactory(); + $this->parser = $parser_factory->create( ParserFactory::PREFER_PHP7 ); $this->traverser = new NodeTraverser(); $this->traverser->addVisitor( new NameResolver() ); $this->output_dir = rtrim( $output_dir, '/' ); @@ -415,13 +416,16 @@ private function generate_index_files() { if ( '' === $dir ) { $index_content = '# Code Reference' . "\n\n"; } else { - $index_content = '#' . ( '.' === $dir ? ' Code Reference' : ' ' . ucwords( str_replace( '/', ' ', $dir ) ) ) . "\n\n"; + // Format directory name for title + $dir_title = $this->format_directory_title( $dir ); + $index_content = '# ' . $dir_title . "\n\n"; } + $index_content .= '## Files' . "\n\n"; foreach ( $files as $file ) { $basename = basename( $file, '.md' ); - $title = ucwords( str_replace( '-', ' ', $basename ) ); + $title = $this->format_file_title( $basename ); $index_content .= '- [' . $title . '](' . $basename . ')' . "\n"; } @@ -438,6 +442,49 @@ private function generate_index_files() { } } + /** + * Format directory title with special cases. + * + * @param string $dir Directory name. + * @return string Formatted title. + */ + private function format_directory_title( $dir ) { + if ( 'rest-api' === $dir ) { + return 'REST API'; + } + return '.' === $dir ? 'Code Reference' : ucwords( str_replace( '/', ' ', $dir ) ); + } + + /** + * Format file title with special cases. + * + * @param string $basename File basename. + * @return string Formatted title. + */ + private function format_file_title( $basename ) { + // Replace common patterns + $title = str_replace( + array( + 'rest-api', + 'acf-rest-api', + 'class-acf-rest', + '-file', + ), + array( + 'REST API', + 'ACF REST API', + 'Class ACF REST', + '', + ), + $basename + ); + + // Convert to title case and handle special words + $title = ucwords( str_replace( '-', ' ', $title ) ); + + return $title; + } + /** * Generate the META.md file containing undocumented elements and duplicate hooks. */ @@ -611,7 +658,7 @@ private function save_markdown( $file, $docs ) { mkdir( $output_dir, 0755, true ); } - $markdown = $this->generate_markdown( $docs ); + $markdown = $this->generate_markdown( $docs, $relative_path ); file_put_contents( $output_path, $markdown ); // Track files by directory for index generation @@ -626,15 +673,23 @@ private function save_markdown( $file, $docs ) { /** * Generate markdown content from documentation array. * - * @param array $docs Documentation organized by type. + * @param array $docs Documentation organized by type. + * @param string $source_path The relative path to the source file. * @return string Generated markdown content. */ - private function generate_markdown( $docs ) { + private function generate_markdown( $docs, $source_path ) { $markdown = ''; // Generate standalone functions documentation if ( ! empty( $docs['functions'] ) ) { - $markdown .= '# Global Functions' . "\n\n"; + // Convert file path to title + // e.g., "api/api-helpers.php" becomes "API Helpers" + $file_title = basename( $source_path, self::PHP_EXT ); + $file_title = str_replace( '-', ' ', $file_title ); + $file_title = ucwords( $file_title ); + // Special handling for "api" to become "API" + $file_title = preg_replace( '/\b[Aa]pi\b/', 'API', $file_title ); + $markdown .= $this->format_title( $file_title . ' Global Functions' ) . "\n\n"; foreach ( $docs['functions'] as $name => $doc ) { $markdown .= '## `' . $name . '()`' . "\n\n"; $markdown .= trim( $doc ) . "\n\n\n"; // Add extra newline after each function @@ -642,8 +697,9 @@ private function generate_markdown( $docs ) { $markdown .= "---\n\n"; } + // Handle class documentation (unchanged) if ( isset( $docs['class'] ) ) { - $markdown .= '# ' . $docs['class']['name'] . "\n\n"; + $markdown .= $this->format_title( $docs['class']['name'] ) . "\n\n"; $markdown .= trim( $docs['class']['doc'] ) . "\n\n"; // Add properties section @@ -668,6 +724,18 @@ private function generate_markdown( $docs ) { $markdown = rtrim( rtrim( $markdown ), "\n" ) . "\n"; return $markdown; } + + /** + * Format a title for markdown documentation. + * + * @param string $title The title to format. + * @return string Formatted title. + */ + private function format_title( $title ) { + // Convert "Api" or "api" to "API" + $title = preg_replace( '/\b[Aa]pi\b/', 'API', $title ); + return '# ' . $title; + } } // Parse command line arguments diff --git a/docs/bin/manifest.json b/docs/bin/manifest.json index 63ea3977..ad2f1527 100644 --- a/docs/bin/manifest.json +++ b/docs/bin/manifest.json @@ -1,4 +1,34 @@ { + "code-reference": { + "slug": "code-reference", + "parent": null, + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/index.md" + }, + "concepts": { + "slug": "concepts", + "parent": null, + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/concepts/index.md" + }, + "contributing": { + "slug": "contributing", + "parent": null, + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/contributing/index.md" + }, + "features": { + "slug": "features", + "parent": null, + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/index.md" + }, + "getting-started": { + "slug": "getting-started", + "parent": null, + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/getting-started/index.md" + }, + "tutorials": { + "slug": "tutorials", + "parent": null, + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/tutorials/index.md" + }, "welcome": { "slug": "welcome", "parent": null, @@ -84,6 +114,16 @@ "parent": "code-reference", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/acf-wp-functions-file.md" }, + "code-reference/admin": { + "slug": "admin", + "parent": "code-reference", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/admin/index.md" + }, + "code-reference/api": { + "slug": "api", + "parent": "code-reference", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/api/index.md" + }, "code-reference/assets-file": { "slug": "assets-file", "parent": "code-reference", @@ -104,15 +144,25 @@ "parent": "code-reference", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/deprecated-file.md" }, + "code-reference/fields": { + "slug": "fields", + "parent": "code-reference", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/fields/index.md" + }, "code-reference/fields-file": { "slug": "fields-file", "parent": "code-reference", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/fields-file.md" }, - "code-reference": { - "slug": "code-reference", - "parent": null, - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/index.md" + "code-reference/forms": { + "slug": "forms", + "parent": "code-reference", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/forms/index.md" + }, + "code-reference/hooks": { + "slug": "hooks", + "parent": "code-reference", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/hooks/index.md" }, "code-reference/l10n-file": { "slug": "l10n-file", @@ -144,6 +194,11 @@ "parent": "code-reference", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/loop-file.md" }, + "code-reference/rest-api": { + "slug": "rest-api", + "parent": "code-reference", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/rest-api/index.md" + }, "code-reference/revisions-file": { "slug": "revisions-file", "parent": "code-reference", @@ -169,11 +224,6 @@ "parent": "concepts", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/concepts/architecture.md" }, - "concepts": { - "slug": "concepts", - "parent": null, - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/concepts/index.md" - }, "concepts/security": { "slug": "security", "parent": "concepts", @@ -184,15 +234,10 @@ "parent": "contributing", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/contributing/documentation.md" }, - "contributing": { - "slug": "contributing", - "parent": null, - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/contributing/index.md" - }, - "features": { - "slug": "features", - "parent": null, - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/index.md" + "features/field": { + "slug": "field", + "parent": "features", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/index.md" }, "features/post-types": { "slug": "post-types", @@ -204,11 +249,6 @@ "parent": "features", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/scf-api.md" }, - "getting-started": { - "slug": "getting-started", - "parent": null, - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/getting-started/index.md" - }, "getting-started/installation": { "slug": "installation", "parent": "getting-started", @@ -224,11 +264,6 @@ "parent": "tutorials", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/tutorials/first-post-type.md" }, - "tutorials": { - "slug": "tutorials", - "parent": null, - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/tutorials/index.md" - }, "code-reference/admin/admin-notices-file": { "slug": "admin-notices-file", "parent": "admin", @@ -239,11 +274,6 @@ "parent": "admin", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/admin/admin-tools-file.md" }, - "code-reference/admin": { - "slug": "admin", - "parent": "code-reference", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/admin/index.md" - }, "code-reference/api/api-helpers-file": { "slug": "api-helpers-file", "parent": "api", @@ -259,36 +289,16 @@ "parent": "api", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/api/api-term-file.md" }, - "code-reference/api": { - "slug": "api", - "parent": "code-reference", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/api/index.md" - }, "code-reference/fields/class-acf-repeater-table-file": { "slug": "class-acf-repeater-table-file", "parent": "fields", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/fields/class-acf-repeater-table-file.md" }, - "code-reference/fields": { - "slug": "fields", - "parent": "code-reference", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/fields/index.md" - }, "code-reference/forms/form-front-file": { "slug": "form-front-file", "parent": "forms", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/forms/form-front-file.md" }, - "code-reference/forms": { - "slug": "forms", - "parent": "code-reference", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/forms/index.md" - }, - "code-reference/hooks": { - "slug": "hooks", - "parent": "code-reference", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/hooks/index.md" - }, "code-reference/rest-api/acf-rest-api-functions-file": { "slug": "acf-rest-api-functions-file", "parent": "rest-api", @@ -309,371 +319,361 @@ "parent": "rest-api", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/rest-api/class-acf-rest-request-file.md" }, - "code-reference/rest-api": { - "slug": "rest-api", - "parent": "code-reference", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/code-reference/rest-api/index.md" - }, - "features/field": { - "slug": "field", - "parent": "features", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/index.md" - }, "features/field/accordion": { "slug": "accordion", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/accordion/index.md" }, - "features/field/accordion/tutorial": { - "slug": "accordion-tutorial", - "parent": "accordion", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/accordion/tutorial.md" - }, "features/field/button-group": { "slug": "button-group", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/button-group/index.md" }, - "features/field/button-group/tutorial": { - "slug": "button-group-tutorial", - "parent": "button-group", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/button-group/tutorial.md" - }, "features/field/checkbox": { "slug": "checkbox", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/checkbox/index.md" }, - "features/field/checkbox/tutorial": { - "slug": "checkbox-tutorial", - "parent": "checkbox", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/checkbox/tutorial.md" - }, "features/field/clone": { "slug": "clone", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/clone/index.md" }, - "features/field/clone/tutorial": { - "slug": "clone-tutorial", - "parent": "clone", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/clone/tutorial.md" - }, "features/field/color-picker": { "slug": "color-picker", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/color-picker/index.md" }, - "features/field/color-picker/tutorial": { - "slug": "color-picker-tutorial", - "parent": "color-picker", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/color-picker/tutorial.md" - }, "features/field/date-picker": { "slug": "date-picker", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/date-picker/index.md" }, - "features/field/date-picker/tutorial": { - "slug": "date-picker-tutorial", - "parent": "date-picker", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/date-picker/tutorial.md" - }, "features/field/date-time-picker": { "slug": "date-time-picker", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/date-time-picker/index.md" }, - "features/field/date-time-picker/tutorial": { - "slug": "date-time-picker-tutorial", - "parent": "date-time-picker", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/date-time-picker/tutorial.md" - }, "features/field/email": { "slug": "email", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/email/index.md" }, - "features/field/email/tutorial": { - "slug": "email-tutorial", - "parent": "email", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/email/tutorial.md" - }, "features/field/file": { "slug": "file", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/file/index.md" }, - "features/field/file/tutorial": { - "slug": "file-tutorial", - "parent": "file", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/file/tutorial.md" - }, "features/field/flexible-content": { "slug": "flexible-content", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/flexible-content/index.md" }, - "features/field/flexible-content/tutorial": { - "slug": "flexible-content-tutorial", - "parent": "flexible-content", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/flexible-content/tutorial.md" - }, "features/field/gallery": { "slug": "gallery", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/gallery/index.md" }, - "features/field/gallery/tutorial": { - "slug": "gallery-tutorial", - "parent": "gallery", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/gallery/tutorial.md" - }, "features/field/google-map": { "slug": "google-map", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/google-map/index.md" }, - "features/field/google-map/tutorial": { - "slug": "google-map-tutorial", - "parent": "google-map", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/google-map/tutorial.md" - }, "features/field/group": { "slug": "group", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/group/index.md" }, - "features/field/group/tutorial": { - "slug": "group-tutorial", - "parent": "group", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/group/tutorial.md" - }, "features/field/icon-picker": { "slug": "icon-picker", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/icon-picker/index.md" }, - "features/field/icon-picker/tutorial": { - "slug": "icon-picker-tutorial", - "parent": "icon-picker", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/icon-picker/tutorial.md" - }, "features/field/image": { "slug": "image", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/image/index.md" }, - "features/field/image/tutorial": { - "slug": "image-tutorial", - "parent": "image", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/image/tutorial.md" - }, "features/field/link": { "slug": "link", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/link/index.md" }, - "features/field/link/tutorial": { - "slug": "link-tutorial", - "parent": "link", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/link/tutorial.md" - }, "features/field/message": { "slug": "message", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/message/index.md" }, - "features/field/message/tutorial": { - "slug": "message-tutorial", - "parent": "message", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/message/tutorial.md" - }, "features/field/number": { "slug": "number", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/number/index.md" }, - "features/field/number/tutorial": { - "slug": "number-tutorial", - "parent": "number", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/number/tutorial.md" - }, "features/field/oembed": { "slug": "oembed", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/oembed/index.md" }, - "features/field/oembed/tutorial": { - "slug": "oembed-tutorial", - "parent": "oembed", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/oembed/tutorial.md" - }, "features/field/page-link": { "slug": "page-link", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/page-link/index.md" }, - "features/field/page-link/tutorial": { - "slug": "page-link-tutorial", - "parent": "page-link", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/page-link/tutorial.md" - }, "features/field/password": { "slug": "password", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/password/index.md" }, - "features/field/password/tutorial": { - "slug": "password-tutorial", - "parent": "password", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/password/tutorial.md" - }, "features/field/post-object": { "slug": "post-object", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/post-object/index.md" }, - "features/field/post-object/tutorial": { - "slug": "post-object-tutorial", - "parent": "post-object", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/post-object/tutorial.md" - }, "features/field/radio": { "slug": "radio", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/radio/index.md" }, - "features/field/radio/tutorial": { - "slug": "radio-tutorial", - "parent": "radio", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/radio/tutorial.md" - }, "features/field/range": { "slug": "range", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/range/index.md" }, - "features/field/range/tutorial": { - "slug": "range-tutorial", - "parent": "range", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/range/tutorial.md" - }, "features/field/repeater": { "slug": "repeater", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/repeater/index.md" }, - "features/field/repeater/tutorial": { - "slug": "repeater-tutorial", - "parent": "repeater", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/repeater/tutorial.md" - }, "features/field/select": { "slug": "select", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/select/index.md" }, - "features/field/select/tutorial": { - "slug": "select-tutorial", - "parent": "select", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/select/tutorial.md" - }, "features/field/separator": { "slug": "separator", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/separator/index.md" }, - "features/field/separator/tutorial": { - "slug": "separator-tutorial", - "parent": "separator", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/separator/tutorial.md" - }, "features/field/tab": { "slug": "tab", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/tab/index.md" }, - "features/field/tab/tutorial": { - "slug": "tab-tutorial", - "parent": "tab", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/tab/tutorial.md" - }, "features/field/taxonomy": { "slug": "taxonomy", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/taxonomy/index.md" }, - "features/field/taxonomy/tutorial": { - "slug": "taxonomy-tutorial", - "parent": "taxonomy", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/taxonomy/tutorial.md" - }, "features/field/text": { "slug": "text", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/text/index.md" }, - "features/field/text/tutorial": { - "slug": "text-tutorial", - "parent": "text", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/text/tutorial.md" - }, "features/field/textarea": { "slug": "textarea", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/textarea/index.md" }, - "features/field/textarea/tutorial": { - "slug": "textarea-tutorial", - "parent": "textarea", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/textarea/tutorial.md" - }, "features/field/time-picker": { "slug": "time-picker", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/time-picker/index.md" }, - "features/field/time-picker/tutorial": { - "slug": "time-picker-tutorial", - "parent": "time-picker", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/time-picker/tutorial.md" - }, "features/field/true-false": { "slug": "true-false", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/true-false/index.md" }, - "features/field/true-false/tutorial": { - "slug": "true-false-tutorial", - "parent": "true-false", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/true-false/tutorial.md" - }, "features/field/url": { "slug": "url", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/url/index.md" }, - "features/field/url/tutorial": { - "slug": "url-tutorial", - "parent": "url", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/url/tutorial.md" - }, "features/field/user": { "slug": "user", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/user/index.md" }, - "features/field/user/tutorial": { - "slug": "user-tutorial", - "parent": "user", - "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/user/tutorial.md" - }, "features/field/wysiwyg": { "slug": "wysiwyg", "parent": "field", "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/wysiwyg/index.md" }, + "features/field/accordion/tutorial": { + "slug": "accordion-tutorial", + "parent": "accordion", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/accordion/tutorial.md" + }, + "features/field/button-group/tutorial": { + "slug": "button-group-tutorial", + "parent": "button-group", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/button-group/tutorial.md" + }, + "features/field/checkbox/tutorial": { + "slug": "checkbox-tutorial", + "parent": "checkbox", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/checkbox/tutorial.md" + }, + "features/field/clone/tutorial": { + "slug": "clone-tutorial", + "parent": "clone", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/clone/tutorial.md" + }, + "features/field/color-picker/tutorial": { + "slug": "color-picker-tutorial", + "parent": "color-picker", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/color-picker/tutorial.md" + }, + "features/field/date-picker/tutorial": { + "slug": "date-picker-tutorial", + "parent": "date-picker", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/date-picker/tutorial.md" + }, + "features/field/date-time-picker/tutorial": { + "slug": "date-time-picker-tutorial", + "parent": "date-time-picker", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/date-time-picker/tutorial.md" + }, + "features/field/email/tutorial": { + "slug": "email-tutorial", + "parent": "email", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/email/tutorial.md" + }, + "features/field/file/tutorial": { + "slug": "file-tutorial", + "parent": "file", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/file/tutorial.md" + }, + "features/field/flexible-content/tutorial": { + "slug": "flexible-content-tutorial", + "parent": "flexible-content", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/flexible-content/tutorial.md" + }, + "features/field/gallery/tutorial": { + "slug": "gallery-tutorial", + "parent": "gallery", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/gallery/tutorial.md" + }, + "features/field/google-map/tutorial": { + "slug": "google-map-tutorial", + "parent": "google-map", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/google-map/tutorial.md" + }, + "features/field/group/tutorial": { + "slug": "group-tutorial", + "parent": "group", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/group/tutorial.md" + }, + "features/field/icon-picker/tutorial": { + "slug": "icon-picker-tutorial", + "parent": "icon-picker", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/icon-picker/tutorial.md" + }, + "features/field/image/tutorial": { + "slug": "image-tutorial", + "parent": "image", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/image/tutorial.md" + }, + "features/field/link/tutorial": { + "slug": "link-tutorial", + "parent": "link", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/link/tutorial.md" + }, + "features/field/message/tutorial": { + "slug": "message-tutorial", + "parent": "message", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/message/tutorial.md" + }, + "features/field/number/tutorial": { + "slug": "number-tutorial", + "parent": "number", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/number/tutorial.md" + }, + "features/field/oembed/tutorial": { + "slug": "oembed-tutorial", + "parent": "oembed", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/oembed/tutorial.md" + }, + "features/field/page-link/tutorial": { + "slug": "page-link-tutorial", + "parent": "page-link", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/page-link/tutorial.md" + }, + "features/field/password/tutorial": { + "slug": "password-tutorial", + "parent": "password", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/password/tutorial.md" + }, + "features/field/post-object/tutorial": { + "slug": "post-object-tutorial", + "parent": "post-object", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/post-object/tutorial.md" + }, + "features/field/radio/tutorial": { + "slug": "radio-tutorial", + "parent": "radio", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/radio/tutorial.md" + }, + "features/field/range/tutorial": { + "slug": "range-tutorial", + "parent": "range", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/range/tutorial.md" + }, + "features/field/repeater/tutorial": { + "slug": "repeater-tutorial", + "parent": "repeater", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/repeater/tutorial.md" + }, + "features/field/select/tutorial": { + "slug": "select-tutorial", + "parent": "select", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/select/tutorial.md" + }, + "features/field/separator/tutorial": { + "slug": "separator-tutorial", + "parent": "separator", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/separator/tutorial.md" + }, + "features/field/tab/tutorial": { + "slug": "tab-tutorial", + "parent": "tab", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/tab/tutorial.md" + }, + "features/field/taxonomy/tutorial": { + "slug": "taxonomy-tutorial", + "parent": "taxonomy", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/taxonomy/tutorial.md" + }, + "features/field/text/tutorial": { + "slug": "text-tutorial", + "parent": "text", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/text/tutorial.md" + }, + "features/field/textarea/tutorial": { + "slug": "textarea-tutorial", + "parent": "textarea", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/textarea/tutorial.md" + }, + "features/field/time-picker/tutorial": { + "slug": "time-picker-tutorial", + "parent": "time-picker", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/time-picker/tutorial.md" + }, + "features/field/true-false/tutorial": { + "slug": "true-false-tutorial", + "parent": "true-false", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/true-false/tutorial.md" + }, + "features/field/url/tutorial": { + "slug": "url-tutorial", + "parent": "url", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/url/tutorial.md" + }, + "features/field/user/tutorial": { + "slug": "user-tutorial", + "parent": "user", + "markdown_source": "https://github.com/wordpress/secure-custom-fields/blob/trunk/docs/features/field/user/tutorial.md" + }, "features/field/wysiwyg/tutorial": { "slug": "wysiwyg-tutorial", "parent": "wysiwyg", diff --git a/docs/code-reference/acf-bidirectional-functions-file.md b/docs/code-reference/acf-bidirectional-functions-file.md index 72e8ee09..099e5d5c 100644 --- a/docs/code-reference/acf-bidirectional-functions-file.md +++ b/docs/code-reference/acf-bidirectional-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Bidirectional Functions Global Functions ## `acf_update_bidirectional_values()` diff --git a/docs/code-reference/acf-field-functions-file.md b/docs/code-reference/acf-field-functions-file.md index 9627772d..4e1062c0 100644 --- a/docs/code-reference/acf-field-functions-file.md +++ b/docs/code-reference/acf-field-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Field Functions Global Functions ## `acf_get_field()` diff --git a/docs/code-reference/acf-field-group-functions-file.md b/docs/code-reference/acf-field-group-functions-file.md index 905d084b..f8a9a701 100644 --- a/docs/code-reference/acf-field-group-functions-file.md +++ b/docs/code-reference/acf-field-group-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Field Group Functions Global Functions ## `acf_get_field_group()` diff --git a/docs/code-reference/acf-form-functions-file.md b/docs/code-reference/acf-form-functions-file.md index 56c5b524..f1f115fb 100644 --- a/docs/code-reference/acf-form-functions-file.md +++ b/docs/code-reference/acf-form-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Form Functions Global Functions ## `acf_set_form_data()` diff --git a/docs/code-reference/acf-helper-functions-file.md b/docs/code-reference/acf-helper-functions-file.md index d5843a0b..e5158c40 100644 --- a/docs/code-reference/acf-helper-functions-file.md +++ b/docs/code-reference/acf-helper-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Helper Functions Global Functions ## `acf_is_empty()` diff --git a/docs/code-reference/acf-hook-functions-file.md b/docs/code-reference/acf-hook-functions-file.md index 0243057f..ed287de3 100644 --- a/docs/code-reference/acf-hook-functions-file.md +++ b/docs/code-reference/acf-hook-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Hook Functions Global Functions ## `acf_add_filter_variations()` diff --git a/docs/code-reference/acf-input-functions-file.md b/docs/code-reference/acf-input-functions-file.md index 088f29d5..49e1bef6 100644 --- a/docs/code-reference/acf-input-functions-file.md +++ b/docs/code-reference/acf-input-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Input Functions Global Functions ## `acf_filter_attrs()` diff --git a/docs/code-reference/acf-internal-post-type-functions-file.md b/docs/code-reference/acf-internal-post-type-functions-file.md index f209cd5b..71242ab9 100644 --- a/docs/code-reference/acf-internal-post-type-functions-file.md +++ b/docs/code-reference/acf-internal-post-type-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Internal Post Type Functions Global Functions ## `acf_get_internal_post_type_instance()` diff --git a/docs/code-reference/acf-meta-functions-file.md b/docs/code-reference/acf-meta-functions-file.md index d9be70a6..e923ca07 100644 --- a/docs/code-reference/acf-meta-functions-file.md +++ b/docs/code-reference/acf-meta-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Meta Functions Global Functions ## `acf_get_meta()` diff --git a/docs/code-reference/acf-post-functions-file.md b/docs/code-reference/acf-post-functions-file.md index 3cd39ca2..ac22fc32 100644 --- a/docs/code-reference/acf-post-functions-file.md +++ b/docs/code-reference/acf-post-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Post Functions Global Functions ## `acf_get_post_templates()` diff --git a/docs/code-reference/acf-post-type-functions-file.md b/docs/code-reference/acf-post-type-functions-file.md index e83b88b7..d9b12b15 100644 --- a/docs/code-reference/acf-post-type-functions-file.md +++ b/docs/code-reference/acf-post-type-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Post Type Functions Global Functions ## `acf_get_post_type()` diff --git a/docs/code-reference/acf-taxonomy-functions-file.md b/docs/code-reference/acf-taxonomy-functions-file.md index 1e9215df..83b51a58 100644 --- a/docs/code-reference/acf-taxonomy-functions-file.md +++ b/docs/code-reference/acf-taxonomy-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Taxonomy Functions Global Functions ## `acf_get_taxonomy()` diff --git a/docs/code-reference/acf-user-functions-file.md b/docs/code-reference/acf-user-functions-file.md index f84c0155..0bb27221 100644 --- a/docs/code-reference/acf-user-functions-file.md +++ b/docs/code-reference/acf-user-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf User Functions Global Functions ## `acf_get_users()` diff --git a/docs/code-reference/acf-utility-functions-file.md b/docs/code-reference/acf-utility-functions-file.md index afbfe908..f616ab5a 100644 --- a/docs/code-reference/acf-utility-functions-file.md +++ b/docs/code-reference/acf-utility-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Utility Functions Global Functions ## `acf_new_instance()` diff --git a/docs/code-reference/acf-value-functions-file.md b/docs/code-reference/acf-value-functions-file.md index b04a45fd..57dc122c 100644 --- a/docs/code-reference/acf-value-functions-file.md +++ b/docs/code-reference/acf-value-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Value Functions Global Functions ## `acf_get_reference()` diff --git a/docs/code-reference/acf-wp-functions-file.md b/docs/code-reference/acf-wp-functions-file.md index 7b2379e4..a38582bd 100644 --- a/docs/code-reference/acf-wp-functions-file.md +++ b/docs/code-reference/acf-wp-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Wp Functions Global Functions ## `acf_get_object_type()` diff --git a/docs/code-reference/admin/admin-notices-file.md b/docs/code-reference/admin/admin-notices-file.md index 0818539e..abcd1cde 100644 --- a/docs/code-reference/admin/admin-notices-file.md +++ b/docs/code-reference/admin/admin-notices-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Admin Notices Global Functions ## `acf_new_admin_notice()` diff --git a/docs/code-reference/admin/admin-tools-file.md b/docs/code-reference/admin/admin-tools-file.md index 5a62a44b..843560b0 100644 --- a/docs/code-reference/admin/admin-tools-file.md +++ b/docs/code-reference/admin/admin-tools-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Admin Tools Global Functions ## `acf_register_admin_tool()` diff --git a/docs/code-reference/admin/index.md b/docs/code-reference/admin/index.md index d5e69d2a..1580eb7e 100644 --- a/docs/code-reference/admin/index.md +++ b/docs/code-reference/admin/index.md @@ -2,5 +2,5 @@ ## Files -- [Admin Notices File](admin-notices-file) -- [Admin Tools File](admin-tools-file) +- [Admin Notices](admin-notices-file) +- [Admin Tools](admin-tools-file) diff --git a/docs/code-reference/admin/views/global/index.md b/docs/code-reference/admin/views/global/index.md index b35124f9..16ed2b8d 100644 --- a/docs/code-reference/admin/views/global/index.md +++ b/docs/code-reference/admin/views/global/index.md @@ -2,4 +2,4 @@ ## Files -- [Navigation File](navigation-file) +- [Navigation](navigation-file) diff --git a/docs/code-reference/admin/views/global/navigation-file.md b/docs/code-reference/admin/views/global/navigation-file.md index 723256cf..ebaa9d30 100644 --- a/docs/code-reference/admin/views/global/navigation-file.md +++ b/docs/code-reference/admin/views/global/navigation-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Navigation Global Functions ## `acf_print_menu_section()` diff --git a/docs/code-reference/api/api-helpers-file.md b/docs/code-reference/api/api-helpers-file.md index 82ed0883..33af2f56 100644 --- a/docs/code-reference/api/api-helpers-file.md +++ b/docs/code-reference/api/api-helpers-file.md @@ -1,4 +1,4 @@ -# Global Functions +# API Helpers Global Functions ## `acf_is_array()` diff --git a/docs/code-reference/api/api-template-file.md b/docs/code-reference/api/api-template-file.md index a450c413..00a9962b 100644 --- a/docs/code-reference/api/api-template-file.md +++ b/docs/code-reference/api/api-template-file.md @@ -1,4 +1,4 @@ -# Global Functions +# API Template Global Functions ## `get_field()` diff --git a/docs/code-reference/api/api-term-file.md b/docs/code-reference/api/api-term-file.md index 07c46271..44bea0e8 100644 --- a/docs/code-reference/api/api-term-file.md +++ b/docs/code-reference/api/api-term-file.md @@ -1,4 +1,4 @@ -# Global Functions +# API Term Global Functions ## `acf_get_taxonomies()` diff --git a/docs/code-reference/api/index.md b/docs/code-reference/api/index.md index ecd5c673..f2094832 100644 --- a/docs/code-reference/api/index.md +++ b/docs/code-reference/api/index.md @@ -2,6 +2,6 @@ ## Files -- [Api Helpers File](api-helpers-file) -- [Api Template File](api-template-file) -- [Api Term File](api-term-file) +- [Api Helpers](api-helpers-file) +- [Api Template](api-template-file) +- [Api Term](api-term-file) diff --git a/docs/code-reference/assets-file.md b/docs/code-reference/assets-file.md index a4c6258a..2db92f7b 100644 --- a/docs/code-reference/assets-file.md +++ b/docs/code-reference/assets-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Assets Global Functions ## `acf_localize_text()` diff --git a/docs/code-reference/blocks-file.md b/docs/code-reference/blocks-file.md index 53adcc7a..6b72025a 100644 --- a/docs/code-reference/blocks-file.md +++ b/docs/code-reference/blocks-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Blocks Global Functions ## `acf_add_block_namespace()` diff --git a/docs/code-reference/compatibility-file.md b/docs/code-reference/compatibility-file.md index 73b3bbd1..95d198a5 100644 --- a/docs/code-reference/compatibility-file.md +++ b/docs/code-reference/compatibility-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Compatibility Global Functions ## `acf_get_compatibility()` diff --git a/docs/code-reference/deprecated-file.md b/docs/code-reference/deprecated-file.md index 6704f919..0981ecb9 100644 --- a/docs/code-reference/deprecated-file.md +++ b/docs/code-reference/deprecated-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Deprecated Global Functions ## `acf_render_field_wrap_label()` diff --git a/docs/code-reference/fields-file.md b/docs/code-reference/fields-file.md index 99ef2b27..677b9d61 100644 --- a/docs/code-reference/fields-file.md +++ b/docs/code-reference/fields-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Fields Global Functions ## `acf_register_field_type()` diff --git a/docs/code-reference/fields/index.md b/docs/code-reference/fields/index.md index b17c4629..c04a1729 100644 --- a/docs/code-reference/fields/index.md +++ b/docs/code-reference/fields/index.md @@ -2,4 +2,4 @@ ## Files -- [Class Acf Repeater Table File](class-acf-repeater-table-file) +- [Class Acf Repeater Table](class-acf-repeater-table-file) diff --git a/docs/code-reference/forms/form-front-file.md b/docs/code-reference/forms/form-front-file.md index 5dbaa83c..a2e01155 100644 --- a/docs/code-reference/forms/form-front-file.md +++ b/docs/code-reference/forms/form-front-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Form Front Global Functions ## `acf_form_head()` diff --git a/docs/code-reference/forms/index.md b/docs/code-reference/forms/index.md index f2d309d1..f4f96e65 100644 --- a/docs/code-reference/forms/index.md +++ b/docs/code-reference/forms/index.md @@ -2,4 +2,4 @@ ## Files -- [Form Front File](form-front-file) +- [Form Front](form-front-file) diff --git a/docs/code-reference/index.md b/docs/code-reference/index.md index c47de007..c3241e22 100644 --- a/docs/code-reference/index.md +++ b/docs/code-reference/index.md @@ -2,34 +2,34 @@ ## Files -- [Acf Bidirectional Functions File](acf-bidirectional-functions-file) -- [Acf Field Functions File](acf-field-functions-file) -- [Acf Field Group Functions File](acf-field-group-functions-file) -- [Acf Form Functions File](acf-form-functions-file) -- [Acf Helper Functions File](acf-helper-functions-file) -- [Acf Hook Functions File](acf-hook-functions-file) -- [Acf Input Functions File](acf-input-functions-file) -- [Acf Internal Post Type Functions File](acf-internal-post-type-functions-file) -- [Acf Meta Functions File](acf-meta-functions-file) -- [Acf Post Functions File](acf-post-functions-file) -- [Acf Post Type Functions File](acf-post-type-functions-file) -- [Acf Taxonomy Functions File](acf-taxonomy-functions-file) -- [Acf User Functions File](acf-user-functions-file) -- [Acf Utility Functions File](acf-utility-functions-file) -- [Acf Value Functions File](acf-value-functions-file) -- [Acf Wp Functions File](acf-wp-functions-file) -- [Assets File](assets-file) -- [Blocks File](blocks-file) -- [Compatibility File](compatibility-file) -- [Deprecated File](deprecated-file) -- [Fields File](fields-file) -- [L10n File](l10n-file) -- [Local Fields File](local-fields-file) -- [Local Json File](local-json-file) -- [Local Meta File](local-meta-file) -- [Locations File](locations-file) -- [Loop File](loop-file) -- [Revisions File](revisions-file) -- [Scf Ui Options Page Functions File](scf-ui-options-page-functions-file) -- [Upgrades File](upgrades-file) -- [Validation File](validation-file) +- [Acf Bidirectional Functions](acf-bidirectional-functions-file) +- [Acf Field Functions](acf-field-functions-file) +- [Acf Field Group Functions](acf-field-group-functions-file) +- [Acf Form Functions](acf-form-functions-file) +- [Acf Helper Functions](acf-helper-functions-file) +- [Acf Hook Functions](acf-hook-functions-file) +- [Acf Input Functions](acf-input-functions-file) +- [Acf Internal Post Type Functions](acf-internal-post-type-functions-file) +- [Acf Meta Functions](acf-meta-functions-file) +- [Acf Post Functions](acf-post-functions-file) +- [Acf Post Type Functions](acf-post-type-functions-file) +- [Acf Taxonomy Functions](acf-taxonomy-functions-file) +- [Acf User Functions](acf-user-functions-file) +- [Acf Utility Functions](acf-utility-functions-file) +- [Acf Value Functions](acf-value-functions-file) +- [Acf Wp Functions](acf-wp-functions-file) +- [Assets](assets-file) +- [Blocks](blocks-file) +- [Compatibility](compatibility-file) +- [Deprecated](deprecated-file) +- [Fields](fields-file) +- [L10n](l10n-file) +- [Local Fields](local-fields-file) +- [Local Json](local-json-file) +- [Local Meta](local-meta-file) +- [Locations](locations-file) +- [Loop](loop-file) +- [Revisions](revisions-file) +- [Scf Ui Options Page Functions](scf-ui-options-page-functions-file) +- [Upgrades](upgrades-file) +- [Validation](validation-file) diff --git a/docs/code-reference/l10n-file.md b/docs/code-reference/l10n-file.md index ddc08fb6..0073efd5 100644 --- a/docs/code-reference/l10n-file.md +++ b/docs/code-reference/l10n-file.md @@ -1,4 +1,4 @@ -# Global Functions +# L10n Global Functions ## `acf_get_locale()` diff --git a/docs/code-reference/local-fields-file.md b/docs/code-reference/local-fields-file.md index 47a27ff2..cd8af0a6 100644 --- a/docs/code-reference/local-fields-file.md +++ b/docs/code-reference/local-fields-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Local Fields Global Functions ## `acf_enable_local()` diff --git a/docs/code-reference/local-json-file.md b/docs/code-reference/local-json-file.md index de95f4c9..add4c488 100644 --- a/docs/code-reference/local-json-file.md +++ b/docs/code-reference/local-json-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Local Json Global Functions ## `acf_get_local_json_files()` diff --git a/docs/code-reference/local-meta-file.md b/docs/code-reference/local-meta-file.md index e18b21a4..94dd2b78 100644 --- a/docs/code-reference/local-meta-file.md +++ b/docs/code-reference/local-meta-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Local Meta Global Functions ## `acf_setup_meta()` diff --git a/docs/code-reference/locations-file.md b/docs/code-reference/locations-file.md index ae5d3fbd..fe73d4e4 100644 --- a/docs/code-reference/locations-file.md +++ b/docs/code-reference/locations-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Locations Global Functions ## `acf_register_location_type()` diff --git a/docs/code-reference/loop-file.md b/docs/code-reference/loop-file.md index c11880c9..914ad7b2 100644 --- a/docs/code-reference/loop-file.md +++ b/docs/code-reference/loop-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Loop Global Functions ## `acf_add_loop()` diff --git a/docs/code-reference/rest-api/acf-rest-api-functions-file.md b/docs/code-reference/rest-api/acf-rest-api-functions-file.md index 5a5fc404..ad418796 100644 --- a/docs/code-reference/rest-api/acf-rest-api-functions-file.md +++ b/docs/code-reference/rest-api/acf-rest-api-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Acf Rest API Functions Global Functions ## `acf_get_field_rest_schema()` diff --git a/docs/code-reference/rest-api/index.md b/docs/code-reference/rest-api/index.md index 0663077e..c33abf0c 100644 --- a/docs/code-reference/rest-api/index.md +++ b/docs/code-reference/rest-api/index.md @@ -1,8 +1,8 @@ -# Rest-api +# REST API ## Files -- [Acf Rest Api Functions File](acf-rest-api-functions-file) -- [Class Acf Rest Api File](class-acf-rest-api-file) -- [Class Acf Rest Embed Links File](class-acf-rest-embed-links-file) -- [Class Acf Rest Request File](class-acf-rest-request-file) +- [Acf REST API Functions](acf-rest-api-functions-file) +- [Class Acf REST API](class-acf-rest-api-file) +- [Class ACF REST Embed Links](class-acf-rest-embed-links-file) +- [Class ACF REST Request](class-acf-rest-request-file) diff --git a/docs/code-reference/revisions-file.md b/docs/code-reference/revisions-file.md index 8012dce7..2d60c331 100644 --- a/docs/code-reference/revisions-file.md +++ b/docs/code-reference/revisions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Revisions Global Functions ## `acf_save_post_revision()` diff --git a/docs/code-reference/scf-ui-options-page-functions-file.md b/docs/code-reference/scf-ui-options-page-functions-file.md index 7c2f79d0..fa2a466b 100644 --- a/docs/code-reference/scf-ui-options-page-functions-file.md +++ b/docs/code-reference/scf-ui-options-page-functions-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Scf Ui Options Page Functions Global Functions ## `acf_get_ui_options_page()` diff --git a/docs/code-reference/upgrades-file.md b/docs/code-reference/upgrades-file.md index 32a15a1d..2b042a48 100644 --- a/docs/code-reference/upgrades-file.md +++ b/docs/code-reference/upgrades-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Upgrades Global Functions ## `acf_has_upgrade()` diff --git a/docs/code-reference/validation-file.md b/docs/code-reference/validation-file.md index f39fbfaf..dbead703 100644 --- a/docs/code-reference/validation-file.md +++ b/docs/code-reference/validation-file.md @@ -1,4 +1,4 @@ -# Global Functions +# Validation Global Functions ## `acf_add_validation_error()`