我当前的演示站点是http://www.dpimax.com/v2/ 向下滚动到新闻,这样当你点击阅读更多时,我希望它转到单曲上的特定锚定点。php,我已经有了name#placeholder,这是我在函数中使用的代码。php for the read more is,我不知道如何在这里集成锚,非常感谢您的帮助。
function new_excerpt_more( $more ) {
return \' <a href="\'. get_permalink( get_the_ID() ) . \'"> \'
. __(\'<br/><br/> Read More\') . \'</a>\';
}
add_filter( \'excerpt_more\', \'new_excerpt_more\');
function custom_excerpt_length( $length ){
return 35;
}
add_filter( \'excerpt_length\', \'custom_excerpt_length\', 999 );