As part of making your site feel more like your own, you might want to change some of the default text that the WordPress Astra theme adds.
Common things I'm often asked to change are:
- Leave a Comment
- Your comment is awaiting moderation
- Sorry, but nothing matched your search terms. Please try again with some different keywords.
Astra makes it easy to modify all these, if you know where to look.
To change the default text in Astra, add a filter to 'astra_default_strings', passing in the $defaults array. Change any of the text you want by the array key and return the array.
By way of example, let's change the "Leave a Comment" text to "Leave Feedback".
add_filter( 'astra_default_strings', 'iw_blog_comment' );
function iw_blog_comment( $defaults ) {
$defaults['string-blog-meta-leave-a-comment'] = 'Leave Feedback';
return $defaults;
}
Add a new line for each change you want to make. You could also add conditionals if you wanted to change the text on certain pages.
To change text other than the "Leave a Comment", replace string-blog-meta-leave-a-comment in the code above with the key from the table below.
Then change Leave Feedback to whatever you want the default text to say.
Make sure to wrap your text in quotes (single or double, whichever you prefer) and return the changed array of $defaults.
List of Astra Default Text
Below is the list of default text and corresponding keys for Astra as of version 3.6.2. It's unlikely to change, but it may over time, or they may add to it.
If you want to find the list current to your version, look under /astra/inc/core/class-theme-strings.php.
Key | Default Text |
---|---|
string-header-skip-link | Skip to content |
string-404-sub-title | It looks like the link pointing here was faulty. Maybe try searching? |
string-search-nothing-found | Nothing Found |
string-search-nothing-found-message | Sorry, but nothing matched your search terms. Please try again with some different keywords. |
string-full-width-search-message | Start typing and press enter to search |
string-full-width-search-placeholder | Start Typing… |
string-header-cover-search-placeholder | Start Typing… |
string-search-input-placeholder | Search … |
string-comment-reply-link | Reply |
string-comment-edit-link | Edit |
string-comment-awaiting-moderation | Your comment is awaiting moderation. |
string-comment-title-reply | Leave a Comment |
string-comment-cancel-reply-link | Cancel Reply |
string-comment-label-submit | Post Comment » |
string-comment-label-message | Type here.. |
string-comment-label-name | Name* |
string-comment-label-email | Email* |
string-comment-label-website | Website |
string-comment-closed | Comments are closed. |
string-comment-navigation-title | Comment navigation |
string-comment-navigation-next | Newer Comments |
string-comment-navigation-previous | Older Comments |
string-blog-page-links-before | Pages: |
string-blog-meta-author-by | By |
string-blog-meta-leave-a-comment | Leave a Comment |
string-blog-meta-one-comment | 1 Comment |
string-blog-meta-multiple-comment | % Comments |
string-blog-navigation-next | Next Page → |
string-blog-navigation-previous | ← Previous Page |
string-single-page-links-before | Pages: |
string-single-navigation-next | Next %s → |
string-single-navigation-previous | ← Previous %s |
string-content-nothing-found-message | It seems we can’t find what you’re looking for. Perhaps searching can help. |