@frenchomatic
Hi, thats correct. But i got the solution with following code in the archive.php of my amp template:
<?php echo category_description(); ?>
Ahmed said, that there is a solution within the plugin.
@custom fields: For the bottom of the category/archive i use a custom field (content at the bottom of the category).
Now i get the content with following code:
<?php if( get_field('inhalt-unten', 'category_'.get_queried_object()->term_id) ): ?>
<div id="category_description2">
<?php
$catid = 'category_'.get_queried_object()->term_id;
the_field('inhalt-unten', $catid);
?>
</div>
<?php endif; ?>
But images are not “amp-ready”. Is the “custom-field” extension of your plugin solving this issue?