CINXE.COM

Where’s the White Luke Cage, motherfuckers? – The Pigman Cometh !

<!DOCTYPE html> <html lang="en-US" class="no-js"> <head> <meta charset="UTF-8"> <meta name="description" content=""> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1"> <link rel="icon" href="http://thepigmancometh.com/wp-content/uploads/2016/10/pigman-icon.jpg"> <link rel="apple-touch-icon" href="http://thepigmancometh.com/wp-content/uploads/2016/10/pigman-icon.jpg"> <link rel="msapplication-TileImage" href="http://thepigmancometh.com/wp-content/uploads/2016/10/pigman-icon.jpg"> <link rel="pingback" href="http://thepigmancometh.com/xmlrpc.php"> <title>Where&#8217;s the White Luke Cage, motherfuckers? &#8211; The Pigman Cometh !</title> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="The Pigman Cometh ! &raquo; Feed" href="http://thepigmancometh.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="The Pigman Cometh ! &raquo; Comments Feed" href="http://thepigmancometh.com/comments/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/thepigmancometh.com\/wp-includes\/js\/wp-emoji.js?ver=5.5.9","twemoji":"http:\/\/thepigmancometh.com\/wp-includes\/js\/twemoji.js?ver=5.5.9"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ ( function( window, document, settings ) { var src, ready, ii, tests; // Create a canvas element for testing native browser support of emoji. var canvas = document.createElement( 'canvas' ); var context = canvas.getContext && canvas.getContext( '2d' ); /** * Checks if two sets of Emoji characters render the same visually. * * @since 4.9.0 * * @private * * @param {number[]} set1 Set of Emoji character codes. * @param {number[]} set2 Set of Emoji character codes. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( set1, set2 ) { var stringFromCharCode = String.fromCharCode; // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); var rendered1 = canvas.toDataURL(); // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); var rendered2 = canvas.toDataURL(); return rendered1 === rendered2; } /** * Detects if the browser supports rendering emoji or flag emoji. * * Flag emoji are a single glyph made of two characters, so some browsers * (notably, Firefox OS X) don't support them. * * @since 4.2.0 * * @private * * @param {string} type Whether to test for support of "flag" or "emoji". * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( type ) { var isIdentical; if ( ! context || ! context.fillText ) { return false; } /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec, * but has landed in Twemoji early, so we can add support for it, too. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( [ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ], [ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ] ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ], [ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ] ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather an five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( [ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ], [ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ] ); return ! isIdentical; case 'emoji': /* * So easy, even a baby could do it! * * To test for Emoji 13 support, try to render a new emoji: Man Feeding Baby. * * The Man Feeding Baby emoji is a ZWJ sequence combining 👨 Man, a Zero Width Joiner and 🍼 Baby Bottle. * * 0xD83D, 0xDC68 == Man emoji. * 0x200D == Zero-Width Joiner (ZWJ) that links the two code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0xD83C, 0xDF7C == Baby Bottle. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( [0xD83D, 0xDC68, 0x200D, 0xD83C, 0xDF7C], [0xD83D, 0xDC68, 0x200B, 0xD83C, 0xDF7C] ); return ! isIdentical; } return false; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {Object} src The url where the script is located. * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = script.type = 'text/javascript'; document.getElementsByTagName( 'head' )[0].appendChild( script ); } tests = Array( 'flag', 'emoji' ); settings.supports = { everything: true, everythingExceptFlag: true }; /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for( ii = 0; ii < tests.length; ii++ ) { settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; if ( 'flag' !== tests[ ii ] ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function() { settings.DOMReady = true; }; // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { ready = function() { settings.readyCallback(); }; /* * Cross-browser version of adding a dom ready event. */ if ( document.addEventListener ) { document.addEventListener( 'DOMContentLoaded', ready, false ); window.addEventListener( 'load', ready, false ); } else { window.attachEvent( 'onload', ready ); document.attachEvent( 'onreadystatechange', function() { if ( 'complete' === document.readyState ) { settings.readyCallback(); } } ); } src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } )( window, document, window._wpemojiSettings ); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='http://thepigmancometh.com/wp-includes/css/dist/block-library/style.css?ver=5.5.9' type='text/css' media='all' /> <link rel='stylesheet' id='inkblot-theme-css' href='http://thepigmancometh.com/wp-content/themes/inkblot/style.css?ver=5.5.9' type='text/css' media='all' /> <style id='inkblot-theme-inline-css' type='text/css'> .sidebar1{width:25%}.sidebar2{width:20%}.sidebar3{width:20%}main{width:calc(55% - 4px)}.wrapper{max-width:1280px;font-family:"Taviraj", sans-serif;background-color:#f7fcff;color:#000000}.document-header{max-width:1280px}.document-footer{max-width:1280px}body{font-size:95%;font-family:"Taviraj", sans-serif;background-color:#4aa8e8;color:#0800ff}h1:not(.site){font-family:"Taviraj", sans-serif}h2{font-family:"Taviraj", sans-serif}h3{font-family:"Taviraj", sans-serif}h4{font-family:"Taviraj", sans-serif}h5{font-family:"Taviraj", sans-serif}h6{font-family:"Taviraj", sans-serif}input{background-color:#f7fcff;color:#000000;border-color:#4054ed}textarea{background-color:#f7fcff;color:#000000;border-color:#4054ed}.banner nav{background-color:#fc3a87;color:#1500ff}.banner ul ul{background-color:#fc3a87;color:#1500ff}.banner select{background-color:#fc3a87;color:#1500ff}.contentinfo{background-color:#fc3a87;color:#1500ff}.post-webcomic nav{background-color:#fc3a87;color:#1500ff}button{background-color:#fc3a87;color:#1500ff}input[type="submit"]{background-color:#fc3a87;color:#1500ff}input[type="reset"]{background-color:#fc3a87;color:#1500ff}input[type="button"]{background-color:#fc3a87;color:#1500ff}a{color:#ff0000}a:focus{color:#6dbcdb}a:hover{color:#6dbcdb}button:focus{background-color:#4054ed}button:hover{background-color:#4054ed}input[type="submit"]:focus{background-color:#4054ed}input[type="submit"]:hover{background-color:#4054ed}input[type="reset"]:focus{background-color:#4054ed}input[type="reset"]:hover{background-color:#4054ed}input[type="button"]:focus{background-color:#4054ed}input[type="button"]:hover{background-color:#4054ed}.wrapper a{color:#4054ed}.post-footer span{color:#4054ed}nav.pagination{color:#4054ed}blockquote{border-color:#4054ed}hr{border-color:#4054ed}pre{border-color:#4054ed}th{border-color:#4054ed}td{border-color:#4054ed}fieldset{border-color:#4054ed}.post-footer{border-color:#4054ed}.comment{border-color:#4054ed}.comment .comment{border-color:#4054ed}.pingback{border-color:#4054ed}.trackback{border-color:#4054ed}.bypostauthor{border-color:#4054ed}.wrapper a:focus{color:#6dbcdb}.wrapper a:hover{color:#6dbcdb}input:focus{border-color:#6dbcdb}input:hover{border-color:#6dbcdb}textarea:focus{border-color:#6dbcdb}textarea:hover{border-color:#6dbcdb}.banner nav:before{color:#1500ff}.banner nav a{color:#1500ff}.contentinfo a{color:#1500ff}.post-webcomic nav a{color:#1500ff}.banner nav:focus:before{color:#0037ff}.banner nav:hover:before{color:#0037ff}.banner nav a:focus{color:#0037ff}.banner nav a:hover{color:#0037ff}.banner select:focus{color:#0037ff}.banner select:hover{color:#0037ff}.banner li:focus > a{color:#0037ff}.banner li:hover > a{color:#0037ff}.banner li.current_page_item > a{color:#0037ff}.banner li.current_page_ancestor > a{color:#0037ff}.contentinfo a:focus{color:#0037ff}.contentinfo a:hover{color:#0037ff}.post-webcomic nav a:focus{color:#0037ff}.post-webcomic nav a:hover{color:#0037ff}.banner > a{font-family:"Taviraj", sans-serif}.banner h1{display:none;visibility:hidden}.banner p{display:none;visibility:hidden}@media only screen and (max-width: 800px) { main, .sidebar1, .sidebar2, .sidebar3 {width: 100%} .two-column.content-right main, .three-column.content-center main, .three-column.content-right main, .four-column.content-left main, .four-column.content-right main, .four-column.content-far-right main {-moz-order: 1; -ms-order: 1; -o-order: 1; -webkit-order: 1; order: 1} .banner nav {background: none} .banner nav:before {display: block; visibility: visible} .banner nav ul {display: none; visibility: hidden} .banner nav select {display: block; visibility: visible; width: 100%} }ul li { list-style-type: none; } </style> <link rel='stylesheet' id='inkblot-font-css' href='https://fonts.googleapis.com/css?family=Taviraj%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTaviraj%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTaviraj%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTaviraj%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2Cregular%2Citalic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;ver=5.5.9' type='text/css' media='all' /> <script type='text/javascript' src='http://thepigmancometh.com/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp' id='jquery-core-js'></script> <link rel="https://api.w.org/" href="http://thepigmancometh.com/wp-json/" /><link rel="alternate" type="application/json" href="http://thepigmancometh.com/wp-json/wp/v2/posts/6884" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://thepigmancometh.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://thepigmancometh.com/wp-includes/wlwmanifest.xml" /> <link rel='prev' title='True' href='http://thepigmancometh.com/2024/12/17/true-2/' /> <meta name="generator" content="WordPress 5.5.9" /> <link rel="canonical" href="http://thepigmancometh.com/2025/02/02/wheres-the-white-luke-cage-motherfuckers/" /> <link rel='shortlink' href='http://thepigmancometh.com/?p=6884' /> <link rel="alternate" type="application/json+oembed" href="http://thepigmancometh.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fthepigmancometh.com%2F2025%2F02%2F02%2Fwheres-the-white-luke-cage-motherfuckers%2F" /> <link rel="alternate" type="text/xml+oembed" href="http://thepigmancometh.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fthepigmancometh.com%2F2025%2F02%2F02%2Fwheres-the-white-luke-cage-motherfuckers%2F&#038;format=xml" /> <link rel='stylesheet' id='custom_stylesheet' href='http://thepigmancometh.com/wp-content/uploads/css/custom_style.css' type='text/css' media='all' /> <!-- Analytics by WP-Statistics v12.6.13 - https://wp-statistics.com/ --> </head> <body id="document" class="post-template-default single single-post postid-6884 single-format-standard custom-background three-column content-left responsive"> <a href="#content">Skip to content</a> <div class="wrapper"> <header role="banner" class="banner widgets columns-1"> <a href="http://thepigmancometh.com" rel="home"> <h1 class="site">The Pigman Cometh !</h1> <p>The Snarkings of a Snarky Swine</p> <img src="http://thepigmancometh.com/wp-content/uploads/2015/09/PIGMAN-HEADER-SNARKINGS-1280-x-240-22-SEPTEMBER-2015-.png" width="1280" height="240" alt="The Pigman Cometh !"> </a> <nav role="navigation" aria-label="Primary Navigation"> <ul id="menu-menu-1" class="menu"><li id="menu-item-5057" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-5057"><a href="http://thepigmancometh.com/">Home</a></li> <li id="menu-item-5061" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5061"><a href="http://thepigmancometh.com/category/pigman-cometh-cartoons/">The Pigman Cometh Cartoons</a></li> <li id="menu-item-5058" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5058"><a href="http://thepigmancometh.com/yo-trolls/">Commenting Policy</a></li> <li id="menu-item-5059" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5059"><a href="http://thepigmancometh.com/f-a-q/">F.A.Q</a></li> </ul><select><option value="http://thepigmancometh.com/" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-5057" data-target="">Home</option><option value="http://thepigmancometh.com/category/pigman-cometh-cartoons/" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5061" data-target="">The Pigman Cometh Cartoons</option><option value="http://thepigmancometh.com/yo-trolls/" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5058" data-target="">Commenting Policy</option><option value="http://thepigmancometh.com/f-a-q/" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5059" data-target="">F.A.Q</option></select> </nav> </header><!-- .banner --> <div id="content" class="content" tabindex="-1"> <main role="main"> <article role="article" id="post-6884" class="post-6884 post type-post status-publish format-standard hentry category-politics category-popular-culture category-race"> <header class="post-header"> <h1>Where&#8217;s the White Luke Cage, motherfuckers?</h1> <div class="post-details"> <a href="http://thepigmancometh.com/2025/02/02/wheres-the-white-luke-cage-motherfuckers/" rel="bookmark"><span class="screen-reader-text">Where&#8217;s the White Luke Cage, motherfuckers? published on </span><time datetime="2025-02-02T08:47:34+11:00">February 2, 2025</time></a><a href="http://thepigmancometh.com/author/jiswi/" rel="author"><span class="screen-reader-text">Read more posts by the author of Where&#8217;s the White Luke Cage, motherfuckers?, </span>The Pigman</a> </div> </header><!-- .post-header --> <div class="post-content"> <p>So Captain America is now a Black guy. Have any Black characters been rebooted as White guys? Is Luke Cage now a poor cracker from the trailer park instead of a poor brother from the ‘hood? No, not to my knowledge. So what’s with all this crap? Why does the race-flipping almost always go in one direction?</p> <p>Is it because the Establishment media is trying to break down the barriers between the races? No, it isn’t. Were that the case, you would have Black characters going albino all over the place, but you don’t. Is it because the Establishment ( which is run almost completely by White motherfuckers ) is concerned about Black actors not having enough iconic characters to play? Again no, because even if the race-flipping went both ways it would still benefit Blacks far more than Whites. For every Luke Cage played by a White man there would be literally dozens of Captain Americas played by Black men.</p> <p>So what is going on? Well, in my view this is simply part of the psychological war that the Establishment has been waging against White people for the last twenty to thirty years. The same people who over-represent White crime while under-representing Black crime (in real life Black Americans commit about half the murders. Is that the picture you get watching things like Law and Order?) and acting as if things like slavery and empire are uniquely White evils have decided to deliver the message that, because we are an inferior race, White people will no longer have their own cultural properties. From now on there will be two sets of cultural properties in America &#8212; those owned by Blacks and Whites and those owned only by Blacks. Black people get Luke Cage all to themselves but White folks, being lesser than Black folks, have to share the Captain Americas with the Black folks. The message sent is a simple one, but also a powerful one and the people doing this know it. Imagine if there were a huge shift in Establishment popular culture and suddenly Blacks aren’t allowed to play White characters, but Whites are playing Luke Cage, Shaft, and the Black Panther! Sure enough, the pseudo-lefties supporting the current state of affairs would be making the same argument i am making &#8212; and they would be right to do so.</p> <p>This view invites the rather obvious question of “why would a White Establishment be beating up on White folks?!?!?” Well, the answer is mostly a matter of numbers &#8212; White folks are simply the majority of people in America, so they pose a greater threat to the Establishment than the Black people do &#8212; i give you as exhibit A the January 6 protest/riot &#8212; and therefore they have to be kept down. The other factor is that while angry Black people fight the power by burning down working class neighborhoods, White people fight the power by storming the capitol! The way the Establishment sees it, if they convince Whitey that he is shit, Whitey will stop taking his anger out on them and re-direct it towards his own community &#8212; just like Blacks do.</p> </div> <footer class="post-footer"> <span class="post-categories"><span class="screen-reader-text">Categories </span><a href="http://thepigmancometh.com/category/politics/" rel="tag">Politics</a>, <a href="http://thepigmancometh.com/category/popular-culture/" rel="tag">Popular Culture</a>, <a href="http://thepigmancometh.com/category/race/" rel="tag">Race</a></span> </footer><!-- .post-footer --> </article><!-- #post-6884 --> <nav class="navigation post-navigation" role="navigation" aria-label="Posts"> <h2 class="screen-reader-text">Post navigation</h2> <div class="nav-links"><div class="nav-previous"><a href="http://thepigmancometh.com/2024/12/17/true-2/" rel="prev"><span class="screen-reader-text">Previous post: </span>True</a></div></div> </nav> <section id="comments"> </section><!-- #comments --> </main> <div class="sidebar1 widgets columns-1"> <h1 class="screen-reader-text">Primary Sidebar</h1> <aside id="linkcat-54" class="widget widget_links"><h2>The Pigman's Social Links</h2> <ul class='xoxo blogroll'> <li><a href="https://gab.com/ThePigman">My Gab account</a></li> <li><a href="https://gettr.com/user/thepigman">My Gettr Account</a></li> <li><a href="https://rumble.com/user/TheRealPigman">Rumble</a></li> <li><a href="https://thepigmancometh.locals.com">The Pigman on Locals</a></li> <li><a href="https://www.tiktok.com/@thereallyrealpigman?lang=en">Tik Tok. Alas, yes.</a></li> </ul> </aside> <aside id="widget_sp_image-6" class="widget widget_sp_image"><img width="801" height="985" class="attachment-full" style="max-width: 100%;" srcset="http://thepigmancometh.com/wp-content/uploads/2019/01/pigman-portrait-for-sidebar.png 801w, http://thepigmancometh.com/wp-content/uploads/2019/01/pigman-portrait-for-sidebar-244x300.png 244w, http://thepigmancometh.com/wp-content/uploads/2019/01/pigman-portrait-for-sidebar-117x144.png 117w" sizes="(max-width: 801px) 100vw, 801px" src="http://thepigmancometh.com/wp-content/uploads/2019/01/pigman-portrait-for-sidebar.png" /></aside><aside id="custom_html-2" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><a href="https://twitter.com/The__Pigman?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @The__Pigman</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div></aside><aside id="meta-4" class="widget widget_meta"><h2>Meta</h2> <ul> <li><a href="http://thepigmancometh.com/wp-login.php">Log in</a></li> <li><a href="http://thepigmancometh.com/feed/">Entries feed</a></li> <li><a href="http://thepigmancometh.com/comments/feed/">Comments feed</a></li> <li><a href="https://wordpress.org/">WordPress.org</a></li> </ul> </aside> </div><!-- .sidebar1 --> <div class="sidebar2 widgets columns-1"> <h1 class="screen-reader-text">Secondary Sidebar</h1> <aside id="search-6" class="widget widget_search"> <form action="http://thepigmancometh.com/" role="search" class="search"> <p> <label for="s1">Search</label> <input type="search" id="s1" name="s"> </p> <p> <button type="submit">Search</button> </p> </form><!-- .search --></aside> <aside id="recent-posts-5" class="widget widget_recent_entries"> <h2>Recent Oinkings</h2> <ul> <li> <a href="http://thepigmancometh.com/2025/02/02/wheres-the-white-luke-cage-motherfuckers/" aria-current="page">Where&#8217;s the White Luke Cage, motherfuckers?</a> </li> <li> <a href="http://thepigmancometh.com/2024/12/17/true-2/">True</a> </li> <li> <a href="http://thepigmancometh.com/2024/12/15/asbestos-in-babys-diapers-you-got-to-be-shitting-me/">Asbestos in baby’s diapers? You got to be shitting me!</a> </li> <li> <a href="http://thepigmancometh.com/2024/12/11/is-the-left-wing-alternative-media-really-left-wing/">Is The Left Wing Alternative Media Really Left Wing?</a> </li> <li> <a href="http://thepigmancometh.com/2024/12/06/would-you-lament-the-death-of-a-crack-dealer/">Would you lament the death of a crack dealer?</a> </li> </ul> </aside><aside id="categories-6" class="widget widget_categories"><h2>Classified Oinkings</h2> <ul> <li class="cat-item cat-item-56"><a href="http://thepigmancometh.com/category/animal-welfare/">Animal Welfare</a> </li> <li class="cat-item cat-item-38"><a href="http://thepigmancometh.com/category/civil-liberties/">Civil Liberties</a> </li> <li class="cat-item cat-item-7"><a href="http://thepigmancometh.com/category/class-issues/">Class Issues</a> </li> <li class="cat-item cat-item-55"><a href="http://thepigmancometh.com/category/clown-world-cartoons/">Clown World Cartoons</a> </li> <li class="cat-item cat-item-37"><a href="http://thepigmancometh.com/category/gender-issues/">Gender Issues</a> </li> <li class="cat-item cat-item-4"><a href="http://thepigmancometh.com/category/pigman-cometh-cartoons/">Pigman Cometh Cartoons</a> </li> <li class="cat-item cat-item-48"><a href="http://thepigmancometh.com/category/pigman-videos/">Pigman Videos</a> </li> <li class="cat-item cat-item-42"><a href="http://thepigmancometh.com/category/politics/">Politics</a> </li> <li class="cat-item cat-item-6"><a href="http://thepigmancometh.com/category/popular-culture/">Popular Culture</a> </li> <li class="cat-item cat-item-22"><a href="http://thepigmancometh.com/category/race/">Race</a> </li> <li class="cat-item cat-item-36"><a href="http://thepigmancometh.com/category/religion/">Religion</a> </li> <li class="cat-item cat-item-44"><a href="http://thepigmancometh.com/category/stupidity-is-bad/">Stupidity Is Bad</a> </li> <li class="cat-item cat-item-57"><a href="http://thepigmancometh.com/category/the-environment/">The Environment</a> </li> <li class="cat-item cat-item-43"><a href="http://thepigmancometh.com/category/the-law/">The Law</a> </li> <li class="cat-item cat-item-8"><a href="http://thepigmancometh.com/category/war-sucks/">War Sucks</a> </li> </ul> </aside> </div><!-- .sidebar2 --> </div><!-- #content.content --> <footer role="contentinfo" class="contentinfo widgets columns-1"> <a href="#document">&copy; 2009&ndash;2025 The Pigman Cometh !</a> &bull; Powered by <a href="//wordpress.org">WordPress</a> with <a href="//github.com/mgsisk/inkblot">Inkblot</a> </footer><!-- .contentinfo --> </div><!-- .wrapper --> <script> document.addEventListener('DOMContentLoaded', function(event) { // check remember me by default var forms = document.querySelectorAll('form'); if (forms) { // look out for inputs named rememberme var rememberArray = []; var rememberMe = document.getElementsByName('rememberme'); if( rememberMe.length ) { rememberArray.push(rememberMe); } // look out for inputs named remember var remember = document.getElementsByName('remember'); if( remember.length ) { rememberArray.push(remember); } // if there are remember me inputs if( rememberArray.length ) { // 'check' the inputs so they're active for (i = 0; i < rememberArray.length; i++) { for (x = 0; x < rememberArray[i].length; x++) { rememberArray[i][x].checked = true; } } } // test for Ultimate Member Plugin forms // find the UM checkboxes var UmCheckboxIcon = document.querySelectorAll('.um-icon-android-checkbox-outline-blank'); var UmCheckboxLabel = document.querySelectorAll('.um-field-checkbox'); if( UmCheckboxIcon.length && UmCheckboxLabel.length ) { // loop through UM checkboxes for (i = 0; i < UmCheckboxLabel.length; i++) { // find the UM input element var UMCheckboxElement = UmCheckboxLabel[i].children; var UMCheckboxElementName = UMCheckboxElement[0].getAttribute('name'); // check if UM input element is remember me box if( UMCheckboxElementName === 'remember' || UMCheckboxElementName === 'rememberme' ) { // activate the UM checkbox if it is a remember me box UmCheckboxLabel[i].classList.add('active'); // swap out UM classes to show the active state UmCheckboxIcon[i].classList.add('um-icon-android-checkbox-outline'); UmCheckboxIcon[i].classList.remove('um-icon-android-checkbox-outline-blank'); } // endif } // end for } // endif UM // test for AR Member var ArmRememberMeCheckboxContainer = document.querySelectorAll('.arm_form_input_container_rememberme'); if( ArmRememberMeCheckboxContainer.length ) { for (i = 0; i < ArmRememberMeCheckboxContainer.length; i++) { var ArmRememberMeCheckbox = ArmRememberMeCheckboxContainer[i].querySelectorAll('md-checkbox'); if( ArmRememberMeCheckbox.length ) { // loop through AR Member checkboxes for (x = 0; x < ArmRememberMeCheckbox.length; x++) { if( ArmRememberMeCheckbox[x].classList.contains('ng-empty') ) { ArmRememberMeCheckbox[x].click(); } } } } } // end if AR Member } // endif forms }); </script><script type='text/javascript' src='http://thepigmancometh.com/wp-content/themes/inkblot/-/js/script.js?ver=5.5.9' id='inkblot-script-js'></script> <script type='text/javascript' src='http://thepigmancometh.com/wp-includes/js/wp-embed.js?ver=5.5.9' id='wp-embed-js'></script> </body><!-- #document --> </html>

Pages: 1 2 3 4 5 6 7 8 9 10