반응형

wordpress 4

[AWS] How to build WordPress with LightSail

How to build WordPress with LightSail 1. LightSail 생성 2. WordPress 계정생성 3. 워드프레스 접속 4. IP 고정 How to build WordPress with LightSail 여러 방법으로 WordPress를 운영하는 방법이 있겠지만, 여기에서는 AWS의 LightSail을 이용하여 WordPress를 구축해 볼 예정입니다. 1. LightSail 생성 https://lightsail.aws.amazon.com/ls/webapp/home/instances https://lightsail.aws.amazon.com/ls/webapp/home/instances lightsail.aws.amazon.com 저는 리눅스 환경에서 워드프레스를 실행시키기 ..

[WordPress] Google AdSense를 Wordpress에 인증하는 방법

1. 사이트 추가 https://www.google.com/adsense Google 애드센스 - 웹사이트에서 수익 창출하기 Google 애드센스의 웹사이트 수익 창출 기능을 사용하여 수익을 올려보세요. Google 애드센스에서 광고 크기를 자동으로 최적화하여 광고의 노출 및 클릭 가능성이 높아집니다. adsense.google.com [애드센스] - [사이트] - [+ 새 사이트] 클릭 도메인 입력 - [저장] 2. 인증 방법 #1. 애드센스 코드 스니펫 추가 애드센스 코드 복사 [워드프레스] - [외모] - [테마 파일 폅집기] [header.php] 파일 클릭 - 태그 사이에 애드센스에서 복사한 애드센스 코드 스니펫 추가 2. 인증방법 #2. Ads.txt 스니펫 추가 [Ads.txt 스니펫] - ..

[AWS] Light Sail에서 WordPress를 구축하는 방법

To Build WordPress 여러 방법으로 WordPress를 운영하는 방법이 있겠지만, 여기에서는 AWS의 LightSail을 이용하여 WordPress를 구축해볼 예정입니다. 1. LightSail 생성 https://lightsail.aws.amazon.com/ls/webapp/home/instances https://lightsail.aws.amazon.com/ls/webapp/home/instances lightsail.aws.amazon.com 저는 리눅스 환경에서 워드프레스를 실행시키기 위해 Platform을 "Linux/Unix"로 선택했고, blueprint를 "Apps + OS"의 "WordPress"로 선택했습니다. 그 다음 부분은 대부분 추가적인 사항들이라 우선 무시하고 가격 ..

[Kotlin] "Vibrator" 사용하는 방법

1. AndroidManifest.xml 설정 ... ... 어플에서 진동을 사용하기 위해 권한을 추가해 줍니다. 2. Vibrator 객체 생성 /** * @description 진동 객체 반환 * @param context 해당 컨텍스트 */ fun getVibrator(context:Context):Vibrator{ if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { return context.getSystemService(Vibrator::class.java) }else{ @Suppress("DEPRECATION") return context.getSystemService(Context.VIBRATOR_SERVICE) as Vibrator } } Andr..

반응형