GetText function wrapping around WP ShortcodestartsWith() and endsWith() functions in PHPHow to set gettext text domain in Poedit?Translating longer texts (view and email templates) with gettextWhy shouldn't I use mysql_* functions in PHP?Prevent gettext translationphp string variables with foreach using gettextNon-deterministic gettext behavior in PHPEchoing shortcode within a functiongetText doesn't work (website localization)Shortcodes broken in WP 5?

One verb to replace 'be a member of' a club

How would I stat a creature to be immune to everything but the Magic Missile spell? (just for fun)

What is a romance in Latin?

How do I deal with an unproductive colleague in a small company?

Short story with a alien planet, government officials must wear exploding medallions

Can compressed videos be decoded back to their uncompresed original format?

Why is consensus so controversial in Britain?

Can I run a new neutral wire to repair a broken circuit?

How do conventional missiles fly?

Madden-Julian Oscillation (MJO) - How to interpret the index?

Can the Meissner effect explain very large floating structures?

Should I cover my bicycle overnight while bikepacking?

What are some good books on Machine Learning and AI like Krugman, Wells and Graddy's "Essentials of Economics"

Is it possible to create a QR code using text?

How can I deal with my CEO asking me to hire someone with a higher salary than me, a co-founder?

What killed these X2 caps?

iPad being using in wall mount battery swollen

Why didn't Boeing produce its own regional jet?

Plagiarism or not?

Assassin's bullet with mercury

Valid term from quadratic sequence?

How to prevent "they're falling in love" trope

Why can't we play rap on piano?

Why do bosons tend to occupy the same state?



GetText function wrapping around WP Shortcode


startsWith() and endsWith() functions in PHPHow to set gettext text domain in Poedit?Translating longer texts (view and email templates) with gettextWhy shouldn't I use mysql_* functions in PHP?Prevent gettext translationphp string variables with foreach using gettextNon-deterministic gettext behavior in PHPEchoing shortcode within a functiongetText doesn't work (website localization)Shortcodes broken in WP 5?













0















I have searched virtually every corner of the internet, in order to learn how to manually register a WP shortcode within a .php document, for making it translateable using WPML's string translation.



It's easy enough with plain text, you just wrap it like this:



<?php _e('Name', 'wpml_theme'); ?>


The word "Name" now appears under String Translations in the backend, under the "wpml_theme" text domain.



But i can't seem to wrap this piece of php coding correctly, in order to make it translateable under String Translation, the same way i just did it in the example above:



<?php echo do_shortcode('[showmodule id="251"]'); ?>


How do i apply the GetText function to this, so a different shortcode will be inserted (actually only the module id number in it needs to be changed) depending on which language is being shown.



Thanks!










share|improve this question


























    0















    I have searched virtually every corner of the internet, in order to learn how to manually register a WP shortcode within a .php document, for making it translateable using WPML's string translation.



    It's easy enough with plain text, you just wrap it like this:



    <?php _e('Name', 'wpml_theme'); ?>


    The word "Name" now appears under String Translations in the backend, under the "wpml_theme" text domain.



    But i can't seem to wrap this piece of php coding correctly, in order to make it translateable under String Translation, the same way i just did it in the example above:



    <?php echo do_shortcode('[showmodule id="251"]'); ?>


    How do i apply the GetText function to this, so a different shortcode will be inserted (actually only the module id number in it needs to be changed) depending on which language is being shown.



    Thanks!










    share|improve this question
























      0












      0








      0








      I have searched virtually every corner of the internet, in order to learn how to manually register a WP shortcode within a .php document, for making it translateable using WPML's string translation.



      It's easy enough with plain text, you just wrap it like this:



      <?php _e('Name', 'wpml_theme'); ?>


      The word "Name" now appears under String Translations in the backend, under the "wpml_theme" text domain.



      But i can't seem to wrap this piece of php coding correctly, in order to make it translateable under String Translation, the same way i just did it in the example above:



      <?php echo do_shortcode('[showmodule id="251"]'); ?>


      How do i apply the GetText function to this, so a different shortcode will be inserted (actually only the module id number in it needs to be changed) depending on which language is being shown.



      Thanks!










      share|improve this question














      I have searched virtually every corner of the internet, in order to learn how to manually register a WP shortcode within a .php document, for making it translateable using WPML's string translation.



      It's easy enough with plain text, you just wrap it like this:



      <?php _e('Name', 'wpml_theme'); ?>


      The word "Name" now appears under String Translations in the backend, under the "wpml_theme" text domain.



      But i can't seem to wrap this piece of php coding correctly, in order to make it translateable under String Translation, the same way i just did it in the example above:



      <?php echo do_shortcode('[showmodule id="251"]'); ?>


      How do i apply the GetText function to this, so a different shortcode will be inserted (actually only the module id number in it needs to be changed) depending on which language is being shown.



      Thanks!







      php wordpress shortcode gettext wpml






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 7 at 22:20









      emilianoD85emilianoD85

      65




      65






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55053721%2fgettext-function-wrapping-around-wp-shortcode%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55053721%2fgettext-function-wrapping-around-wp-shortcode%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

          Алба-Юлія

          Захаров Федір Захарович