Your cart is currently empty!
Category: Wordpress
왜 ‘woocommerce_update_options_shipping_’ . $this->id 이렇게 해야 할까? ‘woocommerce_update_options_shipping_. $this->id’ 로 쓰면 틀리나?
‘woocommerce_update_options_shipping_. $this->id’ 이렇게 쓰면 문법 오류가 발생합니다. 이 부분은 문자열 연결(string concatenation)과 관련된 것으로, PHP에서 올바른 문법을 사용해야 합니다. 1. 문법 차이 2. 예시 비교 3. 결론 . 연산자를 따옴표 바깥에 사용해야 $this->id 값을 포함한 동적인 문자열을 생성할 수 있습니다. 그렇지 않으면 PHP는 문자열을 그대로 해석하여, 변수를 포함한 문자열 결합이 이루어지지 않습니다. 따라서 ‘.’…
WordPress plugin 개발에서 add_filter와 add_action의 차이
add_filter와 add_action은 WordPress에서 플러그인을 개발할 때 사용하는 두 가지 주요 함수입니다. 이 두 함수는 WordPress의 Hook 시스템의 일부로, 플러그인이나 테마가 WordPress의 기본 기능을 확장하거나 수정할 수 있도록 도와줍니다. 1. Hook 시스템 개요 2. add_action add_action 함수는 WordPress가 특정 Action Hook에서 실행될 때 사용자 정의 함수를 호출하도록 등록합니다. 이 함수는 주로 작업을 수행하는 데 사용됩니다. 사용…
배송방법 추가 코드
<?php /* Plugin Name: Custom Shipping Method Plugin URI: Description: WooCommerce Custom Shipping Method Version: 1.0 Author: Your Name */ if (!defined(‘ABSPATH’)) { exit; } function custom_shipping_method_init() { if (!class_exists(‘Custom_Shipping_Method’)) { class Custom_Shipping_Method extends WC_Shipping_Method { /** * Weight unit */ private $weight_unit; /** * Constructor for shipping class */ public function __construct($instance_id = 0)…
OCI Free Tier 상시 무료 서비스의 Docker 컨테이너에 WordPress 사이트 호스팅
출처 : https://docs.oracle.com/ko/solutions/oci-free-wordpress-docker/install-and-configure1.html https://tyzen.net/2 설치 및 구성 OCI Free Tier 상시 무료 서비스의 Docker 컨테이너에 WordPress 사이트 호스팅 다음 단계에 따라 설치 및 구성을 완료합니다. Docker를 설치합니다. Docker는 WordPress를 설치 및 유지 관리하는 프로세스를 만듭니다. 이전에는 훨씬 더 쉽게 여러 소프트웨어를 필요로 합니다. MySQL를 설치합니다. WordPress를 설치하기 전에 데이터를 저장할 MySQL를 설치해야 합니다. WordPress를 설치합니다.…
Organizing Your Blog: Categories, Tags, and HTML Structure
Organizing Your Blog: Categories, Tags, and HTML Structure As a blogger, organizing your content effectively is crucial for both user experience and search engine optimization (SEO). In this post, we will explore the importance of categories and tags, and how to structure your blog using HTML elements. Categories: The Foundation of Your Blog Categories are…
When you can’t crop the image for your header for your WordPress Page
After you install your WordPress, and if you face an error like this, and if you can’t crop new image for your header on your dashboard, /var/www# php -v PHP Warning: PHP Startup: Unable to load dynamic library ‘imagick.so’ (tried: /usr/lib/php/20240924/imagick.so (/usr/lib/php/20240924/imagick.so: undefined symbol: php_strtolower), /usr/lib/php/20240924/imagick.so.so (/usr/lib/php/20240924/imagick.so.so: cannot open shared object file: No such file…
Installing WordPress on an Ubuntu Server using Nginx, PHP, and MariaDB on Oracle Cloud Infrastructure Free Tier.
Installing WordPress on an Ubuntu Server using Nginx, PHP, and MariaDB on Oracle Cloud Infrastructure Free Tier. Prerequisites Oracle Cloud Infrastructure Free Tier account Ubuntu Server instance SSH access to the server Step 1: Update System Packages sudo apt update sudo apt upgrade -y Step 2: Install Nginx Web Server sudo apt install…