huh, well not sure how you can do this besides setting up a post-format with it?
Yeah you absolutely can do that with 3.3
Edit the functions.php file and find the add_theme_support for post-formats, add ‘link’ to that array
so that it looks like this:
add_theme_support(
'post-formats',
array(
'aside',
'link'
// 'image',
// 'video',
// 'quote',
// 'status'
)
);
Then, copy the content.php file to content-link.php (so there are now two files) and edit the content-link.php file remove, delete this section:
<div class="post-info">
<?php
easel_display_post_title();
if (!easel_is_bbpress()) easel_display_post_calendar();
if (is_sticky()) { ?><div class="sticky-image">Featured Post</div><?php }
if (function_exists('easel_show_mood_in_post')) easel_show_mood_in_post();
?>
<div class="post-text">
<?php
easel_display_post_author();
easel_display_post_date(); easel_display_post_time(); easel_display_modified_date_time();
easel_display_post_category();
if (function_exists('the_ratings') && $post->post_type == 'post') { the_ratings(); }
do_action('easel-post-info');
wp_link_pages(array('before' => '<div class="linkpages"><span class="linkpages-pagetext">Pages:</span> ', 'after' => '</div>', 'next_or_number' => 'number'));
?>
</div>
<div class="clear"></div>
</div>
That’s the ‘header’ info for posts, all of the information.
Then, go to posts -> add new post and add a post, in the right section there will be an area for what type of post it is, just move the markbox to ‘link’ and make your post, all that will be in the content of the post is well, the content really.
You can further modify that content-link.php file to make the post section look like you want.