How can I add my own code in the GP.
-
Hey Tom,
Recently I made a custom template for the purpose of to set this template as my static home page.
Actually, I have to design a static home page. There I found two ways.
1. With the help of a page builder.
2. by adding some coding.
But I don’t want to use any plugin. That’s why I created a custom template. But You know to design anything we need to put a code. So now I just have following code in my custom template.<?php /* Template Name: home */ ?> <?php /** * The template for displaying all pages. * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site will use a * different template. * * @package GeneratePress */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } get_header(); ?> <div id="primary" <?php generate_content_class();?>> <main id="main" <?php generate_main_class(); ?>> <?php /** * generate_before_main_content hook. * * @since 0.1 */ do_action( 'generate_before_main_content' ); while ( have_posts() ) : the_post(); get_template_part( 'content', 'page'); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || '0' != get_comments_number() ) : ?> <div class="comments-area"> <?php comments_template(); ?> </div> <?php endif; endwhile; /** * generate_after_main_content hook. * * @since 0.1 */ do_action( 'generate_after_main_content' ); ?> </main><!-- #main --> </div><!-- #primary --> <?php /** * generate_after_primary_content_area hook. * * @since 2.0 */ do_action( 'generate_after_primary_content_area' ); generate_construct_sidebars(); get_footer();
But I have to add some codes in the content section nor above and neither below. I have to put some code in the part of content where we add text. If you didn’t understand then follow image.
https://jankaribook.com/wp-content/uploads/2018/08/Screenshot_1.jpg
For your information, the codes will be in PHP and their purpose will be ( Show the latest post with a thumbnail, Show slideshow) in a simple word all the designing work.
Don’t worry about coding, Just tell where should I insert the code.
- The topic ‘How can I add my own code in the GP.’ is closed to new replies.