New to Translating WordPress? Read through our Translator Handbook to get started. Hide
Prio | Original string | Translation | — |
---|---|---|---|
↑ | Create custom enhanced pages for categories and any taxonomy term and manage them as a custom post. | You have to log in to add a translation. | Details |
Original untranslated
Create custom enhanced pages for categories and any taxonomy term and manage them as a custom post.
You have to log in to edit this translation. Meta |
|||
↑ | Enhanced Category Pages | You have to log in to add a translation. | Details |
Original untranslatedMeta |
|||
Yes, you can pass the category/term id to <code>setup_ec_data</code> method like this (<code>$categories</code> is presumed to be an already fetched array of categories/terms):↵ <code>foreach($categories as $category) {↵ $GLOBALS['enhanced_category']->setup_ec_data($category->term_id);↵ the_post_thumbnail('thumbnail');↵ }</code> | You have to log in to add a translation. | Details | |
Original untranslated
Yes, you can pass the category/term id to <code>setup_ec_data</code> method like this (<code>$categories</code> is presumed to be an already fetched array of categories/terms):↵
<code>foreach($categories as $category) {↵
$GLOBALS['enhanced_category']->setup_ec_data($category->term_id);↵
the_post_thumbnail('thumbnail');↵
}</code>
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
<p>Create <code>content-ecp.php</code> in your theme folder to customize the display of the enhanced content. The custom post associated with category/term is set up, so all display functions for posts are usable.</p>↵ ↵ <pre><code><?php↵ global $enhanced_category;↵ // if not previously set up, then let setup_ec_data get the current query term/category↵ if (empty($categoryId)) {↵ $categoryId = null;↵ }↵ ↵ // get enhanced category post and set it up as global current post↵ $enhanced_category->setup_ec_data($categoryId);↵ ?>↵ ↵ <!-- enchanced category page (ECP) content -->↵ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>↵ ↵ <div class="post-thumbnail">↵ <?php the_post_thumbnail(); ?>↵ </div>↵ ↵ <div class="entry-content">↵ <?php the_content(); ?>↵ </div><!-- .entry-content -->↵ ↵ <?php edit_post_link( __( 'Edit'), '<footer class="entry-footer"><span class="edit-link">', '</span></footer><!-- .entry-footer -->' ); ?>↵ ↵ </article><!-- #post-## -->↵ </code></pre> | You have to log in to add a translation. | Details | |
Original untranslated
<p>Create <code>content-ecp.php</code> in your theme folder to customize the display of the enhanced content. The custom post associated with category/term is set up, so all display functions for posts are usable.</p>↵
↵
<pre><code><?php↵
global $enhanced_category;↵
// if not previously set up, then let setup_ec_data get the current query term/category↵
if (empty($categoryId)) {↵
$categoryId = null;↵
}↵
↵
// get enhanced category post and set it up as global current post↵
$enhanced_category->setup_ec_data($categoryId);↵
?>↵
↵
<!-- enchanced category page (ECP) content -->↵
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>↵
↵
<div class="post-thumbnail">↵
<?php the_post_thumbnail(); ?>↵
</div>↵
↵
<div class="entry-content">↵
<?php the_content(); ?>↵
</div><!-- .entry-content -->↵
↵
<?php edit_post_link( __( 'Edit'), '<footer class="entry-footer"><span class="edit-link">', '</span></footer><!-- .entry-footer -->' ); ?>↵
↵
</article><!-- #post-## -->↵
</code></pre>
CommentFound in installation list item. You have to log in to edit this translation. Meta |
|||
<em>Enhanced Category Post</em> (ECP) requires at least PHP 5.3 running on your server. Contact your hosting to update the PHP version. | You have to log in to add a translation. | Details | |
Original untranslated
<em>Enhanced Category Post</em> (ECP) requires at least PHP 5.3 running on your server. Contact your hosting to update the PHP version.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
Why do I get a blank screen after installing the plugin? | You have to log in to add a translation. | Details | |
Original untranslated
Why do I get a blank screen after installing the plugin?
CommentFound in faq header. You have to log in to edit this translation. Meta |
|||
WooCommerce compatible - product categories can be enhanced now | You have to log in to add a translation. | Details | |
Original untranslated
WooCommerce compatible - product categories can be enhanced now
CommentFound in description list item. You have to log in to edit this translation. Meta |
|||
<strong>NEW</strong> Genesis Framework compatible | You have to log in to add a translation. | Details | |
Original untranslated
<strong>NEW</strong> Genesis Framework compatible
CommentFound in description list item. You have to log in to edit this translation. Meta |
|||
<strong>NEW</strong> Visual Composer compatible - you can now edit the category using Visual Composer | You have to log in to add a translation. | Details | |
Original untranslated
<strong>NEW</strong> Visual Composer compatible - you can now edit the category using Visual Composer
CommentFound in description list item. You have to log in to edit this translation. Meta |
|||
<p>Display a list of categories:</p>↵ ↵ <pre><code>//$categories is presumed to be an already fetched array of categories/terms↵ foreach($categories as $category) {↵ $GLOBALS['enhanced_category']->setup_ec_data($category->term_id);↵ the_post_thumbnail('thumbnail');↵ }↵ </code></pre> | You have to log in to add a translation. | Details | |
Original untranslated
<p>Display a list of categories:</p>↵
↵
<pre><code>//$categories is presumed to be an already fetched array of categories/terms↵
foreach($categories as $category) {↵
$GLOBALS['enhanced_category']->setup_ec_data($category->term_id);↵
the_post_thumbnail('thumbnail');↵
}↵
</code></pre>
CommentFound in installation list item. You have to log in to edit this translation. Meta |
|||
<p>Display category/term page. Edit <strong>category/taxonomy template</strong> to show the content of the "Enhanced Category" (feel free to adjust to your needs):</p>↵ ↵ <pre><code>//in category.php or taxonomy.php or any other place your theme displays the category/term content↵ <?php↵ global $enhanced_category;↵ //get enhanced category post and set it up as global current post↵ $enhanced_category->setup_ec_data();↵ ?>↵ <!-- enhanced category content -->↵ <?php the_post_thumbnail("medium"); ?>↵ ↵ <?php get_template_part( 'content', 'page' ); ?>↵ ↵ <!-- custom fields -->↵ <?php↵ get_post_custom();↵ ?>↵ ↵ <?php↵ // If comments are open or we have at least one comment, load up the comment template↵ if ( comments_open() || get_comments_number() ) :↵ comments_template();↵ endif;↵ ?>↵ </code></pre> | You have to log in to add a translation. | Details | |
Original untranslated
<p>Display category/term page. Edit <strong>category/taxonomy template</strong> to show the content of the "Enhanced Category" (feel free to adjust to your needs):</p>↵
↵
<pre><code>//in category.php or taxonomy.php or any other place your theme displays the category/term content↵
<?php↵
global $enhanced_category;↵
//get enhanced category post and set it up as global current post↵
$enhanced_category->setup_ec_data();↵
?>↵
<!-- enhanced category content -->↵
<?php the_post_thumbnail("medium"); ?>↵
↵
<?php get_template_part( 'content', 'page' ); ?>↵
↵
<!-- custom fields -->↵
<?php↵
get_post_custom();↵
?>↵
↵
<?php↵
// If comments are open or we have at least one comment, load up the comment template↵
if ( comments_open() || get_comments_number() ) :↵
comments_template();↵
endif;↵
?>↵
</code></pre>
CommentFound in installation list item. You have to log in to edit this translation. Meta |
|||
<em>Enhanced Category</em> posts are deleted when the plugin is deleted using the WordPress plugin management page. Note: nothing is deleted when the plugin deactivated. | You have to log in to add a translation. | Details | |
Original untranslated
<em>Enhanced Category</em> posts are deleted when the plugin is deleted using the WordPress plugin management page. Note: nothing is deleted when the plugin deactivated.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
<em>Enhanced Category</em> Post (ECP) is synchronized in both directions with it's corresponding category i.e. category name - ECP title, category slug - ECP slug, category description - ECP excerpt. | You have to log in to add a translation. | Details | |
Original untranslated
<em>Enhanced Category</em> Post (ECP) is synchronized in both directions with it's corresponding category i.e. category name - ECP title, category slug - ECP slug, category description - ECP excerpt.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
<em>Enhanced Category</em> (safe name: enhancedcategory) custom post type is created and a post is generated automatically for each category/term. | You have to log in to add a translation. | Details | |
Original untranslated
<em>Enhanced Category</em> (safe name: enhancedcategory) custom post type is created and a post is generated automatically for each category/term.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
We use the <code>category_description</code> or <code>get_the_archive_description</code> filters in order to replace the plain content with the enhanced one. | You have to log in to add a translation. | Details | |
Original untranslated
We use the <code>category_description</code> or <code>get_the_archive_description</code> filters in order to replace the plain content with the enhanced one.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
Export as
Comment
Short description.