I´ve already find any topics about this problem, but I´m not a developer and I need to understand how to remove "continue read". I know that I can use hook functions with a new function, but I don´t know how to do do.
Can anyone explain me how to do this? I know that function that does this in parent theme is "twentyten_continue_reading_link()" and I try to use this code below:
add_action( '??????????????)', 'my_child_theme_setup' );
function my_child_theme_setup() {
remove_filter( '????????', 'twentyten_continue_reading_link()' );
}
What Do I have to change in this function above and what I have to put in place with "?????????" ?