Title: Custom fields in post content
Last modified: May 12, 2020

---

# Custom fields in post content

 *  [damargon](https://wordpress.org/support/users/damargon/)
 * (@damargon)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/custom-fields-in-post-content/)
 * Hi everybody,
    I have created several custom fields whose content I have added
   to the_content to display it in the web. This is done correctly:
 *     ```
       <div class="post_content">
                   <?php the_content(); ?>
                   <?php echo get_post_meta($post->ID, 'seccion_de_videos', true); ?>
        </div>
       ```
   
 * The problem is that at the of the content are automatically included several 
   plugins (facebook comments, GRD Stars) that make the custom_field appears after
   them and not after the text of the post.
    How can I include the custom field 
   between the text and the plugins? Thanks in advanced!
    -  This topic was modified 6 years, 3 months ago by [Jan Dembowski](https://wordpress.org/support/users/jdembowski/).

Viewing 1 replies (of 1 total)

 *  [Joy](https://wordpress.org/support/users/joyously/)
 * (@joyously)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/custom-fields-in-post-content/#post-12809143)
 * The plugins are using the `the_content` filter. You can use it also.
    [https://developer.wordpress.org/reference/hooks/the_content/](https://developer.wordpress.org/reference/hooks/the_content/)
   There are several examples on that page. The third parameter of `add_filter` 
   is the priority, which defaults to 10. If you want your function to run first,
   use a lower number. If you want to be last, use a higher number.

Viewing 1 replies (of 1 total)

The topic ‘Custom fields in post content’ is closed to new replies.

## Tags

 * [content](https://wordpress.org/support/topic-tag/content/)
 * [custom fields](https://wordpress.org/support/topic-tag/custom-fields/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [Joy](https://wordpress.org/support/users/joyously/)
 * Last activity: [6 years, 3 months ago](https://wordpress.org/support/topic/custom-fields-in-post-content/#post-12809143)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
