//functions.php
// 投稿者の編集を許可する
add_action( 'admin_init', 'allow_post_author_edit' );
function allow_post_author_edit() { global $post_type; if ( current_user_can( 'edit_posts' ) && $post_type == 'post' ) { $post_type_object = get_post_type_object( 'post' ); $post_type_object->cap->edit_post = 'edit_posts'; }
}
目次 非表示
<?php
$author_id = get_the_author_meta('ID');//現在の投稿の投稿者IDを取得するWordPressの関数
$profile_image_id = get_the_author_meta('profile_img', $author_id);
if ($profile_image_id) { $author_image = wp_get_attachment_image($profile_image_id, 'full', false, array( 'class' => 'img-fluid post-author-img flex-shrink-0' ));
} else { $author_image = '<img src="' . get_template_directory_uri() . '/assets/img/noimage-760x460.png" alt="" class="img-fluid post-author-img flex-shrink-0">';
}
echo $author_image; // 画像タグを出力
?>