Community
프랜차이즈부터 스타트업까지 다양한 프로젝트 유형
AWS EC2 사용시 NPM 멈춤 현상
npm 사용 시 인스턴스 멈춤 현상이 있다면 가용 메모리를 체크한다. 대부분 micro 급 이하 인스턴스에서는 메모리가 1G 이하이므로 npm이 정상 작동되지 않을 수 있다. 메모리를 증량하면 정상 작동한다.
워드프레스 구텐버그 로드 비활성화
function smartwp_remove_wp_block_library_css(){ wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); } add_action( 'wp_enqueue_scripts', 'smartwp_remove_wp_bloc…
OpenLiteSpeed 엔진에서 퍼멀링크 재정의
OpenLiteSpeed 엔진 사용시 워드프레스 퍼멀링크를 변경하면 오류가 생기는 경우가 있다. Nginx 또는 Apache 엔진은 퍼멀링크 규칙을 변경하면 .htaccess 자동으로 재작성하여 별다른 작업 없이 적용 가능하다. 하…
캐시 예외 설정
index.php?rest_route=/contact-form-7/v1/contact-forms/759/refill 워드프레스 각종 캐시 설정시 Contact Form 7 관련 예외처리 URL
the_content() 본문 이미지 추출
function get_first_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches)…
TXT Record로 Let’s Encrypt SSL 인증서 발급
certbot certonly -d domain.com --manual --preferred-challenges dns 인증서 발급시 A레코드 갱신 대기, 누락 등의 이유로 인증되지 않을 때 TXT레코드로 시도하여 정상 발급하기
Search Meter와 Relevanssi 연동
function switch_search_meter_priority() { remove_filter( 'the_posts', 'tguy_sm_save_search', 20 ); add_filter( 'the_posts', 'tguy_sm_save_search', 100 ); } add_action( 'init', 'switch_search_meter_pr…
Android 웹뷰 구글 로그인 이슈
webView.getSettings().setUserAgentString("app.name"); 웹뷰 사용시 UserAgent 추가하여 구글 로그인 지원