본문 바로가기 메뉴 바로가기

VoidNoble IT Zone

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

VoidNoble IT Zone

검색하기 폼
  • 분류 전체보기 (720)
    • AI (1)
    • 모바일 (119)
      • Flutter (0)
      • React Native (1)
      • 모바일웹 (20)
      • Android (54)
      • iOS (39)
      • 윈도우모바일 (1)
    • 웹프로그래밍 (313)
      • html (12)
      • js (77)
      • css (31)
      • NodeJS (13)
      • Python (1)
      • PHP (42)
      • ASP Classic (68)
      • GoLang (1)
      • Wordpress (6)
      • JSP (3)
      • .NET (6)
      • Scala (1)
      • XML (4)
      • 웹접근성 (6)
      • Adobe Air & Flex (2)
    • SQL (35)
      • MS-SQL (26)
      • MySql (5)
      • MongoDB (2)
    • OS-서버-서비스 (152)
      • macOS (9)
      • Docker (9)
      • CloudFlare (1)
      • NginX (5)
      • Git (3)
      • AWS (6)
      • Azure (4)
      • 구글 DFP (광고서버) (1)
      • Windows (72)
      • Elasticsearch (3)
      • IoT (1)
      • Linux (27)
    • 응용프로그래밍 (11)
      • Java (1)
      • C# (8)
      • Visual Basic (0)
      • VB.NET (0)
    • 디자인 (16)
      • Photoshop (5)
      • illustrator (0)
      • Flash (1)
      • 웹디자인 (6)
      • 디자인 리소스 (1)
      • Inspiration (0)
    • Tools (12)
      • Visual Studio Code (5)
      • sublime text (1)
      • PHPStorm (4)
    • 개발 옆차기 (1)
    • 서비스들 (18)
    • 용어?영어? (2)
    • 문서-사무-OA (0)
    • 자료실 (34)
    • 하드웨어 (0)
    • 네트워크 (2)
    • 개발자 생활로그 (4)
  • 방명록

워드프레스 (10)
사용자 지정 게시 유형 post type과 분류 taxonomy

사용자 지정 게시 유형 = post type 사용자 지정 분류 = taxonomy "book"이라는 사용자 지정 게시 유형에 "genres (장르)"와 "writers (저자)"라고 정의 분류를 추가 // init 액션에 연결하여 그 타이밍에 create_book_taxonomies를 호출 // add_action('init', 'create_book_taxonomies', 0); // "book"사용자 정의 게시 유형에 genres와 writers 두 개의 사용자 정의 분류를 만들 function create_book_taxonomies() { // (카테고리 같은) 계층화 된 사용자 분류를 새롭게 추가 $labels = array( 'name'=> _x('Genres', 'taxonomy genera..

웹프로그래밍/Wordpress 2015. 1. 20. 12:23
워드프레스 CRUD

http://biscuitpress.kr/503

웹프로그래밍/Wordpress 2015. 1. 5. 23:01
워드프레스 index.php 부터 코드 흐름

http://biscuitpress.kr/518

웹프로그래밍/Wordpress 2015. 1. 5. 22:52
워드프레스 훅 - 액션/필터

http://codex.wordpress.org/ko:Plugin_API

웹프로그래밍/Wordpress 2015. 1. 5. 22:41
워드프레스 함수

http://codex.wordpress.org/ko:Function_Reference

웹프로그래밍/Wordpress 2015. 1. 5. 22:40
워드프레스 글번호 얻기

http://codex.wordpress.org/Function_Reference/get_the_ID#Store_the_ID

웹프로그래밍/Wordpress 2015. 1. 5. 22:33
워드프레스 사이트/경로 이전

목표 = 사이트 이전 + /wp 경로를 / 로 이전 웹 = 압축하여 FTP로 전송시키고 이전 서버에 압축 해제 DB = MySQL Workbench > Navigator > Management > Data Export 로 내보내고 이전서버에 Data Import/Restore 로 복원 컨텐츠 = SET SQL_SAFE_UPDATES=0; # 사이트 기본 경로 설정 update wp_options set option_value='http://{도메인}' where option_name='siteurl'; update wp_options set option_value='http://{도메인}' where option_name='home'; # 컨텐츠 도메인 클리어 update wp_posts set post..

웹프로그래밍/PHP 2014. 12. 16. 15:40
IIS 워드프레스 고유주소(Permalink) URL 재작성(ReWrite) 설정

Apache 라면 .htaccess 파일에 URL ReWrite 설정 하면 되는데 IIS에서는 무용지물 IIS 7이상 에서는 web.config 에 URL 재작성 설정하면 되며 아래에 2가지 방법을 제시. (IIS 6는 별도의 ReWrite ISAPI 필요) 방법1.IIS 관리자 (Win + R > inetmgr)에서 URL 재작성을 더블클릭 (URL 재작성 없으면 Web Platform Installer 로부터 설치) 규칙 추가 > 빈 규칙 > 확인 아래와 같이 설정 인바운드 규칙 wordpress 가 추가되어 있다면 완료. 방법2.사이트 루트의 web.config 파일을 텍스트 편집기로 열고 위에 아래의 rewrite rule을 추가한다. (http://www.iis.net/learn/extensio..

웹프로그래밍/PHP 2014. 12. 16. 15:13
IIS 워드프레스 권한설정 for 업데이트

WordPress 설치 루트 폴더에 IUSR 계정(없으면 추가)에 모든 권한 부여

웹프로그래밍/PHP 2014. 12. 16. 10:54
워드프레스 코멘트(댓글) 사용자정의 관련 링크들

http://stackoverflow.com/questions/11333810/how-to-customize-wordpress-comment-formhttp://codex.wordpress.org/Function_Reference/comments_templatehttp://www.1stwebdesigner.com/wordpress/comment-form-customization/http://chipcullen.com/altering-the-comment-form-in-wordpress/

웹프로그래밍 2013. 1. 27. 14:08
이전 1 다음
이전 다음
공지사항
  • 비방 욕설 의견은 바로 삭제해 드립니다
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • Make Use Of
  • How to geek
  • 인터넷 통계정보 검색시스템
  • 트위터 공유 정보모음
  • 웹표준KR
  • 치우의 컴맹탈출구
  • Dev. Cheat Sheets
  • w3schools
  • Dev. 조각들
  • ASP Ajax Library
  • CSS Tricks
  • WebResourcesDepot
  • jQuery Selectors Tester
  • DeveloperSnippets
  • Smashing Magazine
  • Nettuts+
  • devListing
  • 웹 리소스 사이트(한)
  • Mobile tuts+
  • Dream In Code
  • Developer Tutorials
  • CSS3 Previews
  • 자북
  • 안드로이드 사이드
  • Code Visually
  • Code School
  • SQLer.com
  • 무료 파워포인트 템플릿
  • iconPot
  • Free PowerPoint Templates
  • Design Bombs
  • Web Designer Wall
  • 1st Webdesigner
  • Vandelay Design
  • 무료 벡터 이미지 사이트들
  • Tripwire Magazine
  • Web TrendSet
  • WebMonkey
  • 윤춘근 프리젠테이션 디자이너 블로그
  • cz.cc 무료 DNS
  • [웹하드] MediaFire
  • [웹하드] DivShare
  • 한컴 인터넷 오피스
TAG
  • IE
  • ASP
  • iis
  • nginx
  • Docker
  • Mac
  • Prototype
  • Wordpress
  • Android
  • mssql
  • 한글
  • iphone
  • IOS
  • JSON
  • classic asp
  • centos
  • Debug
  • 안드로이드
  • javascript
  • nodejs
  • Linux
  • 워드프레스
  • JQuery
  • CSS
  • git
  • macos
  • sencha touch
  • PHP
  • laravel
  • API
more
«   2025/05   »
일 월 화 수 목 금 토
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바