{"id":204157,"date":"2024-10-06T09:01:16","date_gmt":"2024-10-06T09:01:16","guid":{"rendered":"https:\/\/it.wordpress.org\/plugins\/prjcts\/"},"modified":"2024-11-30T09:14:09","modified_gmt":"2024-11-30T09:14:09","slug":"prjcts","status":"publish","type":"plugin","link":"https:\/\/tah.wordpress.org\/plugins\/prjcts\/","author":21152110,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"1.0.3","stable_tag":"1.0.3","tested":"6.7.5","requires":"5.0","requires_php":"7.0","requires_plugins":null,"header_name":"Prjcts","header_author":"Matteo Conti","header_description":"Create and showcase your projects with a custom post type, categories, and flexible URL settings for your portfolio or work archive.","assets_banners_color":"333333","last_updated":"2024-11-30 09:14:09","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"","header_author_uri":"https:\/\/mttconti.com","rating":0,"author_block_rating":0,"active_installs":0,"downloads":1948,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","changelog"],"tags":{"1.0.1":{"tag":"1.0.1","author":"mttconti","date":"2024-10-06 09:15:07"},"1.0.2":{"tag":"1.0.2","author":"mttconti","date":"2024-10-06 15:37:50"},"1.0.3":{"tag":"1.0.3","author":"mttconti","date":"2024-11-30 09:14:09"}},"upgrade_notice":[],"ratings":[],"assets_icons":{"icon-128x128.jpg":{"filename":"icon-128x128.jpg","revision":3163460,"resolution":"128x128","location":"assets","locale":""},"icon-256x256.jpg":{"filename":"icon-256x256.jpg","revision":3163460,"resolution":"256x256","location":"assets","locale":""}},"assets_banners":{"banner-1544x500.jpg":{"filename":"banner-1544x500.jpg","revision":3163460,"resolution":"1544x500","location":"assets","locale":""},"banner-772x250.jpg":{"filename":"banner-772x250.jpg","revision":3163460,"resolution":"772x250","location":"assets","locale":""}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.1","1.0.2","1.0.3"],"block_files":[],"assets_screenshots":[],"screenshots":[],"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[1794,92,789,10302,14074],"plugin_category":[43],"plugin_contributors":[232584],"plugin_business_model":[],"class_list":["post-204157","plugin","type-plugin","status-publish","hentry","plugin_tags-custom-post-type","plugin_tags-custom-taxonomy","plugin_tags-portfolio","plugin_tags-projects","plugin_tags-works","plugin_category-customization","plugin_contributors-mttconti","plugin_committers-mttconti"],"banners":{"banner":"https:\/\/ps.w.org\/prjcts\/assets\/banner-772x250.jpg?rev=3163460","banner_2x":"https:\/\/ps.w.org\/prjcts\/assets\/banner-1544x500.jpg?rev=3163460","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/prjcts\/assets\/icon-128x128.jpg?rev=3163460","icon_2x":"https:\/\/ps.w.org\/prjcts\/assets\/icon-256x256.jpg?rev=3163460","generated":false},"screenshots":[],"raw_content":"<!--section=description-->\n<p>\"Prjcts\" is the ideal plugin for WordPress theme developers who want to integrate a simple custom post type to organize and showcase projects. It\u2019s perfect for implementing portfolios in themes designed for creatives, photographers, artists, and more.<\/p>\n\n<h4>Key Features:<\/h4>\n\n<ul>\n<li>Custom Post Type: Easily create and manage individual projects, perfect for portfolios, case studies, and galleries.<\/li>\n<li>Custom Categories: Organize projects with tailored categories for intuitive navigation.<\/li>\n<li>Flexible URLs: Customize project archive and taxonomy URLs to optimize SEO and enhance user experience.<\/li>\n<li>Optimized Performance: Developed following WordPress best practices for smooth integration.<\/li>\n<\/ul>\n\n<h4>Benefits for Theme Developers:<\/h4>\n\n<ul>\n<li>Time-Saving: Rapid implementation of a custom post type to organize and showcase projects without coding from scratch.<\/li>\n<li>Flexibility: Offer clients the power to organize their work professionally.<\/li>\n<\/ul>\n\n<h3>Usage<\/h3>\n\n<p>There are several ways to display Custom Post Types (CPT) and custom taxonomies in a WordPress theme. Here are some basic examples:<\/p>\n\n<ul>\n<li>Single Template (single-prjcts.php): When you create a CPT, you can create a specific template to display individual posts of that type by using a single-{post_type}.php file.<\/li>\n<li>Archive Template (archive-prjcts.php): To display a list of all posts of a particular CPT, you can create an archive-{post_type}.php file.<\/li>\n<li>Custom Taxonomy Template (taxonomy-prjcts_category.php): To display terms of a custom taxonomy associated with the CPT, you can create a file like taxonomy-{taxonomy}.php, where 'prjcts_category' is the name of the taxonomy.<\/li>\n<li><p>You can use WP_Query to create custom queries anywhere in your theme. For example, if you want to display posts from a CPT on a specific page, you can create a new query:<\/p>\n\n<pre><code>    &lt;?php\n\n    &#036;args = array(\n        'post_type' =&gt; 'prjcts',\n        'posts_per_page' =&gt; 10,\n    );\n\n    &#036;the_query = new WP_Query(&#036;args);\n\n    if (&#036;the_query-&gt;have_posts()) :\n        while (&#036;the_query-&gt;have_posts()) : &#036;the_query-&gt;the_post();\n\n            \/\/ YOUR MARKUP HERE\n\n        endwhile;\n        wp_reset_postdata();\n    else :\n        echo 'No posts found';\n    endif;\n\n    ?&gt;\n<\/code><\/pre><\/li>\n<\/ul>\n\n<!--section=installation-->\n<h4>Automatic Installation (Recommended)<\/h4>\n\n<ol>\n<li>Log in to your WordPress dashboard.<\/li>\n<li>Navigate to \"Plugins\" &gt; \"Add New\".<\/li>\n<li>In the search field, type \"Prjcts\".<\/li>\n<li>Once you've found the plugin, click \"Install Now\".<\/li>\n<li>After installation, click \"Activate\" to enable the plugin on your site.<\/li>\n<\/ol>\n\n<h4>Manual Installation<\/h4>\n\n<ol>\n<li>Download the plugin zip file from the WordPress plugin repository or from where you've made it available.<\/li>\n<li>Log in to your WordPress dashboard.<\/li>\n<li>Navigate to \"Plugins\" &gt; \"Add New\".<\/li>\n<li>Click the \"Upload Plugin\" button at the top of the page.<\/li>\n<li>Choose the downloaded zip file and click \"Install Now\".<\/li>\n<li>Once installation is complete, click \"Activate\".<\/li>\n<\/ol>\n\n<h4>Post-Installation Setup<\/h4>\n\n<p>Navigate to \"Projects\" in your WordPress dashboard menu to start adding new projects. To customize plugin settings, go to \"Projects\" &gt; \"Settings\" in the dashboard, here you can modify the slugs for your project archive page and custom taxonomy<\/p>\n\n<!--section=changelog-->\n<h4>1.0.3<\/h4>\n\n<ul>\n<li>Tested up to WordPress version 6.7<\/li>\n<\/ul>\n\n<h4>1.0.2<\/h4>\n\n<ul>\n<li>Fixed a text error in the readme.txt file<\/li>\n<\/ul>\n\n<h4>1.0.1<\/h4>\n\n<ul>\n<li>Initial release<\/li>\n<\/ul>","raw_excerpt":"Effortlessly create a custom post type to organize projects with custom categories and flexible URL settings, perfect for WordPress theme developers.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/204157","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=204157"}],"author":[{"embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/mttconti"}],"wp:attachment":[{"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=204157"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=204157"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=204157"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=204157"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=204157"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/tah.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=204157"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}