<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="https://brooke.codes/wp-content/plugins/pretty-rss-feeds/xslt/pretty-feed.xsl" type="text/xsl" media="screen" ?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>wp-plugins &#8211; &lt;Brooke&gt; &lt;Codes&gt;</title>
	<atom:link href="https://brooke.codes/category/wp-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>https://brooke.codes</link>
	<description>The Tech Blog of Brooke. </description>
	<lastBuildDate>Thu, 27 Mar 2025 05:03:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Introducing Soapberry for Ackee</title>
		<link>https://brooke.codes/2019/12/29/introducing-ackee-wp/</link>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Sun, 29 Dec 2019 23:18:40 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=1081</guid>

					<description><![CDATA[<img width="150" height="150" src="https://brooke.codes/wp-content/uploads/2020/01/banner-1544x500-1-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="Banner 1544x500" decoding="async" />Update: this plugin was originally called Ackee WP but has been renamed to Soapberry to comply with the WordPress.org trademark policy for plugins. The plugin can now be found on WordPress.org under the slug Soapberry. As part of my desire to own my data, I haven&#8217;t used Google Analytics for the past few years. In [&#8230;]]]></description>
										<content:encoded><![CDATA[<img width="150" height="150" src="https://brooke.codes/wp-content/uploads/2020/01/banner-1544x500-1-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="Banner 1544x500" decoding="async" />
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<blockquote class="wp-block-quote is-style-warning-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Update:</strong> this plugin was originally called Ackee WP but has been renamed to Soapberry to comply with the WordPress.org trademark policy for plugins. The plugin can now be found on WordPress.org under the slug <a href="https://wordpress.org/plugins/soapberry/">Soapberry</a>. </p>
</blockquote>



<p class="wp-block-paragraph">As part of my desire to own my data, I haven&#8217;t used Google Analytics for the past few years. In that time I&#8217;ve been curious about my site statistics but knew when I resumed collecting data I wanted to do so in a way that respected the privacy of my visitors.  </p>



<p class="wp-block-paragraph">This year I started a search for self-hosted tracking solutions and came across a lightweight node application, <a href="https://ackee.electerious.com">Ackee</a>. After looking at a few other options I decided on Ackee for its care in anonymizing user data. Through hashing the user&#8217;s IP, a unique domain ID, and a salt which changes daily, site visits can be tracked without tracking the individual visitors.  </p>



<p class="wp-block-paragraph">For my needs, I want to know how many visits my sites are getting, where visitors are coming from, and how long they stay on the site. However, I do not have a need or desire to track individual visitors.</p>



<h3 class="wp-block-heading">Using Ackee with WordPress</h3>



<p class="wp-block-paragraph">After setting up an Ackee instance and adding the tracking script to a few static sites I wanted to bring the functionality to my WordPress sites. At first, I just edited the theme&#8217;s <code>footer.php</code> file which worked well enough as a quick way to insert the script. Next, I hooked into <code>wp_footer()</code> so it would be easier to exclude logged in visits from the analytics. </p>



<p class="wp-block-paragraph">While both of these methods work they do require a bit of WordPress know-how and do not carry over when switching themes. Wanting a better solution, I got to work writing <a href="https://brooke.codes/past-projects/soapberry/" data-type="page" data-id="1074">Soapberry</a> a WordPress plugin that adds the Ackee tracking script and data attributes to the site&#8217;s footer based on settings saved on a WP Admin page.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="2475" height="1298" src="https://brooke.codes/wp-content/uploads/2020/01/screenshot-1.png?w=1024" alt="" class="wp-image-1103" srcset="https://brooke.codes/wp-content/uploads/2020/01/screenshot-1.png 2475w, https://brooke.codes/wp-content/uploads/2020/01/screenshot-1-300x157.png 300w, https://brooke.codes/wp-content/uploads/2020/01/screenshot-1-1024x537.png 1024w, https://brooke.codes/wp-content/uploads/2020/01/screenshot-1-768x403.png 768w, https://brooke.codes/wp-content/uploads/2020/01/screenshot-1-1536x806.png 1536w, https://brooke.codes/wp-content/uploads/2020/01/screenshot-1-2048x1074.png 2048w" sizes="(max-width: 2475px) 100vw, 2475px" /></figure>



<p class="wp-block-paragraph">Keeping things simple at first, this first version of the plugin only has the ability to exclude all logged-in visitors and does not take into account the <a href="https://github.com/electerious/Ackee/blob/master/docs/Anonymization.md#personal-data">personal data options provided by Ackee</a>. In the future, you may be able to exclude visits by role and enable opt-in tracking for personal information.</p>



<h3 class="wp-block-heading">Exploring Ackee Alternatives</h3>



<p class="wp-block-paragraph">If after looking at Ackee you don&#8217;t think its right for you that&#8217;s okay. Ackee won&#8217;t be right for everyone. The good news is there are other options when looking to move away from Google Analytics, Facebook Pixel, or other third-party tools. </p>



<p class="wp-block-paragraph">Chris Wiegman <a href="https://chriswiegman.com/2019/11/setting-up-private-website-analytics-with-goaccess/">wrote a post on anonymizing and tracking visits at the server level</a> to avoid the JavaScript requirement of many trackers. The folks over at Awesome Open Source also<a href="https://github.com/awesome-selfhosted/awesome-selfhosted#analytics"> list several other Analytics tools</a> that can be explored. If you find a tool you like let me know what you are using in the comments.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>MP6 Light</title>
		<link>https://brooke.codes/2013/07/28/mp6-light/</link>
					<comments>https://brooke.codes/2013/07/28/mp6-light/#comments</comments>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Sun, 28 Jul 2013 07:44:06 +0000</pubDate>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=352</guid>

					<description><![CDATA[It&#8217;s one of the (not so) well kept secrets in WordPress that a team is busy redesigning the admin interface.&#160; In fact, if you use WordPress.com you have likely noticed a change in the admin layout some time ago. For those of you using a self-hosted WordPress site the change most likely won&#8217;t happen till [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<p class="wp-block-paragraph">It&#8217;s one of the (not so) well kept secrets in WordPress that a team is busy redesigning the admin interface.&nbsp; In fact, if you use WordPress.com you have likely noticed a change in the admin layout some time ago. For those of you using a self-hosted WordPress site the change most likely won&#8217;t happen till at least 3.7.</p>



<p class="wp-block-paragraph">However, for the early adopters and developers you can preview the new layout by using the <a href="https://wordpress.org/plugins/mp6">MP6 Plugin</a>.  I personally (and from the forums, many others) felt that the new sidebar was too dark. It also currently looks like MP6 plugin won&#8217;t give users the option to switch between layouts. For this reason I&#8217;ve created MP6-light which basically works by adding a stylesheet that makes the admin a bit lighter. Check out the <a href="https://brooke.codes/past-projects/mp6-light/">project page</a> or get the plugin from the <a href="https://wordpress.org/plugins/mp6-light">WordPress repository</a>.</p>



<p class="wp-block-paragraph"><strong>NOTE:</strong> This plugin requires the MP6 plugin to be installed.</p>



<p class="wp-block-paragraph"><strong>P.S</strong>: I&#8217;m also looking for people to get involved with the project on <a href="https://github.com/BrookeDot/mp6-light">github</a>.</p>



<figure class="wp-block-image aligncenter"><a href="https://brooke.codes/wp-content/uploads/2013/07/screenshot-2.png"><img loading="lazy" decoding="async" width="1024" height="374" src="https://brooke.codes/wp-content/uploads/2013/07/screenshot-2.png" alt="screenshot-2" class="wp-image-355" srcset="https://brooke.codes/wp-content/uploads/2013/07/screenshot-2.png 1024w, https://brooke.codes/wp-content/uploads/2013/07/screenshot-2-300x110.png 300w, https://brooke.codes/wp-content/uploads/2013/07/screenshot-2-768x281.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>



<figure class="wp-block-image aligncenter"><a href="https://brooke.codes/wp-content/uploads/2013/07/screenshot-1.png"><img loading="lazy" decoding="async" width="1024" height="485" src="https://brooke.codes/wp-content/uploads/2013/07/screenshot-1.png" alt="screenshot-1" class="wp-image-346" srcset="https://brooke.codes/wp-content/uploads/2013/07/screenshot-1.png 1024w, https://brooke.codes/wp-content/uploads/2013/07/screenshot-1-300x142.png 300w, https://brooke.codes/wp-content/uploads/2013/07/screenshot-1-768x364.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://brooke.codes/2013/07/28/mp6-light/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Simple SOPA Blackout Plugin</title>
		<link>https://brooke.codes/2012/01/14/simple-sopa-blackout-plugin/</link>
					<comments>https://brooke.codes/2012/01/14/simple-sopa-blackout-plugin/#comments</comments>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Sat, 14 Jan 2012 08:01:16 +0000</pubDate>
				<category><![CDATA[php]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=271</guid>

					<description><![CDATA[I just wrote a simple plugin to blackout your site on January 18th for the SOPA Blackout day. Check it out on the project page.]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<p class="wp-block-paragraph">I just wrote a simple plugin to blackout your site on January 18th for the SOPA Blackout day. Check it out on the <a href="https://brooke.codes/past-projects/sopa/" data-type="page" data-id="262">project page. </a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://brooke.codes/2012/01/14/simple-sopa-blackout-plugin/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>MobileESP 1.3.1</title>
		<link>https://brooke.codes/2011/11/13/mobileesp-1-3-1/</link>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Sun, 13 Nov 2011 21:14:09 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=243</guid>

					<description><![CDATA[I just put out a quick fix for MobileESP for WordPress to hopefully FINALLY fix the two click cookie issue. Version 1.3.1 can be found in the other versions folder over on the WordPress Plugin page. If you don&#8217;t see 1.3.1 listed just grab the &#8220;Development Version.&#8221; Please test this version and let me know [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>


<p>I just put out a quick fix for MobileESP for WordPress to hopefully FINALLY fix the two click cookie issue. Version 1.3.1 can be found in the other versions folder over on the<a href="https://wordpress.org/plugins/mobileesp-for-wordpress/download/"> WordPress Plugin page</a>. If you don&#8217;t see 1.3.1 listed just grab the &#8220;Development Version.&#8221;</p>
<p>Please test this version and let me know if any issues arise if all goes well I&#8217;ll make this the stable version.</p>
<p>CHANGES IN THIS VERSION:<br />
&#8211; Upgraded the MobileESP library to latest stable version<br />
&#8211; Hopefully fixed full site redirect issue.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>MobileESP for WP 1.2 Updated</title>
		<link>https://brooke.codes/2011/08/09/mobileesp-for-wp-1-2-updated/</link>
					<comments>https://brooke.codes/2011/08/09/mobileesp-for-wp-1-2-updated/#comments</comments>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Tue, 09 Aug 2011 08:06:46 +0000</pubDate>
				<category><![CDATA[php]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=210</guid>

					<description><![CDATA[[UPDATE] this plugin has been updated to 1.2.1 to add support for removing the cookie. See the comments of this post for more info. I just wanted to write a quick post to let you know that MobileESP for WordPress version 1.2 has been released. This release contains the latest version of the MobileESP library [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<blockquote class="wp-block-quote is-style-note-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>[UPDATE]</strong> this plugin has been updated to 1.2.1 to add support for removing the cookie. See the comments of this post for more info.</p>
</blockquote>



<p class="wp-block-paragraph">I just wanted to write a quick post to let you know that<a href="https://brooke.codes/past-projects/mobileesp4wp/" data-type="page" data-id="148"> MobileESP for WordPress</a> version 1.2 has been released. This release contains the latest version of the MobileESP library as well as a bugfix for the full site url link bug which was requiring clicking on the link twice.  Get the latest version from the <a href="https://wordpress.org/plugins/mobileesp-for-wordpress/">WordPress.org Plugin repo</a> or update the plugin from your dashboard.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://brooke.codes/2011/08/09/mobileesp-for-wp-1-2-updated/feed/</wfw:commentRss>
			<slash:comments>13</slash:comments>
		
		
			</item>
		<item>
		<title>April Fools Plugin: Cornify for WordPress Released</title>
		<link>https://brooke.codes/2011/04/03/cornify-for-wordpress/</link>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Sun, 03 Apr 2011 21:09:56 +0000</pubDate>
				<category><![CDATA[php]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<category><![CDATA[april fools]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rainbows]]></category>
		<category><![CDATA[unicorns]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=191</guid>

					<description><![CDATA[In case you missed it I decided to do a small April Fools prank this year. I came across cornify.com and liked the way it worked. I thought it would be funny to have the unicorns pop up if the user was inactive on the site for longer than a few seconds. So I got [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<p class="wp-block-paragraph">In case you missed it I decided to do a small April Fools prank this year. I came across cornify.com and liked the way it worked. I thought it would be funny to have the unicorns pop up if the user was inactive on the site for longer than a few seconds. So I got to hacking the script and came up with a simple plugin <a href="https://wordpress.org/plugins/cornify-for-wordpress/">Cornify for WordPress</a>. This is a simple WordPress plugin for the self hosted WordPress blog that will show unicorns to the inactive user. There isn&#8217;t a control panel but if you read the readme you do have a few options for modifying the script.</p>



<p class="wp-block-paragraph">Without further ado here is a screenshot:</p>



<figure class="wp-block-image aligncenter"><a href="https://brooke.codes/wp-content/uploads/2011/04/cornify.png"><img loading="lazy" decoding="async" width="800" height="434" src="https://brooke.codes/wp-content/uploads/2011/04/cornify.png" alt="" class="wp-image-193" title="cornify" srcset="https://brooke.codes/wp-content/uploads/2011/04/cornify.png 800w, https://brooke.codes/wp-content/uploads/2011/04/cornify-300x163.png 300w, https://brooke.codes/wp-content/uploads/2011/04/cornify-768x417.png 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></a></figure>



<p class="wp-block-paragraph"></p>



<h3 class="wp-block-heading"><a href="https://wordpress.org/plugins/cornify-for-wordpress/">Get the plugin today!</a></h3>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>MobileESP for WP Updated</title>
		<link>https://brooke.codes/2011/04/02/mobileesp-for-wp-updated/</link>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Sat, 02 Apr 2011 19:35:05 +0000</pubDate>
				<category><![CDATA[php]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<category><![CDATA[mobileesp]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=178</guid>

					<description><![CDATA[I just released version 1.1 of MobileESP for WordPress this should fix any problems people were having with iPhone and Android devices not forwarding correctly. I also updated the MobileESP class and minified the source which made it half the size. As always, if you have any problems please report them in the forums tagging [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<p class="wp-block-paragraph">I just released version 1.1 of <a href="https://wordpress.org/plugins/mobileesp-for-wordpress/">MobileESP for WordPress</a> this should fix any <a href="https://wordpress.org/support/topic/plugin-mobileesp-for-wordpress-not-redirecting-with-wp-3/">problems </a>people were having with iPhone and Android devices not forwarding correctly. I also updated the MobileESP class and minified the source which made it half the size.</p>



<p class="wp-block-paragraph">As always, if you have any problems please report them in the forums tagging them with at least &#8216;mobileesp-for-wordpress&#8217;</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Get Involved with WPBook!</title>
		<link>https://brooke.codes/2011/02/18/get-involved-with-wpbook/</link>
					<comments>https://brooke.codes/2011/02/18/get-involved-with-wpbook/#comments</comments>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Sat, 19 Feb 2011 06:53:21 +0000</pubDate>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<category><![CDATA[WPBook]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=174</guid>

					<description><![CDATA[As you may know I&#8217;ve been working with WPBook for the past 2 years. In that time I&#8217;ve watched the project grown dramatically the plugin now has over 73,000 downloads. However, the project has only had a handful of people who have gotten involved with the project.  Therefore, I wanted to write a quick blog [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<p class="wp-block-paragraph">As you may know I&#8217;ve been working with <a href="https://brooke.codes/past-projects/wpbook/">WPBook</a> for the past 2 years. In that time I&#8217;ve watched the project grown dramatically the plugin now has over 73,000 downloads. However, the project has only had a handful of people who have gotten involved with the project.  Therefore, I wanted to write a quick blog post and give you a few ways to get involved.</p>



<p class="wp-block-paragraph"><strong>Are you a programmer?</strong><br> Great, we keep track of bugs and feature request over at our bug tracking system http://bugs.wpbook.net. If you get a moment fix a bug or add a feature. You may also just wish to use this system to report bugs.</p>



<p class="wp-block-paragraph"><strong>Are you a graphic designer?</strong><br>
Cool, you may be able to help us cook up some neat graphics for WPBook, update our logo, or just give us feedback that could otherwise improve the project.</p>



<p class="wp-block-paragraph"><strong>Are you a writer?</strong><br>
Neat-o, we can use your help to spruce up the docs making sure they are easy to understand, accurate, clever and free of typos .</p>



<p class="wp-block-paragraph"><strong>Want more ways to get involved?</strong><br> Okay there are plenty of  other ways to get involved. Head on over to the support forms and help a fellow user. I&#8217;ve also just set up a donate page where you can make a donation to help pay for website cost. We are also pledging to give 50% of any donations made to Charity Water. With a goal of $500.</p>



<p class="wp-block-paragraph">If  you have any questions or comments please let me know. Thanks!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://brooke.codes/2011/02/18/get-involved-with-wpbook/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>WPBook 2.0.10 BETA release</title>
		<link>https://brooke.codes/2010/10/10/wpbook-2-0-10-beta-release/</link>
					<comments>https://brooke.codes/2010/10/10/wpbook-2-0-10-beta-release/#comments</comments>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Sun, 10 Oct 2010 22:54:44 +0000</pubDate>
				<category><![CDATA[php]]></category>
		<category><![CDATA[wp-plugins]]></category>
		<category><![CDATA[WPBook]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=105</guid>

					<description><![CDATA[UPDATE 12/11/10: As John noted in the comments below the most recent beta can be found at the WPBook download page at WordPress. Get the latest copy of 2.0.10 here: https://wordpress.org/plugins/wpbook/download/ Today I am uploading a new beta version of WPBook. This version needs some testing before being forked into core so if you download [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post refers to code and a project from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<blockquote class="wp-block-quote is-style-note-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>UPDATE 12/11/10: </strong>As John noted in the comments below the most recent beta can be found at the WPBook download page at WordPress. Get the latest copy of 2.0.10 here: <a href="https://wordpress.org/plugins/wpbook/download/">https://wordpress.org/plugins/wpbook/download/</a></p>
</blockquote>



<p class="wp-block-paragraph">Today I am uploading a new beta version of WPBook. This version needs some testing before being forked into core so if you download it and have any problems let me know.</p>



<h3 class="wp-block-heading">You can download the version here</h3>



<h3 class="wp-block-heading"><strong>New in this Features version:</strong></h3>



<p class="wp-block-paragraph"><strong>Facebook Avatars</strong> &#8211; if you have the gravtar setting on and the visiter leaves a comment from Facebook (or leaves their Facebook profile url in the url field) you&#8217;ll see their Facebook Profile picture instead of their default gravtar. This is true for both your parent blog (outside of Facebook) and the app view (inside of Facebook)</p>



<p class="wp-block-paragraph"><strong>New Admin Layout &#8211;</strong> The WP-Dashboard admin page has been completely redesigned and organized into three categories: required, Streaming and Facebook App View. The &#8220;advanced settings&#8221; have been removed and integrated into the appropriate place in the settings. Tooltips have also been removed. Hopefully this layout is easier to use. Thanks to <a href="https://wordpress.org/plugins/yourls-wordpress-to-twitter/">Ozh&#8217;s YOURLS: WordPress to Twitter</a> for the inspiration and some of the code that powers the admin interface and the <a href="https://en.wikipedia.org/wiki/Tango_Desktop_Project">Tango Project</a> for the expand/collapse icons.</p>



<h3 class="wp-block-heading"><strong>Bug Fixes:</strong></h3>



<p class="wp-block-paragraph">The default of &#8220;post to facebook&#8221; is now set to true</p>



<p class="wp-block-paragraph">The link in set_permissons=true now links to WPbook.net instead of the old instructions folder in your install.</p>



<h3 class="wp-block-heading">Other Notes:</h3>



<p class="wp-block-paragraph">Folder Cleanup, the client and cron file includes have been moved to there own &#8220;include&#8221; folder</p>



<p class="wp-block-paragraph">The Facebook&nbsp; Tab view has been moved to it&#8217;s own folder inside the wpbook/theme folder</p>



<p class="wp-block-paragraph">Please let me know any feedback you may have on this build.<strong><br><br></strong></p>
]]></content:encoded>
					
					<wfw:commentRss>https://brooke.codes/2010/10/10/wpbook-2-0-10-beta-release/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>WPBook Hits 50k Downloads!</title>
		<link>https://brooke.codes/2010/08/30/wpbook-hits-50k-downloads/</link>
		
		<dc:creator><![CDATA[Brooke.]]></dc:creator>
		<pubDate>Tue, 31 Aug 2010 04:37:34 +0000</pubDate>
				<category><![CDATA[wp-plugins]]></category>
		<category><![CDATA[WPBook]]></category>
		<guid isPermaLink="false">https://brooke.codes/?p=87</guid>

					<description><![CDATA[I&#8217;ve been working with the very talented team of WPBook for the past two years. I have contributed a few ideas and bug fixes. Today marks a very big for us. We just hit 50,000 downloads. That&#8217;s a lot of downloads! I would like to thank everyone who has used this plugin over the years [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-style-info-notice is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph"><strong>Note: </strong>This post is from <em>many</em> years ago <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f631.png" alt="😱" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The content was edited in March of 2025 to remove dead links, improve clarity, or fix formatting, but no other edits were made. Enjoy this time capsule into the past.</p>
</blockquote>



<p class="wp-block-paragraph">I&#8217;ve been working with the very talented team of<a href="https://wpbook.net"> WPBook </a>for the past two years. I have contributed a few ideas and bug fixes. Today marks a very big for us. We just hit 50,000 downloads. That&#8217;s a lot of downloads! I would like to thank everyone who has used this plugin over the years and contributed back their thoughts and ideas, struggles and love for it. I can&#8217;t wait to see what the next 50k downloads bring.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
