Posts by Douglas Dourado • 13 points
3 posts
-
1
votes1
answer49
viewsQ: Why did my jQuery stop accepting $ but this accepted "jQuery"?
With that error code <script> $(function () { $('[data-toggle="popover"]').popover({ html:true, animation: true, sanitize: false }) }) var slide_old = "slide_img0"; var slide = "efeito_slide";…
-
0
votes1
answer54
viewsA: How to differentiate a new post from a fixed post in wordpress?
Since I didn’t get an answer and couldn’t find a function, I decided to follow the tip from iamdlm <?php $hora = current_time ('timestamp') - get_the_time('U') ; if ( $hora <= 259200 ) echo…
-
0
votes1
answer54
viewsQ: How to differentiate a new post from a fixed post in wordpress?
I need to know if a post is a new post or just a fixed post. My code is this Aki: <div class="row padding " > <div class="col-md-5 padding "> <?php the_post_thumbnail(); ?>…