Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. 1. buat file download.php taruh di root domain
  2.  
  3. 2. isi dengan ini:
  4.  
  5. <?php
  6. require( dirname( __FILE__ ) . '/wp-load.php' );
  7. require_once(TEMPLATEPATH . '/downloads.php');
  8. ?>
  9.  
  10. 3. buat file download.php taruh di direktori template wordpress
  11.  
  12. 4. isi dengan ini:
  13.  
  14. <?php get_header(); ?>
  15.  
  16. isi sesuai dengan theme, bisa kopi dari single.php atau search.php atau index.php
  17.  
  18. <?php get_footer(); ?>
  19.  
  20. untuk membuat permalink domain.com/download/bla-bla-bla
  21.  
  22. gunakan .htaccess atau custom routing
  23.  
  24. tutorial menyusul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement