Tag

include

УСІ ПУБЛІКАЦІЇ

Якщо Вам потрібно вставити вміст якогось запису чи сторінки у інший, не обов’язково копіювати та вставляти. Ви можете скористатися коротким кодом (shortcode).
Додайте до файлу functions.php у папці з Вашою темою наступний код:
[php]
function wpua_includeContentShortcode($atts) {
$thepostid = intval($atts[postidparam]);
$output = ”;
query_posts(“p=$thepostid&post_type=page”);
if (have_posts()) : while (have_posts()) : the_post();
$output .= get_the_content($post->ID);
endwhile; else:
// failed, output nothing
endif;
wp_reset_query();
return $output;
}
add_shortcode(“wpua_include”, “wpua_includeContentShortcode”);
[/php]