상세 컨텐츠

본문 제목

워드프레스 권한 및 외부 post(프론트엔드포스트) 기능

PHP(Class)

by 김일국 2017. 8. 18. 19:59

본문

워드프레스 기존 사용자 4가지

- Admins (관리자)

- Editors (편집자) : 타인의 포스트를 삭제/수정/공개/삭제 가능

- Authors (글쓴이) : 본인의 포스트를 삭제/수정/공개/삭제 가능

- Contributors (기여자) : 읽기/글추가(관리자승인후 글공개됨)/댓글 달기 가능. 수정/삭제 불가능

- Subscriber (구독자) : 읽기/댓글 달기 가능

*아카이브 컨텐츠를 WP포스트방식(사용)을 사용할때 basic은 무료로 사용가능.
https://wordpress.org/plugins/user-submitted-posts/
https://wordpress.org/plugins/wp-user-frontend/

위 플러그인 설치 후 회원로그인(SNS소셜인증시) 구독자로 권한을 받을때

SNS소셜인증자가 글을 쓰면 않되는 상황이기 때문에

wp-user-frontend 플러그인 기준

wp-user-frontend/class/subscription.php 라인 975 부근 수정코드 추가

/*수정 시작*/
   $is_user_postlock2 =  get_user_meta( get_current_user_id(), 'wp_user_level', true );
   /*수정 끝*/
            if ( $is_user_postlock == 'yes' || $is_user_postlock2 < 7 )  {

//추가한 코드 || $is_user_postlock2 < 7 (편집자 레벨은 7, 최고관리자는 10)


wp-user-frontend/wpuf-functions.php 라인 431 부근 수정코드 추가

if ( $lock == 'yes' ) {
            return $user->wpuf_lock_cause;
        }else{//else추가
   return '편집자만 쓰기가 가능 합니다.';
  }


wp-user-frontend 플러그인 기준

워드프레스 기본 설치 후 메인페이지에 출력된 글들의 페이징에서 이동시 404 Not Found 에러가 나올때는

관리자에서 페이지를 1개 생성 후 정적메인페이지 템플릿을 테마 사용자정의 화면에서 연결 시키시면 됩니다.(아래)

전면페이지 - 홈 내용(아래)


- 홈(전면페이지)에 상용되는 각종 쿼리 들(wp_pagenavi 플러그인 대신 Ajax페이징 처리 포함)

<?php
/*
Template Name: 정적메인
*/
?>
<?php get_header(); the_post(); ?>
<div class="content">
 <div class="post">
     <div class="article">
  
 <?php  
 global $wp_query, $paged;
 if ( get_query_var('paged') ) { $paged = get_query_var('paged'); }
 elseif ( get_query_var('page') ) { $paged = get_query_var('page'); }
 else { $paged = 1; }
 query_posts(array(
    //'post_type' => 'post',//page
    'cat' => 2,
  //'tag' => '인기',
    /*
   'meta_query' => array(
     array(
       'key' => '_fav',
       'value' => '추천',
       'compare' => '='
     )
   ),
   */
   'posts_per_page'   => 2,
   'paged' => $paged,
 ));
 ?>
 <?php while ( have_posts() ) : the_post(); ?>
  <div class="item item-<?php the_ID(); ?>">
   <figure class="effect-julia">
    <?php
    if ( has_post_thumbnail() )
     the_post_thumbnail( 'home' );
    else
     echo '<img src="./images/no-image.jpg" alt="" />';
    
    ?>
    <figcaption>
     <h2><?php the_title(); ?>
     <?php
     echo get_post(get_the_ID()) -> post_title;
     echo get_the_category( get_the_ID() )[0]->name;
     echo get_the_category( get_the_ID() )[0]->term_id;
     echo get_the_category( get_the_ID() )[0]->slug;
     echo '카테고리개수';
     echo get_term( get_the_category( get_the_ID() )[0]->term_id ,'category')->count;
     echo get_post_meta(get_the_ID(),'_fav',true);
     ?>
     </h2>
     <div><a href="<?php the_permalink(); ?>">
      <p><?php echo wp_trim_words( strip_shortcodes( get_the_excerpt() ) , 10 ); ?></p인물>
      <p class="more-link-p">더보기</p></a>
     </div>
     <a href="<?php the_permalink(); ?>">더보기</a>
    </figcaption>
   </figure>
  </div>
 <?php endwhile; ?>
 <?php //wp_pagenavi();//http://sgwordpress.com/teaches/how-to-add-wordpress-pagination-without-a-plugin/?>
 <style>
.pagination {
clear:both;
padding:20px 0;
position:relative;
font-size:11px;
line-height:13px;
}
 
.pagination span, .pagination a {
display:block;
float:left;
margin: 2px 2px 2px 0;
padding:6px 9px 5px 9px;
text-decoration:none;
width:auto;
color:#fff;
background: #555;
}
 
.pagination a:hover{
color:#fff;
background: #3279BB;
}
 
.pagination .current{
padding:6px 9px 5px 9px;
background: #3279BB;
color:#fff;
}
</style>
 <?php
 function pagination($pages = '', $range = 4)
 { 
     $showitems = ($range * 2)+1; 
 
     global $paged;
     if(empty($paged)) $paged = 1;
 
     if($pages == '')
     {
         global $wp_query;
         $pages = $wp_query->max_num_pages;
         if(!$pages)
         {
             $pages = 1;
         }
     }  
 
     if(1 != $pages)
     {
         echo "<div class=\"pagination\"><span>Page ".$paged." of ".$pages."</span>";
         if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."' onclick='onclick='ajaxclick(this);return false;'>« First</a>";
         if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."' onclick='onclick='ajaxclick(this);return false;'>‹ Previous</a>";
 
         for ($i=1; $i <= $pages; $i++)
         {
             if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems ))
             {
                 echo ($paged == $i)? "<span class=\"current\">".$i."</span>":"<a onclick='ajaxclick(this);return false;' href='".get_pagenum_link($i)."' class=\"inactive\">".$i."</a>";
             }
         }
 
         if ($paged < $pages && $showitems < $pages) echo "<a onclick='onclick='ajaxclick(this);return false;' href=\"".get_pagenum_link($paged + 1)."\">Next ›</a>"; 
         if ($paged < $pages-1 &&  $paged+$range-1 < $pages && $showitems < $pages) echo "<a onclick='onclick='ajaxclick(this);return false;' href='".get_pagenum_link($pages)."'>Last »</a>";
         echo "</div>\n";
     }
 }
 ?>
 <script>
 function ajaxclick(obj)  {
 //alert(obj.getAttribute("href"));
 var link = obj.getAttribute("href");
 //alert(link);
        jQuery('.pagination').html('Loading...');
        jQuery('.article').load(link+' .article');
 }
 </script>
 <?php if (function_exists("pagination")) {
    pagination($additional_loop->max_num_pages);
} ?>
 
 <?php
 wp_reset_postdata();
 ?>

     </div>
 </div>
</div><!-- //content -->
<?php get_footer(); ?>

관련글 더보기

댓글 영역