Astra_Ext_Blog_Pro_Markup::read_more_text( string $text )

Read more text.


Description


Parameters

$text

(string) (Required) default read more text.


Return

(string) read more text


Source

File: addons/blog-pro/classes/class-astra-ext-blog-pro-markup.php

		public function read_more_text( $text ) {

			$read_more = astra_get_option( 'blog-read-more-text' );

			if ( '' != $read_more ) {
				$text = $read_more;
			}

			return $text;
		}


User Contributed Notes

You must log in before being able to contribute a note or feedback.