无法在子主题中使用Read More功能

时间:2017-06-09 作者:OscarGuy

根据法典中的这一页,https://codex.wordpress.org/Customizing_the_Read_More, 我只需要在函数中添加一个函数。php文件以使其正常工作。我在子主题中这样做,所以主主题的更新不会删除此编码。问题是,每次我尝试时,函数都会。php完全停止工作。我不确定我做错了什么,也不确定我是否遗漏了什么。

这是孩子在添加代码之前的样子:

<?php
function my_theme_enqueue_styles() {

$parent_style = \'frontier-style\';

wp_enqueue_style( $parent_style, get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'child-style\',
    get_stylesheet_directory_uri() . \'/style.css\',
    array( $parent_style ),
    wp_get_theme()->get(\'Version\')
);
?>
下面是我向文件中添加相关代码时的外观。

<?php
function my_theme_enqueue_styles() {

$parent_style = \'frontier-style\';

wp_enqueue_style( $parent_style, get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'child-style\',
    get_stylesheet_directory_uri() . \'/style.css\',
    array( $parent_style ),
    wp_get_theme()->get(\'Version\')
);
}
add_action( \'wp_enqueue_scripts\', \'my_theme_enqueue_styles\' );
function modify_read_more_link() {
return \'<a class="Read More" href="\' . get_permalink() . \'">There\'s still more to read. Click Here!</a>\';
}
add_filter( \'the_content_more_link\', \'modify_read_more_link\' );
?>
我从我提供的链接复制并粘贴了那个方向,所以我不知道为什么它不起作用。我还尝试将其作为单独的php函数添加,但这也不起作用。

1 个回复
最合适的回答,由SO网友:OscarGuy 整理而成

正如戴夫·罗姆西(DaveRomsey)在评论中指出的那样,答案很简单:一个离奇的撇号。问题已解决。

结束

相关推荐