Hello.
How can I create different post types? As in image, audio or video posts etc..
Please help.
Thank you,
Andrew
Hello.
How can I create different post types? As in image, audio or video posts etc..
Please help.
Thank you,
Andrew
First make sure your theme uses different Post Formats.
Then use CSS to create the style you want those post formats to look like.
Your theme's functions.php file needs to have an entry specifying which post formats to support. If your theme does not already support the post formats, you can the line below to your functions.php file:
add_theme_support( 'post-formats', array('image', 'audio', 'video', 'link', 'quote', 'aside', 'gallery' ) );
More information: http://codex.wordpress.org/Post_Formats
Here is a tutorial:
WordPress custom post types, custom back-end columns and post thumbnails
Whoot! Thank you very much!
:DDd
-Andrew
You must log in to post.