Forums

[resolved] Is it possible to have multiple excerpts for each post? (7 posts)

  1. nipponese
    Member
    Posted 2 years ago #

    Is possible to have multiple excerpts or each post, or is there a plugin which can accomplish this? I have a layout that uses three different queries to show a "featured" article on the home page, the side bar, and on a separate 'featured' page (this doesn't include the actual post in single.php).

    But of course, each need to look different. So far I have been pulling the different 'look' from the except. Is there a better way to do this, or is there a way I can create more than one except?

    Thanks in advance for any help!

  2. nathanrice
    Member
    Posted 2 years ago #

    What do you mean by "different looks"? If you mean completely different manual excerpts, then you can use custom fields to accomplish this. If you mean just different excerpt lengths, then that may be a bit harder. You'll have to directly access the content, truncate it, then apply wp_texturize and wpautop to the final result (possibly other steps I'm forgetting, too).

  3. nipponese
    Member
    Posted 2 years ago #

    Thanks for your reply!

    Different manual excerpts would be great, but how can I use custom fields to accomplish this?

    I am trying to use the info on this page:
    http://codex.wordpress.org/Function_Reference/get_post_custom_values

    But I can't get the template tag to return anything.

  4. nipponese
    Member
    Posted 2 years ago #

    Maybe I have it, how does this look?

    <?php
    		$post_id = $post->ID;
    		$key = 'sidebar_except';
    		echo get_post_meta($post_id, $key, $single);
    	?>
  5. nathanrice
    Member
    Posted 2 years ago #

    looks ok to me.

  6. nipponese
    Member
    Posted 2 years ago #

    Found that the best answer was to use Custom Field Template Tags

  7. afandi2
    Member
    Posted 2 years ago #

    nipponese. you read my mind! will look into Custom Field Template Tags right away
    thanks MAN, you could just make my day

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags