@subrataemfluence: Thanks for your help!
@hwik: I just want to make sure you’re clear that you shouldn’t edit your theme’s files directly. Any direct changes you make will be lost when it comes time to update.
The first step to making additions to a theme’s code is generally to create a child theme. You can find good introductions to child themes, information on how they work, and steps to set them up in the following guides:
Goran is already a child theme to Edin, which is what makes things a little trickier in your case.
If you’d like to edit the theme’s HTML/PHP then you have the following options:
- Activate Edin, create a child theme for it, and then copy over files from Goran to the child theme’s directory. You can use a plugin such as Child Theme Configurator to automate this process. (I recommend this approach.)
- Create a grandchild theme. Although grandchild themes are not officially supported and considered bad practice by some, they will enable you to keep and customise your child theme. You can find some tutorials to set a grandchild theme up here and here.
As you want to make a relatively small change then another option, which doesn’t require a child theme, is for you to use some custom CSS.
If you have Jetpack installed then a straightforward way to add CSS is to navigate to Appearance > Edit CSS. (Alternatively you can activate a standalone CSS plugin.)
The following CSS would replace the “Read More” text with “Example”:
.more-link {
font-size: 0;
}
.more-link:before {
content: "Example";
font-size: 12px;
}
You can replace “Example” which whatever text you’d like to appear.
Let me know if the above information is helpful or if you have any extra questions.