WP Engineer - WordPress News, WordPress Themes, Hacks and Tutorials

XML to Array

In terms of importing data is often set to be XML and have to pass an array in WordPress, which passes into the database. To get an array in PHP after parsing XML, you will... read more...

WP Engineer - WordPress News, WordPress Themes, Hacks and Tutorials

Debug enqueued Scripts and Styles in WordPress

WordPress can easily manage scripts and style sheets, a prerequisite is the use of the opportunities around wp_enqueue_script() and wp_enqueue_style(). A small function can help and returns the built-in scripts and styles. read more...

WP Engineer - WordPress News, WordPress Themes, Hacks and Tutorials

Advent Calendar – WordPress Editor: Preserve the scroll position

WordPress has a nice editor, with which are several hundreds of articles written daily. But in my opinion the editor has an usability issue. Every time you save a post the scroll position of the... read more...

WP Engineer - WordPress News, WordPress Themes, Hacks and Tutorials

Advent Calendar – Predefined callback functions for filters

Filters are often used for removing content. For example, if you want to hide the admin bar you can do the following: function hide_admin_bar() { return FALSE; } add_filter( 'show_admin_bar' , 'hide_admin_bar' ); It's a... read more...

WP Engineer - WordPress News, WordPress Themes, Hacks and Tutorials

Extend the TwentyEleven Navigation with your Social Icons

In this little tutorial we show how to add in the navigation of the TwentyEleven Theme our RSS Feed, a link with icons to our Twitter page and to our Facebook profile. Without writing a... read more...

WP Engineer - WordPress News, WordPress Themes, Hacks and Tutorials

Advent Calendar- How to disable comments for WordPress pages in any theme

Usually you don’t need comments on pages. Unfortunately, WordPress doesn’t offer a separate option to leave comments on posts on and turn them off for pages. If your theme calls comments_template(); in its page.php and... read more...

Pages: Prev 1 2 3 4 5 6 ...51 52 53 Next