How to remove header and footer from particular post

Kalpit

i wondering how can i remove header and footer from the one particular post. i have searched around google and wordpress but i didn't get anything which can prevent header and footer to display.

i am using memberpress plugin and i am changing the design of registration form. here i am not able to use custom template also.

i know for page we can prevent to display some of the code for that page by using following code but need help on post.

 if(!is_page('1'))
     //not to display

any help?

vrajesh

There are two ways..

(1)create php file as 'single-PID.php' in your selected theme folder suppose that you added post and the post id is 18(remember post id is important) and on that you don't want header and footer. so

  • copy and paste single.php and u get 'single-copy.php' rename to 'single-18.php'(18 is post id).
  • now in single-18.php remove get_header() and get_footer().
  • now add below function in 'function.php' file :

    function my_single_template_by_post_id( $located_template ) {
        return locate_template( array( sprintf( "single-%d.php", absint( get_the_ID() ) ), $located_template ) );
    }
    add_filter( 'single_template', 'my_single_template_by_post_id' );
    
  • admin side ,select posts from menu ...click view on post that has id '18'

(2)create php file as 'page-PID.php' in your selected theme folder suppose that you added page and the page(save as post type 'page' in wp-post database table) id is 8(remember post id is important) and on that you don't want header and footer. so

  • copy and paste page.php and u get 'page-copy.php' rename to 'page-8.php'(8 is page id).
  • now in page-8.php remove get_header() and get_footer().
  • admin side ,select pages from menu ...click view link on page that has id '8'

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to remove header from particular single page

From Dev

How to Remove Group Header / Footer

From Dev

How do I remove the header & footer from a PDF?

From Dev

How do I remove the Header and footer "area" from a word document?

From Dev

Python - Remove header and footer from docx file

From Dev

Remove Header and Footer from .docx file

From Dev

remove the header and footer from the src in iframe

From Dev

Is it possible to remove a header and footer from a single page? (word 2010)

From Dev

How to read from particular header in opencsv?

From Dev

Header/Content/Footer divs inside a particular div?

From Dev

Header/Content/Footer divs inside a particular div?

From Dev

How to Remove Disqus footer from webpage

From Dev

How to Remove Disqus footer from webpage

From Dev

Conditionally remove header/footer in Magento

From Dev

Thymeleaf decorator - how to replace footer from layout by custom footer on one particular page

From Dev

Thymeleaf decorator - how to replace footer from layout by custom footer on one particular page

From Dev

how to remove a particular occurances from sequence clojure

From Dev

how to remove particular markers from GMS?

From Dev

How to remove particular same string from string

From Dev

How to remove the particular item from arraylist?

From Dev

how to remove particular markers from GMS?

From Dev

How to remove particular value from a $.cookie

From Dev

How to remove particular data from table view

From Dev

How to remove a particular character from a type character

From Dev

How to make a content div stretch from a header div to a footer div?

From Dev

sqlcmd output file remove header and footer

From Dev

Remove seperation between header/footer/cell in UITableView

From Dev

Using libCurl to POST adds unknown header and footer

From Dev

How to add text as a header or footer?

Related Related

  1. 1

    How to remove header from particular single page

  2. 2

    How to Remove Group Header / Footer

  3. 3

    How do I remove the header & footer from a PDF?

  4. 4

    How do I remove the Header and footer "area" from a word document?

  5. 5

    Python - Remove header and footer from docx file

  6. 6

    Remove Header and Footer from .docx file

  7. 7

    remove the header and footer from the src in iframe

  8. 8

    Is it possible to remove a header and footer from a single page? (word 2010)

  9. 9

    How to read from particular header in opencsv?

  10. 10

    Header/Content/Footer divs inside a particular div?

  11. 11

    Header/Content/Footer divs inside a particular div?

  12. 12

    How to Remove Disqus footer from webpage

  13. 13

    How to Remove Disqus footer from webpage

  14. 14

    Conditionally remove header/footer in Magento

  15. 15

    Thymeleaf decorator - how to replace footer from layout by custom footer on one particular page

  16. 16

    Thymeleaf decorator - how to replace footer from layout by custom footer on one particular page

  17. 17

    how to remove a particular occurances from sequence clojure

  18. 18

    how to remove particular markers from GMS?

  19. 19

    How to remove particular same string from string

  20. 20

    How to remove the particular item from arraylist?

  21. 21

    how to remove particular markers from GMS?

  22. 22

    How to remove particular value from a $.cookie

  23. 23

    How to remove particular data from table view

  24. 24

    How to remove a particular character from a type character

  25. 25

    How to make a content div stretch from a header div to a footer div?

  26. 26

    sqlcmd output file remove header and footer

  27. 27

    Remove seperation between header/footer/cell in UITableView

  28. 28

    Using libCurl to POST adds unknown header and footer

  29. 29

    How to add text as a header or footer?

HotTag

Archive