Allow users other than admin to see Gravity Forms
Adding the following snippet to functions.php will allow Wordpress users with the permission of "editor" to actually be able to see and edit Gravity Forms in the admin area of…
Adding the following snippet to functions.php will allow Wordpress users with the permission of "editor" to actually be able to see and edit Gravity Forms in the admin area of…
Add the following to functions.php file //Brings back the link manager in Wordpress add_filter( 'pre_option_link_manager_enabled', '__return_true' ); To get the links to show up on your page add this to…
The following snippet will give you all children of the current page and will include the title and thumbnail.
The following snippet will print out a list of the available thumbnail (featured image) sizes available in your current theme. Simple past the code below into a theme page and…
The following code will show the featured image or thumbnail of a post or page. if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned…
Here is how to vertically align and element within a div. This works well if you are trying to vertically align and images as well. //Here is your html: //Here…
Here is how to horizontally center a Navigation. The html markup: Home About Work Clients Contact The css: .nav{ border:1px solid #ccc; border-width:1px 0; list-style:none; margin:0; padding:0; text-align:center; } .nav…