Home
Forums
New posts
Search forums
What's new
New posts
New resources
New profile posts
Latest activity
Resources
Latest reviews
Search resources
Members
Current visitors
New profile posts
Search profile posts
DMCA Policy
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
FEEL FREE TO SHARE TUTORIALS, YOUR SKILS & KNOWLEDGE ON CODING, SCRIPTS, THEMES, PLUGINS OR ANY RESOURCES YOU HAVE WITH THE COMMUNITY-
Click Here To Post Your Request,
JOIN COMPUTER REPAIR FORUM
Home
Forums
WEB DEVELOPMENT CODING
PHP
Method of adding PHP to a WordPress Page or Post?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Pavan" data-source="post: 36" data-attributes="member: 10"><p>WordPress comes with an intuitive visual editor that covers all your basic needs for posting content. No coding is needed. However, when making custom pages or posts, you might need to add your own PHP code.</p><p></p><p>How to add PHP to a WordPress page or post properly? Read on, I’ll present the easiest way to do that just below.</p><p></p><h3>What is PHP?</h3><p></p><p><a href="https://www.a2zgyaan.com/php-full-form/" target="_blank">PHP full form</a> is <strong>Hypertext Preprocessor</strong>, a server-side scripting language used for web development.</p><p></p><p>As a scripting language, PHP is used to handle routine tasks, which means using the same code for repetitive tasks, like displaying today’s time on a website, for example.</p><p></p><p>Being a server-side language, it requires a PHP module installed on the server for processing PHP scripts. The script can be embedded into an HTML file, and once interpreted, will be displayed in the browser.</p><p></p><p>Here’s a very basic example of a PHP script:</p><p></p><p><?php</p><p>echo 'Hi, Guys!';</p><p>?></p><p></p><p>And here’s the output as seen on a web browser:</p><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/Hi-Guys-300x65.png" alt="Hi, Guys" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><p>Before moving on to the how’s, it is important to ensure your WordPress knowledge is up to snuff. Adding PHP code to WordPress requires you to have at least basic knowledge of how WordPress works. There are many websites like <a href="https://hostingwiki.org/" target="_blank">HostingWiki</a> that can widen your horizons about WordPress and everything related to web development.</p><p></p><h2>How to Add PHP to WordPress?</h2><p></p><p>Now, let’s learn how to add PHP to WordPress in two different scenarios: using a plugin and modifying the <strong>functions.php</strong> file. I’ll start with the easiest one.</p><p></p><h3>Using a Plugin</h3><p></p><p>To add the code, using a plugin to your WordPress site can be a hassle-free option.</p><p></p><p>Here are the steps that you need to do:</p><p></p><ul> <li data-xf-list-type="ul">Login to your <strong>WordPress dashboard.</strong></li> <li data-xf-list-type="ul">Go to the plugin menu and click <strong>Add New</strong>.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-1.png" alt="How to Add PHP to WordPress 1" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><ul> <li data-xf-list-type="ul">Choose your favorite plugin. I recommend <a href="https://wordpress.org/plugins/insert-php-code-snippet/" target="_blank"><strong>Insert PHP Code Snippet</strong></a> among others — It is easy to use and works well both on classic and Gutenberg editors.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-2.png" alt="How to Add PHP to WordPress 2" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><ul> <li data-xf-list-type="ul"><strong>Install</strong>, and <strong>activate</strong> the plugin.</li> <li data-xf-list-type="ul">Once done, let’s move on to the insertion step.</li> </ul><p></p><p>Here are the steps to add the PHP code into WordPress once you have the plugin:</p><p></p><h4>Creating the PHP code Snippet</h4> <ul> <li data-xf-list-type="ul">First off, you need to create the code snippet. On your WordPress dashboard go to <strong>XYZ PHP code</strong>, and click <strong>PHPcode Snippets</strong>.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-3.png" alt="How to Add PHP to WordPress 3" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><ul> <li data-xf-list-type="ul">On the <strong>PHPcode Snippet</strong> page, choose <strong>Add New PHP Code Snippet</strong>.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-4.png" alt="How to Add PHP to WordPress 4" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><ul> <li data-xf-list-type="ul">Add the PHP code in the blank field as well as the <strong>Tracking name</strong>, then click <strong>Create</strong>.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-5.png" alt="How to Add PHP to WordPress 5" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><p>I use this code as an example:</p><p></p><p><?php</p><p>echo 'Local date and time is: ';</p><p>date_default_timezone_set("America/New York");</p><p>echo date('d-m-Y h:i:s A');</p><p>?></p><p></p><p></p><ul> <li data-xf-list-type="ul">Once created, you’ll see the snippet shortcode.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-6.png" alt="How to Add PHP to WordPress 6" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><h4>Adding the Snippet Short Code to a WordPress Post</h4><p></p><p>The next thing is to insert the shortcode on your post. Here, I would like to show you how to do it using the <strong>Gutenberg editor</strong>.</p><p></p><ul> <li data-xf-list-type="ul">From the <strong>WordPress dashboard</strong>, under the <strong>Posts</strong> menu, click <strong>Add New</strong>.</li> <li data-xf-list-type="ul">Click the <strong>plus</strong> In the <strong>Widgets</strong> drop-down menu, choose <strong>Shortcode.</strong></li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-7.png" alt="How to Add PHP to WordPress 7" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><ul> <li data-xf-list-type="ul">Copy/paste the snippet shortcode you created using the plugin.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-8.png" alt="How to Add PHP to WordPress 8" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><ul> <li data-xf-list-type="ul">And here is the post published:</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-9.png" alt="How to Add PHP to WordPress 9" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><h4>Adding PHP to a WordPress Page</h4><p></p><p>Adding PHP to a page is very similar to adding PHP to a post, nonetheless, there are a few differences as I will be using the <strong>classic editor </strong>this time around.</p><p></p><ul> <li data-xf-list-type="ul">From the <strong>WordPress dashboard</strong> go to the <strong>Pages</strong> menu, click <strong>Add New</strong>.</li> <li data-xf-list-type="ul">From the formatting toolbar, you’ll see the <strong>PHP icon</strong>. Click that icon and choose the snippet code you want to use. No need to copy and paste here. From the options, I chose<strong> Local Time</strong> which is the snippet I’ve created earlier.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-10.png" alt="How to Add PHP to WordPress 10" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><ul> <li data-xf-list-type="ul">The result when your page is published:</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-10-1.png" alt="How to Add PHP to WordPress 10" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><h3>Add PHP to WordPress Manually Using the functions.php File</h3><p></p><p>You can also add the PHP code directly to your WordPress theme. For that purpose, you need to modify the <strong>functions.php </strong>file of the current theme you’re using. <strong>Backup your data first</strong>, before doing anything else, just in case something goes wrong!</p><p></p><p>Also, I recommend you to create a <a href="https://developer.wordpress.org/themes/advanced-topics/child-themes/" target="_blank">child theme</a>, a sub-theme that has the same code and appearance but it can be used as a “dummy” in case any issues occur.</p><p></p><p>Here are the steps:</p><p></p><ul> <li data-xf-list-type="ul">From the WordPress dashboard, go to the <strong>Appearance</strong> menu, and choose the <strong>Theme Editor</strong>.</li> <li data-xf-list-type="ul">On the right side, you’ll see <strong>Theme Files</strong>. Choose <strong>Theme Function</strong> or <strong>functions.php</strong>.</li> </ul><p></p><p><img src="https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-11.png" alt="How to Add PHP to WordPress 11" class="fr-fic fr-dii fr-draggable " style="" /></p><p></p><ul> <li data-xf-list-type="ul">Add or modify the PHP code for your content</li> <li data-xf-list-type="ul">Once finished, click <strong>Update File</strong>.</li> </ul><p></p><p>Using this method will change all your posts under the same theme. That means for individual changes, using a plugin should be the preferred option. Also, when you update your theme, you might lose your modifications.</p><p></p><h3>Wrap Up</h3><p></p><p>Adding PHP to a WordPress page or post should not be taken lightly. Otherwise, you might make a mistake that will break your site (always use backups!).</p><p></p><p>There are two methods to insert PHP code in WordPress: using a plugin and manually adding it into the <strong>functions.php</strong> file.</p><p></p><p>The first option is ideal for individual posts or pages while doing it manually can apply your code throughout your entire WordPress theme.</p><p></p><p>Remember to always make a backup for your WordPress site before modifying it, and good luck coding!</p></blockquote><p></p>
[QUOTE="Pavan, post: 36, member: 10"] WordPress comes with an intuitive visual editor that covers all your basic needs for posting content. No coding is needed. However, when making custom pages or posts, you might need to add your own PHP code. How to add PHP to a WordPress page or post properly? Read on, I’ll present the easiest way to do that just below. [HEADING=2]What is PHP?[/HEADING] [URL='https://www.a2zgyaan.com/php-full-form/']PHP full form[/URL] is [B]Hypertext Preprocessor[/B], a server-side scripting language used for web development. As a scripting language, PHP is used to handle routine tasks, which means using the same code for repetitive tasks, like displaying today’s time on a website, for example. Being a server-side language, it requires a PHP module installed on the server for processing PHP scripts. The script can be embedded into an HTML file, and once interpreted, will be displayed in the browser. Here’s a very basic example of a PHP script: <?php echo 'Hi, Guys!'; ?> And here’s the output as seen on a web browser: [IMG alt="Hi, Guys"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/Hi-Guys-300x65.png[/IMG] Before moving on to the how’s, it is important to ensure your WordPress knowledge is up to snuff. Adding PHP code to WordPress requires you to have at least basic knowledge of how WordPress works. There are many websites like [URL='https://hostingwiki.org/']HostingWiki[/URL] that can widen your horizons about WordPress and everything related to web development. [HEADING=1]How to Add PHP to WordPress?[/HEADING] Now, let’s learn how to add PHP to WordPress in two different scenarios: using a plugin and modifying the [B]functions.php[/B] file. I’ll start with the easiest one. [HEADING=2]Using a Plugin[/HEADING] To add the code, using a plugin to your WordPress site can be a hassle-free option. Here are the steps that you need to do: [LIST] [*]Login to your [B]WordPress dashboard.[/B] [*]Go to the plugin menu and click [B]Add New[/B]. [/LIST] [IMG alt="How to Add PHP to WordPress 1"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-1.png[/IMG] [LIST] [*]Choose your favorite plugin. I recommend [URL='https://wordpress.org/plugins/insert-php-code-snippet/'][B]Insert PHP Code Snippet[/B][/URL] among others — It is easy to use and works well both on classic and Gutenberg editors. [/LIST] [IMG alt="How to Add PHP to WordPress 2"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-2.png[/IMG] [LIST] [*][B]Install[/B], and [B]activate[/B] the plugin. [*]Once done, let’s move on to the insertion step. [/LIST] Here are the steps to add the PHP code into WordPress once you have the plugin: [HEADING=3]Creating the PHP code Snippet[/HEADING] [LIST] [*]First off, you need to create the code snippet. On your WordPress dashboard go to [B]XYZ PHP code[/B], and click [B]PHPcode Snippets[/B]. [/LIST] [IMG alt="How to Add PHP to WordPress 3"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-3.png[/IMG] [LIST] [*]On the [B]PHPcode Snippet[/B] page, choose [B]Add New PHP Code Snippet[/B]. [/LIST] [IMG alt="How to Add PHP to WordPress 4"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-4.png[/IMG] [LIST] [*]Add the PHP code in the blank field as well as the [B]Tracking name[/B], then click [B]Create[/B]. [/LIST] [IMG alt="How to Add PHP to WordPress 5"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-5.png[/IMG] I use this code as an example: <?php echo 'Local date and time is: '; date_default_timezone_set("America/New York"); echo date('d-m-Y h:i:s A'); ?> [LIST] [*]Once created, you’ll see the snippet shortcode. [/LIST] [IMG alt="How to Add PHP to WordPress 6"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-6.png[/IMG] [HEADING=3]Adding the Snippet Short Code to a WordPress Post[/HEADING] The next thing is to insert the shortcode on your post. Here, I would like to show you how to do it using the [B]Gutenberg editor[/B]. [LIST] [*]From the [B]WordPress dashboard[/B], under the [B]Posts[/B] menu, click [B]Add New[/B]. [*]Click the [B]plus[/B] In the [B]Widgets[/B] drop-down menu, choose [B]Shortcode.[/B] [/LIST] [IMG alt="How to Add PHP to WordPress 7"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-7.png[/IMG] [LIST] [*]Copy/paste the snippet shortcode you created using the plugin. [/LIST] [IMG alt="How to Add PHP to WordPress 8"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-8.png[/IMG] [LIST] [*]And here is the post published: [/LIST] [IMG alt="How to Add PHP to WordPress 9"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-9.png[/IMG] [HEADING=3]Adding PHP to a WordPress Page[/HEADING] Adding PHP to a page is very similar to adding PHP to a post, nonetheless, there are a few differences as I will be using the [B]classic editor [/B]this time around. [LIST] [*]From the [B]WordPress dashboard[/B] go to the [B]Pages[/B] menu, click [B]Add New[/B]. [*]From the formatting toolbar, you’ll see the [B]PHP icon[/B]. Click that icon and choose the snippet code you want to use. No need to copy and paste here. From the options, I chose[B] Local Time[/B] which is the snippet I’ve created earlier. [/LIST] [IMG alt="How to Add PHP to WordPress 10"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-10.png[/IMG] [LIST] [*]The result when your page is published: [/LIST] [IMG alt="How to Add PHP to WordPress 10"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-10-1.png[/IMG] [HEADING=2]Add PHP to WordPress Manually Using the functions.php File[/HEADING] You can also add the PHP code directly to your WordPress theme. For that purpose, you need to modify the [B]functions.php [/B]file of the current theme you’re using. [B]Backup your data first[/B], before doing anything else, just in case something goes wrong! Also, I recommend you to create a [URL='https://developer.wordpress.org/themes/advanced-topics/child-themes/']child theme[/URL], a sub-theme that has the same code and appearance but it can be used as a “dummy” in case any issues occur. Here are the steps: [LIST] [*]From the WordPress dashboard, go to the [B]Appearance[/B] menu, and choose the [B]Theme Editor[/B]. [*]On the right side, you’ll see [B]Theme Files[/B]. Choose [B]Theme Function[/B] or [B]functions.php[/B]. [/LIST] [IMG alt="How to Add PHP to WordPress 11"]https://www.thecrazyprogrammer.com/wp-content/uploads/2019/08/How-to-Add-PHP-to-WordPress-11.png[/IMG] [LIST] [*]Add or modify the PHP code for your content [*]Once finished, click [B]Update File[/B]. [/LIST] Using this method will change all your posts under the same theme. That means for individual changes, using a plugin should be the preferred option. Also, when you update your theme, you might lose your modifications. [HEADING=2]Wrap Up[/HEADING] Adding PHP to a WordPress page or post should not be taken lightly. Otherwise, you might make a mistake that will break your site (always use backups!). There are two methods to insert PHP code in WordPress: using a plugin and manually adding it into the [B]functions.php[/B] file. The first option is ideal for individual posts or pages while doing it manually can apply your code throughout your entire WordPress theme. Remember to always make a backup for your WordPress site before modifying it, and good luck coding! [/QUOTE]
Insert quotes…
Verification
Post reply
Richest Freecoded User
Most Freecoin
freecoded
4,876 Freecoin
J
Johnhendrick
645 Freecoin
S
Smith16
607 Freecoin
Davy200
590 Freecoin
nathan69
426 Freecoin
Laureine
415 Freecoin
A
anajeen
395 Freecoin
C
codeguru
282 Freecoin
Tekera
267 Freecoin
P
Peterparker87
239 Freecoin
Home
Forums
WEB DEVELOPMENT CODING
PHP
Method of adding PHP to a WordPress Page or Post?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
Accept
Learn more…
Top