Plugin nebyl testován na 3 nejnovějších verzích WordPressu. Nemusí už být tedy podporován a u novějších verzí WordPressu může mít problémy s kompatibilitou a může být nestabilní.

Post Moon

Popis

This plugin lets you debugging your AJAX actions to your WordPress site.

Snímky obrazovky

  • The view of the results after AJAX request.

Instalace

  1. Download the plugin.
  2. Activate the plugin in the WordPress Admin Panel.
  3. Usage of the plugin:
    Shortcode: „[moon selector=“my_products“ category=“laptops“ method=“post“ action=“postmoon“ post_type=“product“ ppp=“5″ order=“DESC“]
    or in php place do_shortcode(‚[moon selector=“my_products“ category=“laptops“ method=“post“ action=“postmoon“ post_type=“product“ ppp=“5″ order=“DESC“]‘)“.

    The „selector“ is ID of the your DOM element.

    function.php very basic example of the code:

„function postmoon_action_method(){
if(isset($_POST[„post_type“])){
$args = array(
‚posts_per_page‘ => sanitize_text_field($_POST[„ppp“]),
‚post_type‘ => sanitize_text_field($_POST[„post_type“]),
‚product_cat‘ => sanitize_text_field($_POST[„category“]),
‚order‘ => sanitize_text_field($_POST[„order“])
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
echo ‚

    ‚;
    while ( $query->have_posts() ) : $query->the_post();
    global $product;
    $product_output = ‚

  • ‚;
    $product_output .= “.$product->get_title().“;
    $image_links[0] = get_post_thumbnail_id( $product->id );
    $gallery = wp_get_attachment_image_src($image_links[0], ‚full‘ );
    $product_output .= „“;
    $product_output .= “.$product->get_price_html().“;
    $product_output .= ‚
  • ‚;
    echo $product_output;
    endwhile;
    echo ‚

‚;
wp_reset_postdata();
}
}
die();
}“.
„add_action(„wp_ajax_postmoon“,“postmoon_action_method“);“.

„add_action(„wp_ajax_nopriv_postmoon“,“postmoon_action_method“);“.

The results you will see in the your browser only if you are administrator.

Nejčastější dotazy

There are currently no FAQs at this time.

Recenze

Pro tento plugin nejsou žádné recenze.

Autoři

Post Moon je otevřený software. Následující lidé přispěli k vývoji tohoto pluginu.

Spolupracovníci

Přeložte “Post Moon” do svého jazyka.

Zajímá vás vývoj?

Prohledejte kód, podívejte se do SVN repozitáře, nebo se přihlaste k odběru protokolu vývoje pomocí RSS.

Přehled změn

1.0

  • First version of the plugin.