Add customizable logo to a WordPress theme

Add customizable logo to a WordPress theme

Tiempo de lectura: 2 minutos Today we are going to learn how we can add a customizable logo to our WordPress theme. Continuing from our previous tutorials. We are going to modify our header so that it can display either an uploaded logo or text (the site’s name). header.php <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset=”<?php bloginfo(‘charset’); ?>”> … Read more

Creating a WordPress Docker Compose and deploying a blog quickly and easily.

Creating a WordPress Docker Compose and deploying a blog quickly and easily.

Tiempo de lectura: 2 minutos Hello and welcome to DevCodeLight, today we are going to learn how to deploy a WordPress using a Docker Compose that I’m going to share with all of you. The first thing we are going to do is to create this file docker-compose.yml: version: “3.1” services: myservicemariadbwp: image: mariadb restart: unless-stopped container_name: mariadb_container_wp environment: MYSQL_ROOT_PASSWORD: … Read more

Adding a customizable menu to your WordPress theme

Adding a customizable menu to your WordPress theme

Tiempo de lectura: 2 minutos Continuing from the previous post on creating a WordPress theme (https://devcodelight.com/?p=6987), now we’re going to add a customizable menu. To do this, we’ll go to header.php and add the following: <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset=”<?php bloginfo(‘charset’); ?>”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title><?php wp_title(); ?></title> <?php wp_head(); ?> </head> <nav class=”navbar navbar-expand-lg … Read more

Creating a Custom Plugin for WordPress

Creating a Custom Plugin for WordPress

Tiempo de lectura: 2 minutos Hello, today we’re going to learn how we can create a custom plugin for WordPress. Step 1: Create Folder and File Structure Inside the wp-content/plugins/ folder, create a new folder for your plugin, for example, custom-footer-message. Inside this folder, create two files: custom-footer-message.php (main plugin file) and settings.php (for settings). Step 2: Main File (custom-footer-message.php) … Read more

Create a category in WordPress

Create a category in WordPress

Tiempo de lectura: 2 minutos Photo by Alena Koval Categories in WordPress help organize and classify your content, making it easier to navigate between different pages and sections. It’s very simple to create a category in WordPress by following the steps below. First, access the WordPress admin panel with your credentials and navigate to the Categories section. To add a … Read more

Enabling Shipping Using Printful in WooCommerce

Enabling Shipping Using Printful in WooCommerce

Tiempo de lectura: < 1 minuto Hello, today we are going to learn how we can enable shipping using Printful in WooCommerce. The first thing we need to do is go to the WooCommerce settings page: Once inside, go to the shipping section: And within Printful Shipping: We activate that shipping method. DevCodeLightdevcodelight.com

Connect Printful with WooCommerce for Dropshipping

Connect Printful with WooCommerce for Dropshipping

Tiempo de lectura: 3 minutos html Copy code Reading Time: 3 minutes Hello, today we are going to learn how to connect Printful with WooCommerce to facilitate shipping without the need for storage using dropshipping. The first thing we need to do is go to the WordPress dashboard. http://localhost/wp-login/ *In case you are using localhost. Go to plugins and add … Read more

Connect Printful with Woocommerce for Dropshipping

Connect Printful with Woocommerce for Dropshipping

Tiempo de lectura: 3 minutos html Copy code Reading Time: 3 minutes Hello, today we are going to learn how we can connect Printful with WooCommerce for shipping without the need for storage using dropshipping. The first thing we need to do is go to the WordPress dashboard. http://localhost/wp-login/ *In case you are using localhost. We go to plugins and … Read more