• I would like to create a custom post type where the posts are formatted as numbered lists on the front-end and in the WP Dashboard editor.

    So, in the Dashboard, rather than the standard WP GUI/Text editor box for adding/editing posts, I want a series of text boxes for 1, 2, 3, etc. that builds the post as an ordered list on the frontend.

    like
    Title:
    ____________________
    1.
    ____________________
    2.
    ____________________
    3.
    ____________________

    Is this possible?

Viewing 1 replies (of 1 total)
  • Thread Starter stlouisweb@gmail.com

    (@stlouiswebgmailcom)

    To remove the standard editor I used:
    'supports' => array('title','custom-fields','revisions',),
    when creating my custom post type
    so if instead I included:
    'supports' => array('title','custom-fields','revisions','listTypeItems'),
    is there a way to set up the custom field(s) listTypeItems
    if not is there any other way to achieve this?

Viewing 1 replies (of 1 total)

The topic ‘Replacing the Visual/Text Editor for Custom Post Type’ is closed to new replies.