How to Display Page Excerpts in WordPress Themes -


my search result doesn't show excerpt content of pages on wordpress show post advise please

taken http://codex.wordpress.org/function_reference/add_post_type_support

<?php add_action('init', 'my_custom_init'); function my_custom_init() {     add_post_type_support( 'page', 'excerpt' ); } ?> 

adds excerpt support 'page' post type. paste code themes functions.php file (ref http://codex.wordpress.org/functions_file_explained)


Comments

Popular posts from this blog

java - How to print docx and pdf? -

c# - How to use process.StartInfo.Arguments in command prompt? -

qml - Is it possible to implement SystemTrayIcon functionality in Qt Quick application -