Tag: WordPress
-
WordPress Full Site Editing (FSE) Themes, templates, and a simple plugin to reset them
As I write this the WordPress community is once again changing in the social, and market focused ways. There has been turmoil in it’s development, so the technical changes also keep going. As a developer who comes from a creative background, I am happy to put more creative tools in front of less technical users.…
-
Next, the WordPress twenty twenty four child theme scaffold project
This is where I complicate the project more to experiment with making the theme use more ReactJS functionality in a full site editing child theme. It’s also out there: https://github.com/ev3rywh3re/jesse-james-block
-
My little WordPress block editor experiments scaffolding project
It’s always fun when the smallest selfish ideas become places for learning, ha!. I built this one little thing that can typically hang out on the home page to show a random featured image from a category of posts. I’m sure there are other ways, but having worked on some neat block themes in other…
-
WP Super Edit 2.4.7
This is the “Things might be a mess around here, but I’m still working release” for WP Super Edit 2.4.7. There are no new features or major changes for this release. This update should fix a couple of issues. Migrate from depreciated WordPress functions. Update included TinyMCE plugins to TInyMCE 3.5.8 You are welcome to…
-
BP Registration Options 3.0.3 with Fixes for BuddyPress 1.3 – Trunk
Just posting some modifications made to get the BP Registration Options 3.0.3 plugin working with WordPress 3.2-trunk and BuddyPress 1.3-trunk that I needed for a current project. This was only tested on a WordPress multi-site network with BuddyPress and using sub-domain mapping, so my modifications may not fix everything for you. I also did not…
-
WordPress Post Types and Custom Taxonomy Articles
I’m putting links to these two articles together. Understanding both makes things magical. http://shibashake.com/wordpress-theme/wordpress-custom-taxonomy-input-panels http://new2wp.com/pro/wordpress-custom-post-types-object-oriented-series2/
-
My Ugly WordPress, HyperDB, & BuddyPress Deployment Shell Script
This is the source of some of the website deployment scripts I have. This is one is fairly complex and it is my pocket tool of choice for development of big nasty WordPress sites. Probably only interesting to folks who deal with unix shells and do mildly heavy WordPress work. It’s designed to update from…
-
WordPress 3.0 Ajax Notes
Collecting up some WordPress 3.0 and Ajax notes. Nice round look at current state of Ajax and WordPress: http://www.wphardcore.com/2010/5-tips-for-using-ajax-in-wordpress/ Here’s the WordPress Trac discussion for implementation in WordPress 3.0: http://core.trac.wordpress.org/ticket/12400
-
WP Super Edit & Some WordPress TinyMCE Notes
Discussion on wp-hackers centering around a simpler api for creating simple buttons. Otto: There’s an example to add a quick button to TinyMCE at: http://tinymce.moxiecode.com/examples/example_20.php To do this in a WP plugin, you’d hook to mce_buttons_2 (or 3, or 4) to add your button to the list. Then you’d hook up a filter on tiny_mce_before_init…
-
Fixing The WordPress.com Custom CSS Plugin
That plugin is custom to WordPress.com, so it’s not really for wide usage yet. But I did find these notes for WPMU usage: I needed to do two things to make it work: On line 131 change is_int() to is_numeric(): if ( is_numeric( $blog_id ) ) { switch_to_blog( $blog_id ); $current_plugins = apply_filters( ‘active_plugins’, get_option(…