and i found these post, i agreed there, http://forums.blumentals.net/viewtopic.php?f=4&t=6746 where you said 2 and 3 no is added in your suggestion list, when will it be added in webuilder? waiting for webuilder 2016, (
suggestion for new version
Moderator: kfury77
Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
- Do not create new topics for already requested features. Add your comments to the existing feature request topics instead;
- Create separate topic for each feature suggestion. Do NOT post a number of non-related feature suggestions in a single topic;
- Give your topic a meaningful title. Do NOT create topics with meaningless titles, such as "My Suggestion" or "My Problem".
suggestion for new version
hi, plz make an extension or built in feature named of 'wordpress code hints' , so that at the type wordpress code it suggest which code should i write here like html, css etc code hints, for example : when i will type after_s (then it should suggest after_setup_theme) ...then when i will type register_post (then it should suggest register_post_type (); ) got it? i found such type of extension in other ide/code editor ........... , according to my opinion these type of extension or build in function badly needed for webuilder, for lacking this feature i had to go other ide when i start html to wordpress,
and i found these post, i agreed there, http://forums.blumentals.net/viewtopic.php?f=4&t=6746 where you said 2 and 3 no is added in your suggestion list, when will it be added in webuilder? waiting for webuilder 2016, (
and i found these post, i agreed there, http://forums.blumentals.net/viewtopic.php?f=4&t=6746 where you said 2 and 3 no is added in your suggestion list, when will it be added in webuilder? waiting for webuilder 2016, (
Re: suggestion for new version
Some of the Wordpress autocomplete works if you enable Options -> Frameworks -> WordPress. I'm not sure about "after_setup_theme", I don't see such function in Wordpress API, only WP_Customize_Manager::after_setup_theme. register_post_type unfortunately is invalid in Auto-complete, we'll fix it. You can trigger Auto-complete by pressing Ctrl + Space if it doesn't appear automatically.
#3 will be in 2016, can't promise #2 but maybe.
#3 will be in 2016, can't promise #2 but maybe.
Blumentals Software Programmer
Re: suggestion for new version
hi, i mean >functions.php < in wordpress theme development,
<?php
function myfunction (){
add_theme_support('title-tag');
add_theme_support('post-thumbnails');
}
add_action('after_setup_theme','myfunction');
i mean when i will type add_th < it will show hints exactly ( add_theme_support ();)
<?php
function myfunction (){
add_theme_support('title-tag');
add_theme_support('post-thumbnails');
}
add_action('after_setup_theme','myfunction');
i mean when i will type add_th < it will show hints exactly ( add_theme_support ();)