• Resolved artoodetoo3301

    (@artoodetoo3301)


    Hi, I would like to use this plugin to display only the post content without any meta data like (author, date, categories, etc)

    I am using Visia theme, the support team of the theme helped me to remove those stuff in the blog page. But the meta data still appear wherever I use this plugin.

    Would you please help me, how to remove those stuff?

    https://www.ads-software.com/plugins/posts-in-page/

Viewing 2 replies - 1 through 2 (of 2 total)
  • I would like to know the same thing. I only want the content. No meta.

    I tried adding metabox=”false” to the shortcode but it didn’t work. ??

    Actually found the answer here:
    https://www.ads-software.com/support/topic/show-1-entire-post-on-a-page?replies=3

    However, it really doesn’t tell you the how-to do it.

    So here’s my explanation.

    1. Go to the plugin editor of WP.
    2. Change the drop-down in the upper right to the Posts-in-Page plugin.
    3. Click Select to accept the change.
    4. On the right side list after the content changes, click on the posts-in-page/posts_loop_template.php to edit it.
    5. Once it loads in the editor, look for the section that says: <!-- This is the output of the META information -->
    6. Comment out everything from the first div to the first bottom div like this:

    <!-- <div class="entry-utility">
    		<?php if ( count( get_the_category() ) ) : ?>
    			<span class="cat-links">
    				<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
    			</span>
    			<span class="meta-sep">|</span>
    		<?php endif; ?>
    		<?php
    			$tags_list = get_the_tag_list( '', ', ' );
    			if ( $tags_list ):
    		?>
    			<span class="tag-links">
    				<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
    			</span>
    			<span class="meta-sep">|</span>
    		<?php endif; ?>
    		<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
    		<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
    	</div> -->

    That totally removes the all meta data and puts only the posts visible.

    Hope this helps.

    Debbie

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing all meta data except the content?’ is closed to new replies.