Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Get page title, excerpt or content by id

<?php 
$var_name = get_post('1'); // here 1 is id of the page.

echo $page_title = $var_name->post_title;

echo $page_excerpt = $var_name->post_excerpt;

echo $page_content = $var_name->post_content;
?>
Comment

Get page title, excerpt or content by Name of the Page

<?php 
$page_name = get_page_by_title( 'About' ); // here About is page name.


echo $page_title = $page_name->post_title;

echo $page_excerpt = $page_name->post_excerpt;

echo $page_content = $page_name->post_content;
?>
Comment

PREVIOUS NEXT
Code Example
Php :: how to display all posts assocatied to user in laravel 
Php :: laravel cors 
Php :: lengthawarepaginator gives keys on page 2 
Php :: Remove values from select list based on condition 
Php :: Indexed Array 
Php :: Laravel display the date the participation was created 
Php :: codeigniter sanitize array in php 
Php :: GZIP COMPRESSION Using PHP 
Php :: require and include difference in laravel 
Php :: php Prefix Sum of Matrix (Or 2D Array) 
Php :: Read the index and hashid of the last block in the blockchain 
Php :: calculate average in eager loading laravel 
Php :: how to type casting and overriding in php 
Php :: add multi product at the same time using repearter default view laravel 
Php :: install php56-php-ldap on ubuntu 20.04 
Php :: Drupal config_readonly 
Php :: php print products with attribute 
Php :: afiseaza id-ul sesiunii php 
Php :: Yii::$app-session 
Php :: numeros positivos input laravel 
Php :: laravel multiple status for a attribute in laravel migration 
Php :: wordpress pass parameters variables arguments to enqueued script 
Php :: assertequals vs assertsame 
Php :: laravel collection pull 
Php :: php random number routing 
Php :: error import php 
Php :: how to access the name of menu in worpress 
Php :: email with attcahment in joomla 
Php :: multi domain codeigniter 
Php :: if condition in laravel blade in select option 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =