You can add your information in regular metabox textarea and separate prospective list items with new line. Then just format it as list in your template:
<?php
$list_items = get_post_meta($post->ID, 'your_custom_field_name', true);
if($list_items){
$list_items = explode("\n", $list_items)
echo '<ul>';
foreach($list_items as $list_item) {
echo '<li>' . $list_item . '</li>';
}
echo '</ul>';
}
Or you can add one more TinyMCE editor (like the one for post text) as described here: Custom fields or something else
Related Posts:
- Query to sort a list by meta key first (if it exists), and show remaining posts without meta key ordered by title
- Is it safe to store a user setting you don’t want the user to ever modify as a user option?
- Add custom fields to search
- How to add add_meta_box to specific Page Template?
- How to get users by a custom field / by user meta data?
- Auto sort the wp-admin post list by a meta key
- extend Meta Box / Document Panel
- Add multiple images to a page sidebar
- getEntityRecord without knowing the post type
- Add custom field to image editor
- Show User Their Password
- How to load php file for specific page in admin?
- How to set default metaboxes on user creation?
- Metabox nonce PHP notice
- custom field with total count of Facebook likes, comments and shares
- How to show custom field’s value under post/page title in wp-admin
- Query on custom field count?
- Create custom field key upon theme activation
- Save attachment custom fields on front end
- Unable to show ACF’s Image Custom Field properly in Genesis Framework [closed]
- Custom field value based on other custom field values
- Sorting posts by custom fields in meta_query
- nextgen gallery: how to get picture url by gallery id
- Delete all custom fields at once?
- get_post_meta just returns Array
- Sorting posts ordered by custom field value
- Odd PHP Code To Display HTML Of Meta Box [closed]
- strtotime and custom field value
- Unique Post Meta Values
- WP 3.1 meta_query for multiple custom field values
- How to add posts through CSV or excel file in a PHP file
- Merge Multiple Custom Fields into one New Custom Field for Searching
- Is there a better way to list all database terms alphabetically?
- Can’t display errors in attachment_fields_to_save
- Select multiple images from custom field
- Customizing WP user profile with custom fields
- Unique meta_key with array value vs repeated meta_key with single values
- Custom Field 101
- When creating a metabox do you have to create DB fields for the data?
- Allow only one post with specific meta value
- Best filter to use for modifying custom fields on a post?
- Attach images to posts using custom fields (just paths to images already uploaded)
- how to display custom fields of post on a web page
- Changed PHP handler to DSO – weird custom fields problem [closed]
- How do I query the title (or handle?) of post meta fieldset (created with Simple Fields Plugin)
- How to fill custom fields with brackets in their key with add_post_meta()?
- Is it preferable to use custom code to create metaboxes instead of plugins (such as ACF) and if so why? [closed]
- Function that replaces the image in the absence of the post meta
- Is there a way to set default custom fields when creating a new post?
- Front-End User Profile
- Add custom column for custom field
- ul list with only as many li’s as filled custom fields
- Is there a way to dump all registered sidebar/widget?
- How to hide post meta
- ACF Plugin How to make the customer add more fields in the post?
- custom field in admin columns
- How to sort by custom field value?
- Meta Box Plugin Cloned Fields – Multiple Foreach values
- get_post_meta returns 0
- Custom field bug in WordPress 3.2
- Users uploaded image and matching an id or taxonomy
- Adding data to User profile
- Problem with revisions only returning four results
- How to save multiple values with same meta_key, each value linked to another tag id
- Add forms dynamically in admin pages?
- Let any visitors delete a post if they know Id nr & password?
- What WordPress “technology” would I use if I wanted subscribers to be able to mark pages with characteristics and notes?
- how can i show WordPress custom field data to my short code?
- update a custom field with the value of another existing custom field
- Post meta data not showing in frontend, until hitting ‘update’ button
- Permanently show Custom Fields in Editor
- open modal window
- a lot of custom fields
- Hide custom fields by user’s role
- Ordering posts by custom fields (Date)
- update meta field value after
- PHP and Shortcode Combination
- If metabox fields has content display content
- Retrieving Advanced Custom Field within Shortcode Function [closed]
- How to properly get popular Posts by multiple Values
- Custom fields and auto save
- Save values generated via API as custom meta fields
- Query Custom Fields in Searchform
- Get custom fields when hover link of post
- WP Query multiple select form – meta_query help
- update_post_meta not working in action hook
- Load code for custom fields only on admin pages?
- Custom field in a shortcode?
- Group pages by custom field values
- Convert many posts from having a specific meta_key to use a post_format
- Exclude empty fields from custom field calculation (Average)
- How to create Parent-Child relation for custom fields?
- How to check if custom field exists in this widget query
- display loop only if a post meta data exist
- How do i output images from URL’s added to the same custom field key
- Add Custom field under the post title [closed]
- Check if a field is capitalized?
- Filter Query Post by Custom Fields(by date)
- Can’t sort custom column on user.php by number / meta_value_num?
- Need to call this php function inside a modal window from text widget