Skip to content

Instantly share code, notes, and snippets.

View khoipro's full-sized avatar
💭
#devops #wordpress #vuejs #docker

Nguyễn Minh Khôi khoipro

💭
#devops #wordpress #vuejs #docker
View GitHub Profile
@khoipro
khoipro / Runcloud.md
Last active August 7, 2024 19:36
Hardening Runcloud VPS

Hardening VPS in Runcloud

Change SSH port

Step 1: Visit Dashboard > Choose Server > Security

Add New Rule
Globally Open Port, port 2040 (or your port)
Protocal: TCP
@khoipro
khoipro / sample-lazyload-sections.php
Last active January 8, 2024 22:02
Sample section lazyload using <noscript> - DRAFTING
<?php
/** Drafting **/
add_filter('the_content', 'codetot_lazyload_home_sections', 1000);
function codetot_lazyload_home_sections( $content ) {
$front_page_id = get_option('page_on_front');
if ( ! is_page( $front_page_id ) ) {
return $content;
}
@khoipro
khoipro / yoast-seo.php
Last active November 1, 2023 12:34
Get Yoast SEO meta by calling a DB
<?php
function get_yoast_seo_category_meta_title( $object_id) {
global $wpdb;
$table_name = $wpdb->prefix . 'yoast_indexable';
$result = $wpdb->get_row( $wpdb->prepare("SELECT title FROM $table_name WHERE `object_id` = '%s' AND `object_sub_type` = 'category';", $object_id), ARRAY_A );
return $result['title'] ?? 'None';
@khoipro
khoipro / .htaccess
Created September 12, 2023 03:52
Server config rules for set X-Robot-Tags
# For Apache, Litespeed
<Files ~ "\.(pdf|doc|docx|xls|xlsx|ppt|pptx)$">
Header set X-Robots-Tag "noindex, nofollow"
</Files>
@khoipro
khoipro / wp-php-coding-standards.php
Last active August 26, 2023 13:11
WP PHP Coding Standards
<?php
/**
* WP PHP Coding Standards
*
* @package CodingStandards
* @author codetot
**/
// To start a new PHP file, append phpDocs
/**
@khoipro
khoipro / wp-theme-standard.php
Last active August 26, 2023 04:50
Escape WordPress Sample PHP code
<?php
/** Sample escape output for WordPress theme
* @author codetot
* @package codeStandard
**/
?>
<?php // Simple escape html // ?>
<h2 class="product-card__title"><?php echo esc_html( $title ); ?></h2>
@khoipro
khoipro / functions.php
Created July 28, 2023 07:42
Fix Rankmath pro - product category schema
<?php
add_filter('rank_math/json_ld', 'codetot_product_rich_snippet_schema', 100);
/**
* Fix RankMath missing `AggregateRating` on product category schema
*
* @author codetot
*/
function codetot_product_rich_snippet_schema( $data ) {
@khoipro
khoipro / README.md
Created July 28, 2023 06:48
Câu hỏi phỏng vấn vị trí Frontend Developer tại Code Tốt

Dưới đây là một số mẫu câu hỏi mà Code Tốt đặt ra với ứng viên. Chúng tôi hi vọng dù bạn biết đó là câu hỏi trong buổi phỏng vấn, thì việc đọc những nội dung này cũng sẽ giúp ích cho kiến thức bạn cần tìm hiểu và thực hành. Càng tìm hiểu và làm sát vấn đề chúng tôi nêu ra, bạn càng có cơ hội tiếp cận sâu hơn với mảng lập trình web.

Phần lớn ứng viên đạt tỷ lệ từ 75% trở lên sẽ được gia nhập đội ngũ của chúng tôi.

Nếu bạn đã sẵn sàng, hãy liên hệ với bộ phận Tuyển dụng của Code Tốt nhé.

Công cụ lập trình

@khoipro
khoipro / functions.php
Last active August 31, 2023 01:18
Fix Rank Math product schema (single product)
<?php
/**
* Fix missing review on product schema (Rank Math)
*
* @author codetot
**/
function codetot_update_missing_product_schema( $entity ) {
$stampedDBData = get_post_meta(get_queried_object_id(), 'stamped_io_product_reviews_new', true);
@khoipro
khoipro / .lando-example.yml
Created February 4, 2023 03:29
Best practice with .lando config
# With php XDEBUG on or off
tooling:
xdebug-on: # run: lando xdebug-on
service: appserver
description: Enable xdebug for apache.
cmd: "docker-php-ext-enable xdebug && /etc/init.d/apache2 reload"
user: root
xdebug-off: # run: lando xdebug-off
service: appserver
description: Disable xdebug for apache.