Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to chance default text like “Create New Topic”, etc.?


  • vibhu000
    Participant

    @vibhu000

    I need to change the default text like “Create New Topic” to something more engaging like “Ask”. Does anyone know of any plugin that can do this?

Viewing 1 replies (of 1 total)

  • Robin W
    Moderator

    @robin-w

    Put this in your child theme’s function file – or use https://en-gb.wordpress.org/plugins/code-snippets/

    and change ‘new text’ to whatever you want

    //This function changes the text wherever it is quoted
    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'Create New Topic') {
    	$translated_text = 'new text';
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar