自定义在没有页面ID的wordpress中读取更多链接

时间:2017-02-20 12:19:10

标签: php wordpress redirect

我一直在尝试在WordPress中自定义一个读取更多链接,并为其提供一个静态根文件夹链接,如<a href="%root-directory%/about.php"></a>。是否可以从我的仪表板更改静态页面内容。我是WordPress的初学者。

enter image description here

2 个答案:

答案 0 :(得分:0)

您可以通过过滤the_content_more_link挂钩来完成此操作,如下所示:

function modify_read_more_link() {
    return '<a class="more-link" href="' . get_permalink() . '">Your Read More Link Text</a>';
}
add_filter( 'the_content_more_link', 'modify_read_more_link' );

将该过滤器添加到 functions.php

答案 1 :(得分:0)

没有。您应该将文件移动到主题文件夹(wp-content / themes / your theme folder)。或者为活动主题创建子主题并将文件移动到该文件夹​​。