Skip to content

Instantly share code, notes, and snippets.

@mt8
Created July 5, 2020 22:57
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 mt8/8b4bc38d1db91364e02c03916af07064 to your computer and use it in GitHub Desktop.
Save mt8/8b4bc38d1db91364e02c03916af07064 to your computer and use it in GitHub Desktop.
[WordPress] ACFのフィールドをreadonlyにして表示専用にする
<?php
add_filter(
'acf/load_field/key=field_xxxxxxxxxxxxx',
function ( $field ) {
$field[ 'readonly' ] = 1;
return $field;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment