D
D
Dmitry Sergeev2020-11-24 20:53:02
Layout
Dmitry Sergeev, 2020-11-24 20:53:02

How to display "Product of the Day" on the main site?

Hello.
Perhaps some of you have come across this issue.
I need to display one product on the main page, selected by me, or automatically selected by the plugin.
On the main page there are goods in a list, and among them you need something like this:
5fbd48785f08f137432112.png

And then again a list of goods.
Maybe someone knows some kind of plugin (it can even be paid)
Or tell me how to implement it with code.
I will be very grateful.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
L
lev89, 2020-11-24
@lev89

you create a separate table "Product of the day" which will be linked by ID with the main table of products.
There you write down the ID of that (or those) goods that will be the goods of the day. Well, to display this product on the main page, then just refer to this table

V
Vladislav Chernenko, 2020-11-24
@vladchv

... or selected automatically by the plugin

Since you are happy with random selection, you can simply create your own random cycle and show 1 product:
<?php
    $args = array(
         'posts_per_page'   => 1,
         'orderby'          => 'rand',
         'post_type'        => 'product'
    ); 

    $random_products = get_posts( $args );
    foreach ( $random_products as $post ) : setup_postdata( $post ); ?>
         <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php
    endforeach; 
    wp_reset_postdata();
?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question