How I can get the link text is using WordPress?
By default is something like:
Read More <span class="meta-nav">â</span>
buy I want to get that value in a variable because some WordPress installation can have that value customized (using filter the_content_more_link) or in another language.
In resumen: what I need is to get from WordPress the text (the HTML code) that WordPress uses to replace the when display a Post Content.
You can use posts custom fields to store a custom continue reading text for each post, and then use that value in
the_content_more_link
filter. For example you might have a custom field with meta key ofcontinue_reading
to enable users to specify the custom Read More text, and use that value like: