April

Dr. Shreider for back, new x-ray, went back to physio Miriam, first appt with nutritionaist Idit.

Seder – Yona, Ginat, Adi, Negev, Eli, Ron, Freyda, Sherri, Ethel, Bill, Shirley, Jon. Brisket, potato kugel, roasted vegetables, fish pie, matzo ball soup, chocolate mousse cake, whipped cream, strawberries. Legos and Playmobile. Lunch at Eli’s.

Yom Hashoa – Combo with Mizmor and Beit Boyer. Read sections from Mommy’s book about exodus.

Books

Last month, Gen. McMaster brought onto the NSA staff Nadia Schadlow, who has thought a lot about that question. Her assignment is to develop the National Security Strategy Report. The title of her just-released book, “War and the Art of Governance: Consolidating Combat Success Into Political Victory,” summarizes its core idea:

Unlike its pullout from Iraq, the U.S. has to remain involved—engaged—in the turbulent political space that always exists between conflict and peace, a space filled with competition for influence and power. What Gens. Mattis and McMaster learned in the wake of Iraq is that if you make allies, you should keep them.

Discover WP themes and plugins

Via Miriam, also use BuiltWith + Source Code

The Definitive Guide to Discovering Which Theme and Plugins a WordPress Site Uses

Learning through imitation is a great way to build your own WordPress website – that’s the beauty of development communities, after all! However, hardly any websites come with guidance on which theme and plugins make them tick.

After finding a WordPress site you’d like to emulate, you can easily discover which theme and plugins they use. Knowing this information can help you replicate any special design elements or features you might have been struggling to produce on your own. Of course, it will be up to you to master the tools you find, but knowing where to look is the first step.

In this article, you will learn why discovering the theme and plugins a WordPress site uses is so valuable, as well three options for running a complete espionage mission. Let’s get started!

Why You Would Want to Discover Which Theme and Plugins a WordPress Site Uses

Figuring out how another WordPress site is implementing any given feature can save you time and frustration. For example, your client has sent you an example site they love, with a complex feature they want on their own site. While you’re confident it’s doable, building a similar feature from scratch will take many hours. Of course, it’s difficult to give a proper quote on work you’re not sure about. In addition, it’s not desirable to have to work from scratch.

Instead, you can learn how the example site is implementing the functionality by ‘grokking’ the theme and plugins a site uses. In short, it can save you from reinventing the wheel, and help you to lay a similar foundation on your client’s site.

In general, being able to do this kind of research will help you in your day-to-day development. It’ll also help you combat decision paralysis – as you begin delving into other sites’ setups, you’ll discover many use the same tools under the hood. It’ll help cement the old adage: “It’s not what you’ve got, it’s what you do with it.”

How to Discover Which Theme and Plugins a WordPress Site Uses (with 3 Methods)

Now you know why you might want to research the themes and plugins of other WordPress websites, it’s time to learn how! Here are three options, beginning with the simplest.

Method 1: Automatically Detect Themes and Plugins Using Online Tools

This is one of easiest ways to begin your search and doesn’t require any setup on your part.

Screenshot of What WordPress Theme Is That?
What WordPress Theme Is That? is a popular solution for grokking a site’s theme and plugins.

This method automatically detects basic theme and plugin information for you, and work by checking your target site for unique files and scripts from popular plugins or themes, then reporting back with their findings. However, it’s worth noting that there are limitations. An automated tool may miss some clues that you’d easily be able to determine as a human.

However, for a cursory search to detect for major plugins, automatic solution are a good place to begin. Here are the top sites we recommend:

  1. What WordPress Theme Is That?
  2. WordPress Plugin Checker.
  3. WordPress Theme Detector.

Each of these operates similarly, so your choice will boil down to which one you prefer to use – we’ll use What WordPress Theme Is That? for our example. To begin, firstly enter the URL of the site you’d like to inspect and click Search, Submit, or the equivalent icon…

Screenshot of entering URL into a theme detector

…and that’s it! You’ll be given a list of the results, and you’re then free to delve into each theme and plugin to find out if it’s the right fit for you:

Detected WordPress plugins list

This method is okay for one-off searches, but for those who often need to figure out other sites’ functionality, there’s an even better solution.

Option 2: Install a Dedicated Browser Extension

Another way to automatically detect site plugins and themes is by using a browser extension. They’re simple and fast, but do require you to install extra software in your browser:

Example of a Chrome browser extension for discovering WordPress themes

Browser extensions are small programs that add extra features to your browser. Theme checking extensions are particularly convenient if you’re constantly checking installation details on different sites. In other words, it enables you to collect basic information at the click of a button, while already viewing the target site.

In short, if you frequently check sites for their plugins and themes, a browser extension might be the right choice for you. Here are a few to choose from:

  1. WordPress Theme Detective (Chrome)
  2. WP Sniffer (Chrome)
  3. WordPress Themes and Plugins Detector (Chrome)
  4. Wappalyzer (Mozilla)

As with online solutions, browser extensions all work similarly once you’ve installed them. Firstly, visit the site you’d like to inspect in your browser. Next, click on the respective browser extension icon to run the inspection. After a few moments, you should see the results:

Theme data results from Chrome extension

However, as you may have gathered, both online solutions and browser extensions have a certain degree of error. For the ultimate in WordPress website espionage, you’ll need to dig into the source code.

Option 3: Go Deeper Into the Site’s Source Code

Source code (in this context) is the scripting that makes a website work in the browser – HTML, CSS, and JavaScript (in the latter’s case, increasingly so). You can see it in your browser by right-clicking on the target webpage and choosing View Page Source or Inspect Element. This will open a new tab that shows you the source code of the page you were viewing:

Example of source code

Being able to review the source code yourself is often useful because automated sites and browser extensions are limited to the situations they are programmed for. Additionally, you can almost always glean extra information by taking a look yourself. This is particularly helpful when a site is using lesser-known plugins, a self-developed solution, or even using custom scripting to achieve new results with an existing plugin.

It goes without saying that developers will gain more mileage out of this step than anyone else, as you’ll need a basic understanding of client-side code, such as HTML, CSS, and JavaScript. To follow along, you’ll need to be at least somewhat familiar with these languages.

Also, we’ll be using Chrome’s DevTools as an example here, but other browsers often have similar features, such as Firefox’s Page Inspector, or Safari’s Web Inspector.

To begin, visit the target website in your browser, right-click anywhere on the page, and choose Inspect:

Inspect a page with Chrome

This will open up a tab full of source code and other information, and you’ll notice it’s very similar to the source code we saw earlier:

Default Chrome inspector tab

There are three techniques we can use to explore the page and find out about how the site was built. The first thing to understand is how WordPress structures themes and plugins. They are typically stored within a folder called wp-content, in their respective themes and plugins folders. Translated to source code, this means you’ll likely find files and scripts with the following type of structure:

/wp-content/themes/theme-name/path/to/script.js

For plugins, you’ll likely see /wp-content/plugins/plugin-name/path/to/script.js.

Of course, the path/to/script.js at the end will vary depending on the theme or plugin. From here, you can use the respective theme name or plugin name within those paths to find the original theme or plugin. For example, WordPress themes contain their design data in style.css, and it means you can load the /wp-content/themes/theme-name/style.css path into your browser. This will return valuable theme information for you to look up – our website runs on a custom theme powered by the Genesis Framework, for example.

To find these scripts on basic sites, you can find them collected under the Sources tab (or similar):

Viewing the Source tab in Chrome Inspector

If the site you’re inspecting is heavily customized (or uses a CDN), you may need to use the search function within the Elements tab:

Searching for elements in Chrome Inspector

For more in-depth plugin research, you’ll begin to notice certain patterns and output from different types of plugins. If you find something that looks interesting but aren’t sure, a Google search for the script will help. You’ll want to specifically look for unique IDs and classes within the HTML, and any comments inserted within the code.

To give you a few examples, ConvertKit’s classes and IDs often begin with or include ck_, while MailChimp uses mc_. Many plugins that create their own HTML elements follow similar conventions, which makes them easy to identify.

You also have plugins that modify the whole page, such as WP Super Cache. Many of these use HTML comments as behind the scene credits, kind of like a signature that also gives you clues if something goes wrong. For example, here’s an example of what WP Super Cache inserts <!– Cached page generated by WP-Super-Cache on 2017-03-21 06:54:58 –> at the bottom of a page.

If you need to understand how a plugin actually works (rather than just know its name), being able to identify its code within the page will help you track down the right pieces to replicate its effects within your own projects.

Conclusion

Being able to discover which theme and plugins a WordPress site uses can save you time and trouble when working on your own projects. In other words, it can provide a jumping off point for creating the features for developing your client’s site.

In this piece, we’ve discussed three option to discover the theme and plugins a WordPress site uses:

  1. Automated tools that provide cursory data.
  2. Browser extensions, for frequent investigators.
  3. Manual methods that enable you to get much more valuable information.

Columns

https://americanmind.org/salvo/the-disillusionment-of-the-deplorables/

https://nypost.com/2021/07/08/california-and-florida-battle-for-the-soul-of-a-nation/

https://thehill.com/opinion/judiciary/561632-rise-of-generation-of-censors-law-schools-latest-battlement-free-speech 

Why won’t Israelis let themselves be killed?

https://www.tabletmag.com/sections/israel-middle-east/articles/realignment-iran-biden-obama-michael-doran-tony-badran

https://www.jpost.com/Opinion/Our-World-Benny-Gantzs-troubling-assessments-378793

https://www.washingtonexaminer.com/opinion/op-eds/america-needs-a-good-laugh

http://thefederalist.com/2018/11/28/need-anti-censorship-legislation-social-media-stat/

https://amgreatness.com/2018/11/19/there-is-no-surge-in-white-supremacy/

https://americanmind.org/essays/our-house-divided-multiculturalism-vs-america/

https://www.breitbart.com/jerusalem/2018/10/04/caroline-glick-trump-speech-at-u-n-restored-u-s-leadership/

https://www.realcleareducation.com/articles/2018/09/04/devos_right_to_suspend_lax_loan-forgiveness_policy_110294.html

https://www.americanthinker.com/articles/2018/06/democrats_need_antisemites_to_win.html

https://outline.com/cSBkN8
When Justice Is Partial  KIMBERLEY A. STRASSEL AUGUST 23, 2018

The Truth about Separating Kids

Dear Ex-Friends in #TheResistance

https://www.weeklystandard.com/laura-vanderkam/kids-and-tech-why-its-ok-to-stop-worrying-about-your-childrens-screentime

http://www.breitbart.com/jerusalem/2018/05/22/caroline-glick-pompeo-trump-doctrine/

https://pjmedia.com/andrewklavan/your-culture-is-my-underpants/

http://nymag.com/daily/intelligencer/2018/01/how-cheap-sex-is-changing-our-lives-and-our-politics.html

http://www.nationalreview.com/article/455065/pc-culture-2017s-most-ridiculous-moments

https://www.realclearpolitics.com/articles/2017/12/10/trumps_bold_recognition_of_jerusalem_a_game-changer_135740.html

http://www.washingtonexaminer.com/democrats-are-now-the-party-of-the-rich-so-why-not-tax-the-rich/article/2642320

http://www.americanthinker.com/blog/2017/11/trumps_pocahontas_trap.html

http://reason.com/archives/2017/10/26/the-fragile-generation

http://www.frontpagemag.com/fpm/268113/leftists-and-jews-rabbi-shalom-lewis

http://thefederalist.com/2017/09/25/5-problems-with-the-nfls-national-anthem-protest/

http://forward.com/opinion/382564/does-orthodox-explosion-signal-doom-for-conservative-and-reform/

http://www.spiked-online.com/spiked-review/article/the-fragile-generation#.WbCBksgjGUn

http://www.latimes.com/opinion/op-ed/la-oe-evers-alger-trump-education-cuts-good-20170612-story.html

https://www.wsj.com/articles/mcmaster-and-commander-1494971537

http://nypost.com/2017/04/24/guess-what-else-obama-gave-away-in-the-iran-deal/

http://www.nakedcapitalism.com/2017/04/united-passenger-removal-reporting-management-fail.html

https://www.technologyreview.com/s/604087/the-dark-secret-at-the-heart-of-ai/

http://tammybruce.com/2017/04/pbs-lesson-plan-asks-students-to-argue-for-arabs-killing-israelis.html

https://townhall.com/columnists/kurtschlichter/2017/04/17/trump-wont-be-punked-by-foreign-dirtbags-like-obama-was-n2314110

http://www.lifezette.com/polizette/trump-the-answer-to-foreign-policy-goldilocks-problem/

https://www.wsj.com/articles/a-trump-alliance-strategy-1492642904

WordPress Open Graph Image Issue When Posting to Facebook

When I tried to post a link to my upgraded website as a Facebook post, no image showed up. I uploaded an image in Yoast SEO, and used the Facebook Sharing Debugger, which is great: https://developers.facebook.com/tools/debug/sharing/, but it did not give me information about my issue. The Yoast image would display if it was a page with no image, but I wanted my home page to be linked, with the Yoast image.

The link was displaying a blank image, labeled https://s0.wp.com/i/blank.jpg, both on Facebook and in the Debugger. After more searching, I discovered what wp.com is, and the related issues. http://techwelkin.com/wordpress-s0-wp-com-not-working-or-too-slow. I Deactivated JetPack, and the image showed up with no problems.