[WORDPRESS] 워드 프레스 preview_post_link
WORDPRESS워드 프레스 preview_post_link
해결법
-
1.
add_filter( 'preview_post_link', 'the_preview_fix' ); function the_preview_fix() { $slug = basename(get_permalink()); return "http://www.mywebsite.com/blog/p/$slug"; }
from https://stackoverflow.com/questions/8741485/wordpress-preview-post-link by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] 변경 보낸 사람의 이름과 특정의 WooCommerce 이메일 알림 이메일 주소 (0) | 2020.11.19 |
---|---|
[WORDPRESS] 안드로이드 HttpClient를 쿠키 불법 경로 속성을 거부 (0) | 2020.11.19 |
[WORDPRESS] 워드 프레스 (또는 htaccess로)에서 만들기 URL 별칭 (0) | 2020.11.19 |
[WORDPRESS] 워드 프레스에서 선택 쿼리 (0) | 2020.11.19 |
[WORDPRESS] 이름을 바꾸고 업로드 된 파일을 덮어 쓰기 (0) | 2020.11.19 |