Anchor link on single.php

时间:2015-09-24 作者:Ray Williams

我当前的演示站点是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 );

1 个回复
SO网友:Michelle

function new_excerpt_more( $more ) {
return \' <a href="\'. get_permalink( get_the_ID() ) . \'#placeholder"> \'
       . __(\'<br/><br/> Read More\') . \'</a>\';
}

add_filter( \'excerpt_more\', \'new_excerpt_more\');
我认为应该这样做。

相关推荐

Wordpress URL error for links

我的数据库中有以下内容siteurl subdomain.example.com home subdomain.example.com 当我尝试转到某些页面时,页面会转到subdomain.example.com/services/subdomain.example.com这有什么原因吗?由于这个奇怪的错误,我也无法进入wp管理,我不明白为什么会发生这种情况?我尝试用更改数据库中的值http:// 也已经预先准备好了。如有任何建议,我们将不胜感激。