Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 260 Bytes

file-management.md

File metadata and controls

10 lines (10 loc) · 260 Bytes

Create File into wp-content Folder

// create a file to wp-content folder name "test.json"
  $file = WP_CONTENT_DIR . '/test.txt';
  if ( ! file_exists( $file ) ) {
    $fp = fopen( $file, 'w' );
    fwrite( $fp, 'test' );
    fclose( $fp );
  }