Explain the use of custom fields in WordPress.

Custom fields store additional metadata, like author notes or product details. They allow users to add custom data to posts, enhancing content structure.

// Displaying a custom field value in a post
$custom_field = get_post_meta(get_the_ID(), 'field_name', true);
echo $custom_field;