분류 전체보기179 [WordPress] get_post()에 include를 썼을 때 페이징 오류가 난다면? get_post()란? - 테이블 wp_posts 안의 post들을 조회하는 워드프레스의 함수. include란? - get_post()에 쓸 수 있는 속성 키 중 하나. - array 값을 받는다. - 아래처럼 사용하면 $post_ids에 들어있는 값들을 쿼리에서 post_id IN으로 추가해 검색한다. 사용법 $args['include'] = $post_ids; 결과 쿼리 ... AND cw_posts.ID IN (#post_ids) ... 코드 .../wp-includes/post.php //include를 써도 포스트페이지 수가 강제로 바뀌지 않도록 주석처리 //$parsed_args['posts_per_page'] = count( $incposts ); 변경한 모습 2022. 5. 19. [Eclipse] 이클립스 Maven 업데이트 오류 및 ClassNotFoundException 해결 문제점 SVN으로 새로운 프로젝트를 체크아웃했는데 메이븐 업데이트 / 메이븐 인스톨 시 오류메시지가 떴다. 프로젝트 클린, 서버 클린하고, Deployment Assembly에 Maven Dependencies 추가하는 등 설정을 변경하고 서버를 실행했는데 ClassNotFoundException 오류가 났다. .../.m2/repository 하위의 파일들도 지워봤지만, 이클립스 오픈해도 메이븐 자동빌드가 안 돼서 폴더가 비어있는 그대로였다. 해결책 이렇게 하니 해결됨. 아래쪽 attribute 하나를 추가한 것이다. 참고 링크의 attribute 설정을 가져왔다. 설명에 따라 추측해보면 해당 프로젝트 소스를 최종 커밋한 사람과 이클립스 버전이 달라 자동빌드가 안 된 것 같다. 참고 링크 https:/.. 2022. 2. 4. 주니어 개발자를 위한 취업 정보 https://github.com/jojoldu/junior-recruit-scheduler GitHub - jojoldu/junior-recruit-scheduler: 주니어 개발자 채용 정보 주니어 개발자 채용 정보. Contribute to jojoldu/junior-recruit-scheduler development by creating an account on GitHub. github.com 2021. 10. 15. [면접 팁] 면접에서 자주 묻는 질문들 https://www.getrevue.co/profile/soyeebn/issues/2-803326 면접에서 자주 묻는 질문들 (2) "구글이 실시하는 면접의 목적은 지원자들이 팀에 합류한 뒤에 어떤 업무 성과를 낼 것인지 예측하는 것이다."- 라즐로 복, www.getrevue.co 2021. 10. 15. [웹사이트 취약점 점검 사이트] Crashtest Security Suite OWASP Top 10 기준에 맞는 웹사이트 취약점 점검을 1. 무료로 2. 설치 없이 간단하게 3. 보고서 형태로 만들기 쉽게 할 수 있는 사이트를 찾다가 발견한 곳. ※ Free trial(14일) 사이트 https://crashtest-security.com/#pll_switcher Vulnerability Scanning Made Easy - Crashtest Security Crashtest Security develops market-leading vulnerability scanning software for web applications - enterprise-grade with a user-friendly interface. crashtest-security.com 사용법 1. 상단의 F.. 2021. 10. 7. [JavaScript] 배열에 들어있는 값을 찾는 findIndex 함수 findIndex() var newList = []; var paramIdx = -1; var foundIdx = -1; // 모든 행 체크 for(var i=0; i < DataList.length; i++){ // 현재 체크하는 행 insertData = DataList[i]; // 첫번째 행은 무조건 넣기 if (newList.length < 1) { newList.push(insertData); newIdx++; continue; } foundIdx = newList.findIndex(function(key) {return key["name"] === insertData.name}); if (foundIdx < 0) { newList.push(insertData); newIdx++; } else .. 2021. 9. 27. 이전 1 2 3 4 5 6 ··· 30 다음