Add Wordpress Meta Box saved form input to Wordpress RSS feed










0















I'm teaching myself how to build Wordpress plugins. I found a great guide to creating a Wordpress Meta Box and saving the form input from it.



https://themefoundation.com/wordpress-meta-boxes-guide/



I want to send the entered and saved form input from the Meta Box that is in the Post edit view of Wordpress to the Wordpress RSS in its own tag. So when the user publishes the Post the Meta Box form data saves and adds the saved input to the post Wordpress RSS.



This is the code that saves the form input:



function prfx_meta_save( $post_id ) 
add_action( 'save_post', 'prfx_meta_save' );









share|improve this question




























    0















    I'm teaching myself how to build Wordpress plugins. I found a great guide to creating a Wordpress Meta Box and saving the form input from it.



    https://themefoundation.com/wordpress-meta-boxes-guide/



    I want to send the entered and saved form input from the Meta Box that is in the Post edit view of Wordpress to the Wordpress RSS in its own tag. So when the user publishes the Post the Meta Box form data saves and adds the saved input to the post Wordpress RSS.



    This is the code that saves the form input:



    function prfx_meta_save( $post_id ) 
    add_action( 'save_post', 'prfx_meta_save' );









    share|improve this question


























      0












      0








      0








      I'm teaching myself how to build Wordpress plugins. I found a great guide to creating a Wordpress Meta Box and saving the form input from it.



      https://themefoundation.com/wordpress-meta-boxes-guide/



      I want to send the entered and saved form input from the Meta Box that is in the Post edit view of Wordpress to the Wordpress RSS in its own tag. So when the user publishes the Post the Meta Box form data saves and adds the saved input to the post Wordpress RSS.



      This is the code that saves the form input:



      function prfx_meta_save( $post_id ) 
      add_action( 'save_post', 'prfx_meta_save' );









      share|improve this question
















      I'm teaching myself how to build Wordpress plugins. I found a great guide to creating a Wordpress Meta Box and saving the form input from it.



      https://themefoundation.com/wordpress-meta-boxes-guide/



      I want to send the entered and saved form input from the Meta Box that is in the Post edit view of Wordpress to the Wordpress RSS in its own tag. So when the user publishes the Post the Meta Box form data saves and adds the saved input to the post Wordpress RSS.



      This is the code that saves the form input:



      function prfx_meta_save( $post_id ) 
      add_action( 'save_post', 'prfx_meta_save' );






      wordpress plugins rss






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 15 '18 at 16:34







      Paul Henshaw

















      asked Nov 15 '18 at 14:19









      Paul HenshawPaul Henshaw

      12




      12






















          1 Answer
          1






          active

          oldest

          votes


















          0














          I figured out the code to add to the above tutorial article about creating a Meta Box that saves values. This code puts the post meta into its own tag in the RSS. I added the post meta "meta-text" to the code below to work with the tutorial.



          add_action('rss2_item', 'add_my_custom_field_node');

          function add_my_custom_field_node()
          global $post;
          $metaValue = get_post_meta($post->ID, 'meta-text', true);
          if(!empty($metaValue)):
          echo("<my-custom-field>$metaValue</my-custom-field>");
          endif;






          share|improve this answer






















            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%2f53321477%2fadd-wordpress-meta-box-saved-form-input-to-wordpress-rss-feed%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I figured out the code to add to the above tutorial article about creating a Meta Box that saves values. This code puts the post meta into its own tag in the RSS. I added the post meta "meta-text" to the code below to work with the tutorial.



            add_action('rss2_item', 'add_my_custom_field_node');

            function add_my_custom_field_node()
            global $post;
            $metaValue = get_post_meta($post->ID, 'meta-text', true);
            if(!empty($metaValue)):
            echo("<my-custom-field>$metaValue</my-custom-field>");
            endif;






            share|improve this answer



























              0














              I figured out the code to add to the above tutorial article about creating a Meta Box that saves values. This code puts the post meta into its own tag in the RSS. I added the post meta "meta-text" to the code below to work with the tutorial.



              add_action('rss2_item', 'add_my_custom_field_node');

              function add_my_custom_field_node()
              global $post;
              $metaValue = get_post_meta($post->ID, 'meta-text', true);
              if(!empty($metaValue)):
              echo("<my-custom-field>$metaValue</my-custom-field>");
              endif;






              share|improve this answer

























                0












                0








                0







                I figured out the code to add to the above tutorial article about creating a Meta Box that saves values. This code puts the post meta into its own tag in the RSS. I added the post meta "meta-text" to the code below to work with the tutorial.



                add_action('rss2_item', 'add_my_custom_field_node');

                function add_my_custom_field_node()
                global $post;
                $metaValue = get_post_meta($post->ID, 'meta-text', true);
                if(!empty($metaValue)):
                echo("<my-custom-field>$metaValue</my-custom-field>");
                endif;






                share|improve this answer













                I figured out the code to add to the above tutorial article about creating a Meta Box that saves values. This code puts the post meta into its own tag in the RSS. I added the post meta "meta-text" to the code below to work with the tutorial.



                add_action('rss2_item', 'add_my_custom_field_node');

                function add_my_custom_field_node()
                global $post;
                $metaValue = get_post_meta($post->ID, 'meta-text', true);
                if(!empty($metaValue)):
                echo("<my-custom-field>$metaValue</my-custom-field>");
                endif;







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 16 '18 at 4:22









                Paul HenshawPaul Henshaw

                12




                12





























                    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%2f53321477%2fadd-wordpress-meta-box-saved-form-input-to-wordpress-rss-feed%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







                    這個網誌中的熱門文章

                    Barbados

                    How to read a connectionString WITH PROVIDER in .NET Core?

                    Node.js Script on GitHub Pages or Amazon S3