จะเพิ่มข้อความ Your content added to all pages (not posts). ทุกหน้าของ page (ยกเว้น post)
/* Add a paragraph only to Pages. */
function my_added_page_content ( $content ) {
if ( is_page() ) {
return $content . '<p>Your content added to all pages (not posts).</p>';
}
return $content;
}
add_filter( 'the_content', 'my_added_page_content');