LoginSignup
2
3

More than 5 years have passed since last update.

【WP】Advanced Custom Fieldsの出力

Posted at

Advanced Custom Fields

WPのカスタムフィールドを自在に操れるプラグイン
投稿やページの他に、ユーザプロフィールにもカスタムフィールドを追加できちゃいます

Advanced Custom Fields
使い方はググってね♪

出力する

基本

これ大丈夫

<?php the_field($field_name, $post_id); ?>

ちなみにechoは要らない

$field_name

「フィールド名」を入れます
日本語でも大丈夫ですが、できるだけ半角英数で

$post_id

指定したポストIDをいれます(省略可)

なので、基本的には

<?php the_field($field_name); ?>

でOK

ユーザプロフィールに設定したものを取得する場合

$post_idに該当ユーザのIDをいれてやる

<?php
$aID=get_the_author_meta('ID');
the_field('$field_name', 'user_'.$aID );
?>

これで取得できます

2
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3