<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>read more button &#8211; Content Views Pro</title>
	<atom:link href="https://contentviewspro.com/documentation/tags/read-more-button/feed/" rel="self" type="application/rss+xml" />
	<link>https://contentviewspro.com/documentation</link>
	<description>Most Popular Filter &#38; Grid Plugin For WordPress</description>
	<lastBuildDate>Thu, 28 Dec 2023 11:22:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Read More button &#8211; add custom class</title>
		<link>https://contentviewspro.com/documentation/article/read-button-add-custom-class-name-class-attribute/</link>
		
		<dc:creator><![CDATA[CVP]]></dc:creator>
		<pubDate>Tue, 31 Oct 2017 02:52:12 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=2509</guid>

					<description><![CDATA[To add custom class name to the class attribute of the Read More button, please add this code to file functions.php in the directory of your active theme: // Content Views Pro - Add custom class name to the class attribute of the Read More button add_filter( 'pt_cv_field_content_readmore_class', 'cvp_theme_field_content_readmore_class', 100, 2 ); function cvp_theme_field_content_readmore_class( $class, &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/read-button-add-custom-class-name-class-attribute/"> <span class="screen-reader-text">Read More button &#8211; add custom class</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>To add custom class name to the class attribute of the Read More button, please add this code to file <strong>functions.php</strong> in the directory of your active theme:</p>
<pre style="font-size:13px">
// Content Views Pro - Add custom class name to the class attribute of the Read More button
add_filter( 'pt_cv_field_content_readmore_class', 'cvp_theme_field_content_readmore_class', 100, 2 );
function cvp_theme_field_content_readmore_class( $class, $fargs ) {
	$class .= ' ' . 'YOUR_CLASS_HERE';
	return $class;
}
</pre>
<p>(replace <strong>YOUR_CLASS_HERE</strong> with your class names)</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Customize &#8220;Read More&#8221; text for each post</title>
		<link>https://contentviewspro.com/documentation/article/customize-read-more-for-each-post/</link>
		
		<dc:creator><![CDATA[CVP]]></dc:creator>
		<pubDate>Tue, 12 Sep 2017 05:30:18 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=2080</guid>

					<description><![CDATA[By default, you can customize the &#8220;Read More&#8221; text for all posts in View easily, using the built-in setting. If you want to customize this text for each post, you can use simple steps below: add new custom field: cvp_readmore_text for posts which you want to customize the &#8220;Read More&#8221; text (click to read about &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/customize-read-more-for-each-post/"> <span class="screen-reader-text">Customize &#8220;Read More&#8221; text for each post</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>By default, you can customize the &#8220;Read More&#8221; text for all posts in View easily, using the built-in setting.<br />
If you want to customize this text for each post, you can use simple steps below:</p>
<ul>
<li>add new custom field:<br />
<code>cvp_readmore_text</code><br />
for posts which you want to customize the &#8220;Read More&#8221; text (<a href="http://contentviewspro.com/documentation/article/add-new-custom-field-wordpress-post/" target="_blank" rel="noopener noreferrer">click to read about how to add new custom field</a>)</li>
<li>add this code to file <strong>functions.php</strong> of your active theme:
<pre style="font-size:13px">
// Content Views Pro - Customize "Read More" text for each post
add_filter( 'pt_cv_dargs_others', 'cvp_theme_change_readmore_text_per_post', 999, 2 );
function cvp_theme_change_readmore_text_per_post( $dargs, $post_idx ) {
	global $post;
	$meta = get_post_meta( $post->ID );
	if ( !empty( $meta[ 'cvp_readmore_text' ][ 0 ] ) ) {
		$dargs[ 'field-settings' ][ 'content' ][ 'readmore-text' ] = $meta[ 'cvp_readmore_text' ][ 0 ];
	}

	return $dargs;
}
</pre>
</li>
</ul>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Remove the &#8220;Read More&#8221; button</title>
		<link>https://contentviewspro.com/documentation/article/hide-read-button-cvp/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Fri, 13 Jan 2017 04:37:55 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1158</guid>

					<description><![CDATA[By default, Content Views will display the Read More button with excerpt. To hide it, please uncheck the Enable checkbox for Read More (in Display Settings tab &#62;&#62; Fields Settings &#62;&#62; Content): Best regards,]]></description>
										<content:encoded><![CDATA[<p>By default, Content Views will display the Read More button with excerpt.<br />
To hide it, please uncheck the <code>Enable</code> checkbox for Read More (in Display Settings tab &gt;&gt; Fields Settings &gt;&gt; Content):</p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-1211" src="https://contentviewspro.com/documentation/wp-content/uploads/2017/01/CVP-hide-Readmore-button.png" alt="" width="657" height="444" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2017/01/CVP-hide-Readmore-button.png 657w, https://contentviewspro.com/documentation/wp-content/uploads/2017/01/CVP-hide-Readmore-button-300x203.png 300w" sizes="(max-width: 657px) 100vw, 657px" /></p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Change color of the Read More button</title>
		<link>https://contentviewspro.com/documentation/article/change-color-read-more-button/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Mon, 19 Dec 2016 05:22:57 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1113</guid>

					<description><![CDATA[With the free plugin, please add this CSS to file style.css in your theme&#8217;s folder: .pt-cv-readmore { color: YOUR_COLOR !important; background-color: YOUR_COLOR !important; border: none !important; } If you can&#8217;t see the change, please clear your browser cache, and clear (or empty) cache of any WordPress caching plugin which you are using. If it still &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/change-color-read-more-button/"> <span class="screen-reader-text">Change color of the Read More button</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<ul>
<li>With the free plugin, please add this CSS to file <strong>style.css</strong> in your theme&#8217;s folder:
<pre style="font-size:13px;margin-top:10px">
.pt-cv-readmore {
    color: YOUR_COLOR !important;
    background-color: YOUR_COLOR !important;
    border: none !important;
}
</pre>
</li>
<blockquote><p>If you can&#8217;t see the change, please clear your browser cache, and clear (or empty) cache of any WordPress caching plugin which you are using.</p></blockquote>
<blockquote><p>If it still doesn&#8217;t work, the possible reason is your theme doesn&#8217;t use the file style.css. Please add above CSS with another way (<a href="https://contentviewspro.com/documentation/article/add-custom-css-content-views-free-version/" rel="noopener noreferrer" target="_blank">read more</a>).</p></blockquote>
<li>With <a href="https://www.contentviewspro.com/?utm_source=docs&#038;utm_campaign=gopro&#038;utm_medium=referral&#038;utm_content=color-read-more">Content Views Pro plugin</a>, you can change color of the Read More button in <code>Style Settings >> Read More</code> without writing CSS:
<p><img decoding="async" src="https://contentviewspro.com/documentation/wp-content/uploads/2016/12/Content-Views-Pro-change-read-more-color.png" alt="Content Views Pro - change read more color" width="570" height="259" class="alignnone size-full wp-image-2501" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2016/12/Content-Views-Pro-change-read-more-color.png 570w, https://contentviewspro.com/documentation/wp-content/uploads/2016/12/Content-Views-Pro-change-read-more-color-300x136.png 300w" sizes="(max-width: 570px) 100vw, 570px" /></li>
</ul>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
