Advertisement
munirmahmud6

Defining theme and plugin

Feb 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. /*
  2. Plugin Name: WP Job Listing
  3. Plugin URI: http://themespry.com
  4. Description: Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.
  5. Author: wordpressdotorg
  6. Author URI: http://themespry.com/author/munir-mahmud/
  7. Version: 0.6.4
  8. Text Domain: wordpress-importer
  9. License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  10. */
  11.  
  12. //Exit if accessed directly
  13. if ( !defined( 'ABSPATH' ) ) {
  14. exit();
  15. }
  16.  
  17. require ( plugin_dir_path( __FILE__ ) . 'wp-job-cpt.php' );
  18.  
  19.  
  20. /*
  21. Theme Name: themespry
  22. Theme URI: http://themespry.com
  23. Author: the WordPress team
  24. Author URI: http://themespry.com
  25. Description: Our 2019 default theme is designed to show off the power of the block editor.
  26. Version: 1.2
  27. License: GNU General Public License v2 or later
  28. License URI: LICENSE
  29. Text Domain: themespry
  30. Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready
  31. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement