<?php function set_title_on_save( $post_id ) { $post_type = get_post_type($post_id); if ( “event” != $post_type ) return; static $updated = false;…
Unable to replace custom post_type slug by the publish_post. But the save_post is working properly (wp_update_post)
<?php function set_title_on_save( $post_id ) { $post_type = get_post_type($post_id); if ( “event” != $post_type ) return; static $updated = false;…
Newspaper theme and WordPress naming: if (have_posts())… but where the query filters are written?
I’m working on a theme (Newspaper) and I’ve started customizing the category.php page and the myloop.php Coming from the c#…
daily cost changing plugin
i am looking for a plugin for my wordpress site from which i would be able to change the cost…
WordPress link to another page in site does not render a
I have a link from my main WordPress home page to another page there, they both have different header/footer and…
How to create dynamic client logo carousel without using plugin in wordpress homepage development
i am converting a html template to wordpress theme ,in wordpress theme development process i struck at dynamic logo carousel…
Create dynamic logo carousel without using any plugin
I am converting an html template to a WordPress theme. In the WordPress theme development process I’m stuck at dynamic…
How to find and remove unnecessary theme scripts?
When I load my website, I see many java scripts and css loading and slowing my website. Many of them…
get_page_template_slug returns incorrect path
I’m currently experiencing a very strange issue which I can’t find any reason to it. I have a theme which…
Template for front page (latest posts)
I am having index.php -> This renders the latest post with sidebar page.php-> This renders the page layout : Templates…
I need a course/videos to learn how to convert HTML to WordPress? I expert in HTML pages (HTML-CSS-bootstrap-JavaScript…)
I need a course or videos to learn how to convert HTML to WordPress I expert in HTML pages ,…
Problems displaying comments of users currently login
I want to show only the comments that are echo of the logged users, how can I achieve it, I…
Problem with using get_template_part() in footer
First off let me just say, I’m new to theme development, I hope there isn’t something obvious I’m missing. I’m…
input on custom settings page adds http://
how do I get the textbox to not add the HTTP://? function skype_callback() { $options = get_option( ‘theme_social_options’ ); $url…
How to prevent clicking on posts
I have a home page that is consist of WordPress posts. I want the posts to be static so when…
Is it OK to have many page templates in a theme?
Simple question. Should I try to unify my templates to have as few of them as possible or it does…