Skip to content

Instantly share code, notes, and snippets.

@liderdesarrollo
Created March 25, 2015 04:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liderdesarrollo/3ccbb7c9e7c7a1c21787 to your computer and use it in GitHub Desktop.
Save liderdesarrollo/3ccbb7c9e7c7a1c21787 to your computer and use it in GitHub Desktop.
obtener el contenido por id del post
<div class="post-resume">
<?php
$my_postid = get_the_ID();//This is page id or post id
$content_post = get_post($my_postid);
$content = $content_post->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]&gt;', $content);
echo wp_trim_words( $content, 40, '<a href="'. get_permalink() .'"> ...Read More</a>' );
?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment