Similar Posts
Debugging My Mobile Menu WordPress Plugin – Part 2: Breaking Down the Bugs
In this first part of my debugging series, I dive into the issues plaguing my mobile navigation menu. From unresponsive toggles to hidden elements, join me as I walk through my thought process, inspect code, and start patching up what’s broken. Perfect for developers troubleshooting similar mobile UI headaches. #Debugging #MobileMenuFix #ResponsiveDesign #webdevolopment #FrontendDev #JavaScriptDebugging…
Display WordPress video image
Using the <video> tag, you can display the first image of a video but its not clickable and you can’t play the video. Example : Screenshot image Original videoVideo
Remove entry footer on category post
The code snippets you see below should be placed into your theme’s functions.php file. Below is the code to remove the entry meta on your category post.
How to start creating a simple WordPress plugin?
Step 1 Think about the name of your plugin. Step 2 Example is Shortcode URL plugin. Create a shortcode-url folder name inside of wp-content/plugins/. Step 3 Create shortcode-url.php file inside wp-content/plugins/ folder and put the codes below inside of your shortcode-url.php file. Step 4 Create ReadMe.txt file inside of your shortcode-url folder. Step 5 Add this code below…
How to add rtMedia custom settings?
How to add rtMedia custom settings just like the example image above? Just add the codes to your functions.php of your theme.
Add sub-page using 1 page without adding another pages using add_rewrite_rule
Add sub-page using 1 page without adding another pages using add_rewrite_rule is very simple but clean strategy most specially if you have multiple sub-pages. Using add_rewrite_rule, your task is done. Please copy the codes to your functions.php. Example: I have this page, https://www.anthonypagaycarbon.com/parent/ and the page ID is 10. add_filter(‘query_vars’, ‘wdes_query_vars’); function wdes_query_vars($vars) { $vars[]…
