소스 검색

Show dead sites on single-site map and in download data

master
Adrian Short 9 년 전
부모
커밋
1f99ccafcc
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -0
      includes/map.php
  2. +1
    -1
      includes/sites.php

+ 1
- 0
includes/map.php 파일 보기

@@ -12,6 +12,7 @@ function talhyperlocal_map_shortcode( $id ) {

if ( $id ) {
$options['p'] = $id;
$options['post_status'] = array( 'publish', 'archive' );
}




+ 1
- 1
includes/sites.php 파일 보기

@@ -8,7 +8,7 @@ require_once( '../../../../wp-load.php' );
$options = array(
'post_type' => 'site',
'posts_per_page' => -1, // -1 for all posts
'post_status' => 'publish',
'post_status' => array( 'publish', 'archive' ),
'orderby' => 'title',
'order' => 'ASC'
);


불러오는 중...
취소
저장