Hi geeked.us
Are you using Static Front Page ?
This case <!--more--> is not work why static home page does not have a page that displays the details.
Thank you.
I’m using “Your latest posts”.
I tried to test my environment, but is operating normally
Is it possible to be taught the URL of the WEB site of you?
Thank you.
The <!--more--> notation is worked only click Continue reading →.
Title click is allways standard link.
Your Site <!--more--> notation is working correct.
Do you want change from standard link to hash link at entry title?
Thank you.
Is there a way to get the automatic excerpt to work? I did the “more” manually.
Current version Raindrops
functions.php line 712
if ( !defined( 'RAINDROPS_USE_LIST_EXCERPT' ) ) {
define( "RAINDROPS_USE_LIST_EXCERPT", false );
}
// values 'is_search', 'is_archive', 'is_category' ,'is_tax', 'is_tag' any conditional function name
if ( !isset( $raindrops_where_excerpts ) ) {
$raindrops_where_excerpts = array( 'is_search' );
}
change below
if ( !defined( 'RAINDROPS_USE_LIST_EXCERPT' ) ) {
define( "RAINDROPS_USE_LIST_EXCERPT", true );
}
// values 'is_search', 'is_archive', 'is_category' ,'is_tax', 'is_tag' any conditional function name
if ( !isset( $raindrops_where_excerpts ) ) {
$raindrops_where_excerpts = array( 'is_search','is_front_page' );
}
It maybe Site home page shows excerpt
but
next version of Raindrops can controll from theme customizer
Please wait next version of Raindrops
Thank you.
That would be amazing! Thank you, and I look forward to it!
Today Raindrops 1.239 live
You can use excerpt from theme customizer.
Resolved OK?
Thank you.
It is, thank you. Is there a way to customize length of preview? Like first <p></p> ?
please use Plugin API filter
For Example
Add to functions.php first line(<?php before )
<?php
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
?>
above code trim 20 words.
see CODEX
http://codex.wordpress.org/Plugin_API/Filter_Reference/excerpt_length
Thank you
I will change to resolved because there is no one months Reply