5 things you shouldn't do with a wordpress plugin

42
@KellyPhillipsNC

Upload: kelly-phillips

Post on 02-Jul-2015

790 views

Category:

Design


0 download

DESCRIPTION

This presentation is meant to help you implement some common WordPress functionality in a manual way instead of using plugins. This keeps your valuable plugin juice free for the plugins that are more complicated.

TRANSCRIPT

Page 1: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 2: 5 Things You Shouldn't Do With A WordPress Plugin

Kelly Phillips

WPPluginCoach.comBoostInteractiveMedia.com

I help small businesses owners take control of their website, turning it into a powerful tool to grow their business.

@KellyPhillipsNC

Page 3: 5 Things You Shouldn't Do With A WordPress Plugin

Help this cat!http://wpplugincoach.com/wp-plugin-coach-list/

Page 4: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 5: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 6: 5 Things You Shouldn't Do With A WordPress Plugin

Too many

Plugins

=

A slow

website@KellyPhillipsNC

Page 7: 5 Things You Shouldn't Do With A WordPress Plugin

How Many Plugins Can I have?

• Level of hosting

• Bulkiness of current

plugins

• Quality of code of

current plugins

Page 8: 5 Things You Shouldn't Do With A WordPress Plugin

Connect Google Analytics

Install Mailing List Forms

Implement Google Fonts

Add PayPal Buttons

Display Social Media Icons

1

2

3

4

5

Page 9: 5 Things You Shouldn't Do With A WordPress Plugin

How dare you use a plugin for that!

@KellyPhillipsNC

Page 10: 5 Things You Shouldn't Do With A WordPress Plugin

1Connect

Google

Analytics

@KellyPhillipsNC

Page 11: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

http://google.com/analytics

Page 12: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 13: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 14: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 15: 5 Things You Shouldn't Do With A WordPress Plugin

My theme doesn’t have a place for scripts. what now?

Get a better theme

OrCreate a child theme

and add the code to

header.php

(WPBeginner.com has a great tutorial)

@KellyPhillipsNC

Page 16: 5 Things You Shouldn't Do With A WordPress Plugin

2Install

Mailing

List

Forms

@KellyPhillipsNC

Page 17: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 18: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 19: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 20: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 21: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 22: 5 Things You Shouldn't Do With A WordPress Plugin

3Implement

Google

Fonts

@KellyPhillipsNC

Page 23: 5 Things You Shouldn't Do With A WordPress Plugin

http://Google.com/fonts

Page 24: 5 Things You Shouldn't Do With A WordPress Plugin
Page 25: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 26: 5 Things You Shouldn't Do With A WordPress Plugin
Page 27: 5 Things You Shouldn't Do With A WordPress Plugin

My theme doesn’t have a place for scripts. what now?

Get a better theme

OrCreate a child theme

and add the code to

header.php

(WPBeginner.com has a great tutorial)

@KellyPhillipsNC

Page 28: 5 Things You Shouldn't Do With A WordPress Plugin

4Add

PayPal

Buttons

@KellyPhillipsNC

Page 29: 5 Things You Shouldn't Do With A WordPress Plugin

Tools>PayPal Buttons @KellyPhillipsNC

Page 30: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 31: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 32: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 33: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 34: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 35: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 36: 5 Things You Shouldn't Do With A WordPress Plugin

5Display

Social

Media

Profile

Icons@KellyPhillipsNC

Page 37: 5 Things You Shouldn't Do With A WordPress Plugin
Page 38: 5 Things You Shouldn't Do With A WordPress Plugin

<div style="text-align: center;">

<a href="https://www.facebook.com/yourfbpage" target="_blank"><img title="Facebook" src=“[image_URL]" alt="Facebook" width="32" height="32" /></a>

<a href="http://www.pinterest.com/yourpinterestpage" target="_blank"><img title="Pinterest" src=“[image_URL]" alt="Pinterest" width="32" height="32" /></a>

<a href="https://twitter.com/yourtwitterpage" target="_blank"><img title="Twitter" src=“[image_URL]" alt="Twitter" width="32" height="32" /></a>

</div>

Page 39: 5 Things You Shouldn't Do With A WordPress Plugin

Upload the images to your media library at exact display size.

Copy this URL

@KellyPhillipsNC

Page 40: 5 Things You Shouldn't Do With A WordPress Plugin

<div style="text-align: center;">

<a href="https://www.facebook.com/yourfbpage" target="_blank"><img title="Facebook" src=“[image_URL]" alt="Facebook" width="32" height="32" /></a>

<a href="http://www.pinterest.com/your pinterest page" target="_blank"><img title="Pinterest" src=“[image_URL]" alt="Pinterest" width="32" height="32" /></a>

<a href="https://twitter.com/your Twitter page" target="_blank"><img title="Twitter" src=“[image_URL]" alt="Twitter" width="32" height="32" /></a>

</div>

Page 41: 5 Things You Shouldn't Do With A WordPress Plugin

@KellyPhillipsNC

Page 42: 5 Things You Shouldn't Do With A WordPress Plugin

Now you can load more

plugins!(If you’re not too exhausted!)

Zzz…need…. more… plugins…. Zzz…

@KellyPhillipsNC