Entries by

PHP Lesson 1 – What is PHP?

PHP is a server-side programming language. Released in 1995, it stood for Personal Home Page (Personal Web Page). Now, it stands for Hypertext Preprocessor. Server-side processing means that code integrated into HTML processes the client's requests (browser, etc.) and then presents them to the client as HTML. The process is as follows: Our computer sends a request to the server […]

How to Add Social Media Share Buttons

In this article, I&#039;ll explain how to add social media sharing buttons to your theme. It doesn&#039;t matter whether you&#039;re adding a theme based on HTML or WordPress. All the code here is taken from the developer pages of social media platforms. You can also check there. Facebook Share Button: In this code, you need to change the value of the data-href=&quot;&quot; parameter. The site URL should be written there. If you&#039;re using WordPress, you can write.  <div id="”fb-root”"></div> <script>(function(d, s, id) { var js, […]

Adding Infinite Scroll to WordPress Theme Without Plugin

In this article, I'll explain how to add infinite scroll to a WordPress theme without a plugin. This article is the most accurate. Because when I previously researched adding infinite scroll, I found articles explaining how to use plugins or articles explaining methods that worked in the index.php file but didn't work correctly in files like category.php or author.php. They didn't work correctly in other files. For example, […]

Sending the File Uploaded with the Form by Attaching it to the Email

Note: The class may have been updated since I wrote this article. It may contain some changes. When I was working on my first website project, I encountered a request to be able to send two images and information submitted in a form via email. I was familiar with the standard email function, but I didn't know how to attach and send uploaded files. I'd better look up a class for that later […]

Team CMS – Content Management System

My first CMS attempt was successful. I'd never used a framework before. I used the old mysql_ functions. So I wanted to write a new CMS system. I wrote a more advanced CMS system using the Codeigniter framework. I shared it on my GitHub account so everyone can access and contribute. You can access the project on GitHub here (click). On a site, the site owner can manage content, add, edit, delete, add images, and […]