Create custom loops and edit it's posts with an easy drag-and-drop interface. Override the post's title, content, excerpt and images. Then d
Yep. Create a template in your theme and call it cursorial-widget.php.
The loop in the template file is already initiated. You'll just need to
do the while loop like so ...
<ul>
<?php
# In cursorial-widget.php
while ( have_posts() ) : the_post(); ?>
<li>
<h4><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php echo esc_attr( get_the_title() ); ?>"><?php the_title(); ?></a></h4>
</li>
<?php endwhile; ?>
</ul>
Yes you can.
Create a template in you theme and call it cursorial-admin-blocks.php
or cursorial-admin-blocks-BLOCK-ADMIN-NAME.php. The BLOCK-ADMIN-NAME
should be replaced by the key for the specified group of blocks in the
admin array in register_cursorial().
The administration functionality is mainly done with some jQuery-plugins. See ´templates/cursorial-admin-block.php´ in the plugin directory to see how the jQuery plugins are applied.