SSamTure.net

워드프레스

HyperDB Explained Part 2

This is the second part in my effort to help explain how you can use HyperDB to scale your large WordPress, WordPress MU or Buddypress sites.     You can read the first part in the series here!    First off, again: This tutorial was written for testing and personal purposes. I make no warranty that this will […]

HyperDB Explained Part 1

HyperDB is a replacement for the standard WPDB class which adds the ability to use multiple databases. HyperDB supports partition of data as well as replication. HyperDB is a plugin written by matt, andy, ryan, & mdawaffe from Automattic.     It is written primarily as a way to help larger sites manage growth as […]

WPMU Functions/update site option

구문 function update_site_option ( $key, $value ) 설명 wp_sitemeta에 추가되어 있는 값을 수정하고자 할 때 사용하는 함수. 파라미터들 $key  (string) (required) 업데이트할 옵션의 name Default: None $value  (string) (required) 이 옵션의 value. 최대 2^32 을 넘을 수 없음 Default: None 리턴 값 Null. 예제 <?php update_site_option( ‘bp-xprofile-base-group-name’, ‘Base’ ); ?> 원문 : 워드프레스 개발자 모임 […]

플러그인 상단 제목 추가(위젯방식)

아래와 마찬가지인데~이번엔 위젯방식으로 플러그인이 추가되도록 만들어 보았다. cfile4.uf.187C020D49C39933201B1A.zip

상단 제목 추가 플러그인(DB사용)

cfile25.uf.186E720B49C3996033D607.zip 아래와 마찬가지로~플러그인개발을 처음 접하는 분들이~플러그인API를 이해하는데 도움이 될듯 쉽다. ※DB사용

상단 제목 추가 플러그인(파일저장방식)

cfile5.uf.14440F0F49C3996E673531.zip 워드프레스를 처음 접하면서 처음 만들어본 플러그인이다~ 플러그인 제작을 처음 해보는 사람이면~ 플러그인 API를 이해하는데 도움이 될 듯 하다^^ ※제목에 쓰이는 문구는 파일을 생성하여 저장하는 방식으로 만듬