Add Media + Quick Edit buttons not working
Add Media + Quick Edit buttons not working
Add Media + Quick Edit buttons not working
How to update my own theme?
You can redirect requests to wp-login.php to your page: add_action( ‘login_head’, function() { $parsed = parse_url($_SERVER[‘REQUEST_URI’]); $redirect = site_url(‘mypage’); if (!empty($parsed[‘query’])) { $redirect .= ‘?’.$parsed[‘query’]; } wp_safe_redirect($redirect,301); exit; } ); However, wp-login.php appears ~34 times in Core on my 3.6.1 install ( grep -Rn “wp-login.php” * | wc -l ), and many of those do … Read more
Hm… It’s kind a strange. Maybe it is related to your permalink stucture. I know that WP render RSS feed for any page. Did you try to display RSS feed manualy? Will that solve your problem? Site feed should be on /feed/ Also, it can be found on /category/your-category/feed/ as well as on /tag/your-tag/feed/ Just … Read more
Edit In this case, it appears that the problem is that you’re not actually outputting a custom nav menu at all, but rather the menu fallback: wp_page_menu(). Notice that the classes for the list items are page-item rather than menu-item. That’s a sure giveaway that the output is being generated by wp_page_menu() rather than wp_nav_menu(). … Read more
You can use dev.example.com, so that you dont have to move contents all the time. you can make it password and ip protected if you want
It depends entirely on the license of theme you’re intending to make a derivative work of. You’ll find a related debate on wordpress.org here: http://wordpress.org/support/topic/theme-licensing …and another individuals cumulative research on the matter here: http://bloggingexperiment.com/is-blogging-experiment-breaking-the-law Additionally, here’s an example of the a web designer legitimately modifying a premium theme on Theme Forest and reselling it … Read more
Well as WordPress is open source, if you have control of your server, you can technically do anything 🙂 Depending on your skill set, that may or may not be feasible. A low tech solution would be to create a copy of the theme ABC for each user. Change the folder name, and change the … Read more
Oops, it seems that I accidentaly used the wrong tag, I used href instead of src. Simple fix: /** Footer logo */ wp.customize( ‘mytheme_footer_logo’, function( value ) { value.bind( function( to ) { var footer = $( ‘.footerlogo img’ ); footer.attr( ‘src’, to ); } ); } );
Move style.css out of /css and into the Theme’s root folder.