bbpress
I would want to customize my Forum in bbpress.
by changing/replacing the words that appear on the forum layout.
I would like to change the words (everywhere they appear): Forum, topic, reply. To other words of my choice.
Does anyone have any way of doing this?
I think I will need to make a child theme?
anyone have any experience with such a problem?
Does anyone know what files name to edit for theme twenty eleven. and where they files are located?
You can hook to translation filters of WordPress to change any word or phrase. These filters are:
gettext
,ngettext
andgettext_with_context
:Note that we use
str_ireplace
which is case-insensitive, for case-sensitive replacement usestr_replace
instead.See gettext filter hook codex page for more examples.