Skip to content

Instantly share code, notes, and snippets.

@alexermakov
Last active November 9, 2016 09:07
Show Gist options
  • Save alexermakov/4d4f86d153879ba61a0198c721937586 to your computer and use it in GitHub Desktop.
Save alexermakov/4d4f86d153879ba61a0198c721937586 to your computer and use it in GitHub Desktop.
получить страницу по id wordpress
<?php
$id = 7;// Обязательно передавать переменную
$post = get_post($id);
$content = $post->post_content;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment