How to get the current scroll top position?
How to get the current scroll top position? Copy and past the following codes below to your JS file.
var current_scroll = window.scrollY; console.log( current_scroll );
Add column classes and add first class in every first column. Just change the _index = ( _index + 3 ); to your custom column. Example, if you want to create 5 columns change the _index + 3 to _index + 4 if you want to create 6 columns change the _index + 3 to…
How to get plugin URL? echo plugin_dir_url( __FILE__ ) . 'assets/foo-styles.css'; # OUTPUT WILL BE http://example.com/wp-content/plugins/my-plugin/assets/foo-styles.css Refferences : https://codex.wordpress.org/Function_Reference/plugin_dir_url
Hi guys, I have this problem during my WordPress coding journey. The `get_the_ID()` has conflict in nested `WP_Query` codes. On the first `WP_Query` loop, the ID for example is 20, then inside that loop I have another `WP_Query` (see the codes below) that makes the `WP_Query` codex more completed if you don’t code it right….
How to remove autocomplete in all fields WordPress CSS? Reason is some fields auto fill is wrong. Example email field auto fill with date of birth. Some users confused of this and don’t want this in their site. Copy the codes below in your functions.php of your current theme folder. add_action( 'init', 'anton_init' ); function…
INSTALL WORDPRESS THEME | WEB DEVELOPMENT | WEBSITE | XAMP | HOW TO CREATE A WEBSITE. EDUCATIONAL VIDEO PARA SA GUSTO TUMUKLAS NG MGA BAGONG KAALAMAN KUNG PANU GUMAWA NG WEBSITES. PAKI-SHARE PO VIDEO NG MARAMI TAYONG MATULUNGAN AT MABIGYAN NG ONLINE SKILLS. MARAMI PA TAYONG PWEDE IBAHAGI SA INYO. LINKS: PERSONAL WEBSITE: https://www.anthonypagaycarbon.com/ XAMP…
How to get the parent product category ID, Name, etc in specific product? Just copy and paste the codes below. $object = get_queried_object(); $product_cat = get_the_terms( $object->ID, 'product_cat' ); echo $product_cat[0]->name; echo wpautop( $product_cat[0]->description );