From b18d4f8b910b7391f288b42cbd5ea602486c2d80 Mon Sep 17 00:00:00 2001 From: Ryota Moriyama Date: Mon, 14 May 2018 14:50:49 +0900 Subject: [PATCH 1/2] Create acf function file --- .../themes/sampletheme/functions/acf.php | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 wp/wp-content/themes/sampletheme/functions/acf.php diff --git a/wp/wp-content/themes/sampletheme/functions/acf.php b/wp/wp-content/themes/sampletheme/functions/acf.php new file mode 100644 index 0000000..b91b307 --- /dev/null +++ b/wp/wp-content/themes/sampletheme/functions/acf.php @@ -0,0 +1,58 @@ + "OPTION", + 'menu_title' => "OPTION", + 'menu_slug' => 'acf-options', + )); + } +} +//add_action('init','display_acf_option_page'); \ No newline at end of file From a00d4abc0cc54577235bcb97b701cf003a685778 Mon Sep 17 00:00:00 2001 From: Ryota Moriyama Date: Mon, 14 May 2018 15:07:06 +0900 Subject: [PATCH 2/2] Update default wp version --- env-sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env-sample b/env-sample index c41cfbd..c5f0fa1 100644 --- a/env-sample +++ b/env-sample @@ -4,7 +4,7 @@ MYSQL_DATABASE=wordpress # Only first build WP_ROOT=/var/www/html WP_URL=http://localhost -WP_VERSION=4.8.2 +WP_VERSION=4.9.5 WP_DB_PREFIX=wp_ WP_ADMIN_USER=root WP_ADMIN_PASSWORD=root