Found 1075 bookmarks
Newest
Codeable - How to import JSON into WordPress
Codeable - How to import JSON into WordPress
WordPress is going through somewhat a transition lately with JSON REST API increasingly becoming a thing. And a good thing at that, because it's finally catching up with the rest of data-driven, JSON-powered world. What is JSON If you're unfamiliar with JSON (abbreviation for JavaScript Object Notation), simply put it's a standard format in which... [Continue Reading]
·codeable.io·
Codeable - How to import JSON into WordPress
WordPress Tip: Quickly Import Posts via Google Sheets and JSON | Brian Coords
WordPress Tip: Quickly Import Posts via Google Sheets and JSON | Brian Coords
Recently, I found myself setting up a new WordPress site, but with an enormous legacy of content that needed to be uploaded in the form of posts and custom post types. We had about 1500 posts just in one category and a few hundred posts under different custom post types like ‘videos’ and ‘events’. To…
·briancoords.com·
WordPress Tip: Quickly Import Posts via Google Sheets and JSON | Brian Coords
How to Make the WordPress Editor Look Like Your Website
How to Make the WordPress Editor Look Like Your Website
Though WordPress is increasingly on the verge of becoming a fully-fledged application framework, the humble post editor remains the area of the interface users spend most of their time in. It’s a part of the backend that’s seen significant improvements over the last number of years – the recent move to version 4.0 of TinyMCE in WordPress 3.9 being a highlight – but there’s still plenty of room for improvement. One of the most common problems users have with the editor is the need to constantly switch between editing and preview modes to see how content will actually look live.
·premium.wpmudev.org·
How to Make the WordPress Editor Look Like Your Website
How to Customize Your WordPress Post Excerpts | WPShout
How to Customize Your WordPress Post Excerpts | WPShout
The WordPress excerpts system works properly, but it uses lots of functions and it's hard to know which one does what. The WordPress post excerpts system Code snippets to change your WordPress post excerpts: set excerpt length, customize "Read More" text, count characters instead of words, and more.
·wpshout.com·
How to Customize Your WordPress Post Excerpts | WPShout
Move a WordPress Site with the Duplicator Plugin - WPShout
Move a WordPress Site with the Duplicator Plugin - WPShout
There are a lot of migration systems for WordPress. We’ve had lots of good experiences with All-in-One WP Migration. Some people swear by WP Migrate DB Pro. Others are partial to WP-CLI’s terminal-based systems. One of the few tools I’d never tried was Duplicator, but I recently did and I love it. I was very pleasantly surprised about a specific facet of it: I don’t need WordPress to get a new local copy of a remote WordPress site running on my local machine. You just pull down two files, put them in the same folder, and then you’re set. It’s great!
·wpshout.com·
Move a WordPress Site with the Duplicator Plugin - WPShout
How to Conditionally Enqueue a JavaScript File in WordPress - WPShout
How to Conditionally Enqueue a JavaScript File in WordPress - WPShout
Enqueuing is the WordPress way to add a stylesheet or JavaScript file on a page. We already published a Quick Guide about including your JavaScript in WordPress. This time, though, we’re adding an extra wrinkle: how do you only enqueue a JavaScript file on certain pages of your WordPress site. That’s the focus of this here Quick Guide.
·wpshout.com·
How to Conditionally Enqueue a JavaScript File in WordPress - WPShout
Add Taxonomy Terms as CSS Classes to a Post | WP Beaches
Add Taxonomy Terms as CSS Classes to a Post | WP Beaches
You can use the body_class filter in WordPress to add the Taxonomy Terms of a Custom Taxonomy as CSS classes to a post. The CSS class appears in the body element and is only used if the post has been assigned to the taxonomy. The code goes in your functions.php file. add_filter( 'body_class', 'themeprefix_add_taxonomy_class'…
·wpbeaches.com·
Add Taxonomy Terms as CSS Classes to a Post | WP Beaches