{"id":222048,"date":"2021-10-18T20:11:34","date_gmt":"2021-10-18T18:11:34","guid":{"rendered":"https:\/\/positiveaffirmationscenter.com\/?p=222048"},"modified":"2025-02-22T11:26:24","modified_gmt":"2025-02-22T10:26:24","slug":"affirmations-for-self-control","status":"publish","type":"post","link":"https:\/\/positiveaffirmationscenter.com\/affirmations-for-self-control\/","title":{"rendered":"40+ Affirmations for Self-Control: Master Your Mind and Boost Your Willpower"},"content":{"rendered":"\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">You\u2019re here because you want to take charge of your impulses, right? Maybe you\u2019re looking for <strong>affirmations for self-control<\/strong> to help you stay calm under pressure or resist that extra slice of pizza. Whatever it is, I\u2019ve got you covered with over 40 <strong>positive affirmations for self-control<\/strong> that I use myself\u2014and trust me, they work wonders.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Takeaways:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Learn what <strong>self-control affirmations<\/strong> are and why they matter.<\/li>\n\n\n\n<li>Get 40+ practical, easy-to-use <strong>affirmations for self control<\/strong> to try today.<\/li>\n\n\n\n<li>Find out how to make <strong>self-control <a class=\"wpil_keyword_link\" href=\"https:\/\/positiveaffirmationscenter.com\/affirmations-to-practice-daily\/\"   title=\"positive affirmations\" data-wpil-keyword-link=\"linked\">positive affirmations<\/a><\/strong> part of your daily routine.<\/li>\n\n\n\n<li>Feel empowered to handle cravings, stress, and tough moments like a pro.<\/li>\n<\/ul>\n\n\n\n<p>Okay, so picture this: You\u2019re staring down a bag of chips, and your brain\u2019s screaming, \u201cJust one more handful!\u201d Sound familiar? That\u2019s where these affirmations come in\u2014they\u2019re like a secret weapon for your <a class=\"wpil_keyword_link\" href=\"https:\/\/positiveaffirmationscenter.com\/positive-affirmations-for-willpower\/\"   title=\"willpower\" data-wpil-keyword-link=\"linked\">willpower<\/a>. Let\u2019s dive into how they can flip the script on those tricky moments.<\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\" \/>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" \/>\n  <title>Positive Affirmations for Self-Control<\/title>\n  <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Poppins:wght@300;400;500;600&#038;display=swap\" rel=\"stylesheet\">\n  <style>\n    body {\n      margin: 0;\n      font-family: 'Poppins', sans-serif;\n      background: linear-gradient(135deg, #d0e1f9, #f9f9f9);\n      display: flex;\n      justify-content: center;\n      align-items: center;\n      min-height: 100vh;\n      padding: 20px;\n      color: #333;\n    }\n    .container {\n      background: #fff;\n      border-radius: 15px;\n      box-shadow: 0 8px 16px rgba(0,0,0,0.15);\n      padding: 30px;\n      max-width: 600px;\n      width: 100%;\n      text-align: center;\n      animation: fadeIn 1s ease-in-out;\n    }\n    h2 {\n      margin-bottom: 20px;\n      font-size: 2rem;\n      color: #2c3e50;\n    }\n    .affirmation-box {\n      background: #fefefe;\n      border: 2px dashed #bbb;\n      border-radius: 10px;\n      padding: 20px;\n      font-size: 1.3rem;\n      font-style: italic;\n      min-height: 80px;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      margin-bottom: 20px;\n      transition: opacity 0.5s ease;\n    }\n    .button-group button {\n      background: #3498db;\n      color: #fff;\n      border: none;\n      padding: 10px 20px;\n      font-size: 1rem;\n      margin: 5px;\n      border-radius: 30px;\n      cursor: pointer;\n      transition: background 0.3s;\n    }\n    .button-group button:hover {\n      background: #2980b9;\n    }\n    @keyframes fadeIn {\n      from { opacity: 0; transform: translateY(-20px); }\n      to { opacity: 1; transform: translateY(0); }\n    }\n  <\/style>\n<\/head>\n<body>\n  <div class=\"container\">\n    <h2>Positive Affirmations for Self-Control<\/h2>\n    <div class=\"affirmation-box\" id=\"affirmation\">\n      Click &#8220;New Affirmation&#8221; to get started.\n    <\/div>\n    <div class=\"button-group\">\n      <button onclick=\"generateAffirmation()\">New Affirmation<\/button>\n      <button onclick=\"speakAffirmation()\">\ud83d\udd0a Listen<\/button>\n      <button onclick=\"copyAffirmation()\">\ud83d\udccb Copy<\/button>\n    <\/div>\n  <\/div>\n\n  <script>\n    const affirmations = [\n      \"I exercise self-control with grace and determination.\",\n      \"Every decision I make is a step toward my success.\",\n      \"I am disciplined, focused, and in control of my actions.\",\n      \"I trust myself to choose what\u2019s best for me at every moment.\",\n      \"I harness my inner strength to overcome challenges.\",\n      \"I am patient, resilient, and committed to my goals.\",\n      \"I practice self-control as a pathway to personal freedom.\",\n      \"My willpower is strong, and I stay true to my values.\",\n      \"I manage my impulses with wisdom and self-respect.\",\n      \"I create a balanced life through mindful, deliberate choices.\"\n    ];\n\n    \/\/ Generate a random affirmation with a fade effect\n    function generateAffirmation() {\n      const randomIndex = Math.floor(Math.random() * affirmations.length);\n      const affirmationText = affirmations[randomIndex];\n      const affirmationBox = document.getElementById(\"affirmation\");\n      affirmationBox.style.opacity = 0;\n      setTimeout(() => {\n        affirmationBox.innerText = affirmationText;\n        affirmationBox.style.opacity = 1;\n      }, 300);\n    }\n\n    \/\/ Speak the current affirmation using Speech Synthesis\n    function speakAffirmation() {\n      const text = document.getElementById(\"affirmation\").innerText;\n      const speech = new SpeechSynthesisUtterance(text);\n      speech.lang = \"en-US\";\n      speech.rate = 1;\n      speech.pitch = 1;\n      const voices = window.speechSynthesis.getVoices();\n      if (voices.length > 0) {\n        const naturalVoice = voices.find(voice => voice.name.includes(\"Google US English\")) || voices[0];\n        speech.voice = naturalVoice;\n      }\n      window.speechSynthesis.speak(speech);\n    }\n\n    \/\/ Copy the current affirmation to clipboard\n    function copyAffirmation() {\n      const text = document.getElementById(\"affirmation\").innerText;\n      navigator.clipboard.writeText(text).then(() => {\n        alert(\"Affirmation copied to clipboard!\");\n      });\n    }\n  <\/script>\n<\/body>\n<\/html>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Are Affirmations for Self-Control, Anyway?<\/strong><\/h2>\n\n\n\n<p>Have you ever wondered why some people seem to have an iron grip on their impulses while the rest of us are scrambling for self-discipline? Well, <strong>affirmations for self-control<\/strong> are short, punchy statements you say to yourself to boost your confidence and focus. They\u2019re not magic, but they sure feel like it when you\u2019re dodging temptation left and right.<\/p>\n\n\n\n<p>I started using <strong>self-control affirmations<\/strong> a few years back when I realized my late-night snacking was getting out of hand. Saying stuff like \u201cI am stronger than my cravings\u201d didn\u2019t just sound cool\u2014it actually rewired how I thought about food. These little phrases stick in your head and nudge you to make better choices. Pretty neat, huh?<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Self-Control Matters More Than You Think<\/strong><\/h2>\n\n\n\n<p>Here\u2019s a question to chew on: What\u2019s stopping you from being the best version of yourself? For me, it\u2019s usually a mix of procrastination and too many cookies. Self-control isn\u2019t just about saying no\u2014it\u2019s about saying yes to what really matters. Whether it\u2019s sticking to a workout plan or keeping your cool in an argument, <strong>positive affirmations for self-control<\/strong> can be your cheerleader.<\/p>\n\n\n\n<p>Think of it like this: every time you flex your self-control muscle, it gets a little stronger. And with <strong>self control affirmations<\/strong>, you\u2019re giving it a pep talk to keep going. I\u2019ve seen it work for me, and I bet it\u2019ll work for you too.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Use Affirmations for Self Control Like a Pro<\/strong><\/h2>\n\n\n\n<p>So, how do you actually make these <strong>affirmations for self-control<\/strong> stick? It\u2019s not about chanting them like a robot\u2014it\u2019s about feeling them. I like to say mine in the morning while brushing my teeth. It\u2019s quick, it\u2019s easy, and it sets me up to tackle the day.<\/p>\n\n\n\n<p>Here\u2019s my go-to routine:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Pick 3-5 <strong>self-control affirmations<\/strong> that hit home for you.<\/li>\n\n\n\n<li>Say them out loud (or in your head if you\u2019re <a class=\"wpil_keyword_link\" href=\"https:\/\/positiveaffirmationscenter.com\/affirmations-for-overcoming-shyness\/\"   title=\"shy\" data-wpil-keyword-link=\"linked\">shy<\/a>) with some gusto.<\/li>\n\n\n\n<li>Repeat them when you\u2019re tempted\u2014like when that donut\u2019s calling your name.<\/li>\n<\/ol>\n\n\n\n<p>Try it for a week. You\u2019ll be surprised how much calmer and in control you feel.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>40+ Self-Control Affirmations to Try Right Now<\/strong><\/h2>\n\n\n\n<p>Alright, let\u2019s get to the good stuff. Here\u2019s a big list of <strong>self-control positive affirmations<\/strong> I\u2019ve leaned on over the years. Pick the ones that vibe with you, tweak them if you want, and start saying them daily. Ready? Let\u2019s go!<\/p>\n\n\n\n<p><strong>Affirmations for Cravings and Temptation<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>I am stronger than any craving.<\/li>\n\n\n\n<li>My willpower grows with every \u201cno\u201d I say.<\/li>\n\n\n\n<li>I choose what\u2019s best for me, not what\u2019s easy.<\/li>\n\n\n\n<li>Temptation doesn\u2019t control me\u2014I control it.<\/li>\n\n\n\n<li>I\u2019m the boss of my impulses.<\/li>\n\n\n\n<li>I say yes to my goals, not my urges.<\/li>\n\n\n\n<li>Every resist makes me tougher.<\/li>\n<\/ol>\n\n\n\n<p><strong>Affirmations for Staying Calm<\/strong><\/p>\n\n\n\n<ol start=\"8\" class=\"wp-block-list\">\n<li>I stay cool, no matter what.<\/li>\n\n\n\n<li>My mind is <a class=\"wpil_keyword_link\" href=\"https:\/\/positiveaffirmationscenter.com\/peaceful-morning-affirmations\/\"   title=\"peaceful\" data-wpil-keyword-link=\"linked\">peaceful<\/a> and focused.<\/li>\n\n\n\n<li>I breathe through stress like it\u2019s nothing.<\/li>\n\n\n\n<li>I\u2019ve got this\u2014I don\u2019t lose my temper.<\/li>\n\n\n\n<li>I handle chaos with a steady hand.<\/li>\n\n\n\n<li>My calm is my power.<\/li>\n\n\n\n<li>I choose <a class=\"wpil_keyword_link\" href=\"https:\/\/positiveaffirmationscenter.com\/positive-affirmations-for-peace\/\"   title=\"peace\" data-wpil-keyword-link=\"linked\">peace<\/a> over panic every time.<\/li>\n<\/ol>\n\n\n\n<p><strong>Affirmations for Focus and Discipline<\/strong><\/p>\n\n\n\n<ol start=\"15\" class=\"wp-block-list\">\n<li>I stick to my plans like glue.<\/li>\n\n\n\n<li>My focus is sharp and unbreakable.<\/li>\n\n\n\n<li>I finish what I start, no excuses.<\/li>\n\n\n\n<li>Distractions don\u2019t stand a chance against me.<\/li>\n\n\n\n<li>I\u2019m locked in on what matters.<\/li>\n\n\n\n<li>My discipline is my strength.<\/li>\n\n\n\n<li>I keep pushing, even when it\u2019s hard.<\/li>\n<\/ol>\n\n\n\n<p><strong>Affirmations for Confidence<\/strong><\/p>\n\n\n\n<ol start=\"22\" class=\"wp-block-list\">\n<li>I trust myself to make smart choices.<\/li>\n\n\n\n<li>I\u2019ve got the guts to say no.<\/li>\n\n\n\n<li>My self-control is rock-solid.<\/li>\n\n\n\n<li>I\u2019m proud of how strong I am.<\/li>\n\n\n\n<li>I believe in my power to choose.<\/li>\n\n\n\n<li>I\u2019m in charge of my actions.<\/li>\n\n\n\n<li>I\u2019ve got willpower for days.<\/li>\n<\/ol>\n\n\n\n<p><strong>Affirmations for Long-Term Wins<\/strong><\/p>\n\n\n\n<ol start=\"29\" class=\"wp-block-list\">\n<li>I build habits that last.<\/li>\n\n\n\n<li>My future self thanks me for this.<\/li>\n\n\n\n<li>I choose progress over shortcuts.<\/li>\n\n\n\n<li>Every small win stacks up big.<\/li>\n\n\n\n<li>I\u2019m patient\u2014I don\u2019t need it now.<\/li>\n\n\n\n<li>I\u2019m playing the long game and winning.<\/li>\n\n\n\n<li>My goals are worth the wait.<\/li>\n<\/ol>\n\n\n\n<p><strong>Bonus Affirmations for Fun<\/strong><\/p>\n\n\n\n<ol start=\"36\" class=\"wp-block-list\">\n<li>I\u2019m a self-control ninja!<\/li>\n\n\n\n<li>Cravings? Psh, I laugh at them.<\/li>\n\n\n\n<li>I\u2019m too cool to lose my cool.<\/li>\n\n\n\n<li>My willpower\u2019s got swagger.<\/li>\n\n\n\n<li>I\u2019m the MVP of saying no.<\/li>\n\n\n\n<li>I dance past temptation like a pro.<\/li>\n\n\n\n<li>I\u2019m unstoppable\u2014watch me roll!<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why These Affirmations Work (Spoiler: It\u2019s All in Your Head)<\/strong><\/h2>\n\n\n\n<p>Ever notice how your brain loves a good pep talk? That\u2019s why <strong>self-control affirmations<\/strong> are so clutch. They flip your inner chatter from \u201cI can\u2019t do this\u201d to \u201cI totally can.\u201d Science backs this up\u2014repeating positive stuff can actually rewire your thinking patterns over time.<\/p>\n\n\n\n<p>For me, it\u2019s like having a tiny coach in my head. When I\u2019m about to cave and scroll TikTok for hours, I\u2019ll <a class=\"wpil_keyword_link\" href=\"https:\/\/positiveaffirmationscenter.com\/the-whisper-manifestation\/\"   title=\"whisper\" data-wpil-keyword-link=\"linked\">whisper<\/a>, \u201cI stick to my plans like glue.\u201d Boom\u2014phone down, task done. It\u2019s simple, but it works.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Mixing Affirmations Into Your Day<\/strong><\/h2>\n\n\n\n<p>Here\u2019s the deal: you don\u2019t need a fancy setup to use <strong>affirmations for self control<\/strong>. I\u2019ve said them in the <a class=\"wpil_keyword_link\" href=\"https:\/\/positiveaffirmationscenter.com\/shower-affirmations\/\"   title=\"shower\" data-wpil-keyword-link=\"linked\">shower<\/a>, stuck them on my fridge, even mumbled them in traffic. Find what clicks for you. Maybe write a few on your phone\u2019s lock screen so they pop up when you need them most.<\/p>\n\n\n\n<p>The trick? Keep it consistent. I started small\u2014three affirmations a day\u2014and now I\u2019ve got a whole arsenal of <strong>self-control positive affirmations<\/strong> ready to roll. You can do it too. What\u2019s your first one gonna be?<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Real Talk: Self-Control Isn\u2019t Always Easy<\/strong><\/h2>\n\n\n\n<p>I\u2019ll be honest\u2014some days, my <strong>self control affirmations<\/strong> feel like they\u2019re fighting a losing battle. Like when I\u2019m stressed and that chocolate bar\u2019s calling my name louder than ever. But here\u2019s what I\u2019ve learned: it\u2019s not about being perfect. It\u2019s about showing up for yourself, even when it\u2019s messy.<\/p>\n\n\n\n<p>One time, I caved and ate half a cake. Half. A. Cake. But instead of beating myself up, I said, \u201cI choose what\u2019s best for me, not what\u2019s easy,\u201d and got back on track the next day. That\u2019s the power of these affirmations\u2014they don\u2019t judge; they lift you up.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How affirmations for Self-Control Changed My Life<\/strong><\/h2>\n\n\n\n<p>I used to think self-control was some gift you\u2019re born with\u2014like <a class=\"wpil_keyword_link\" href=\"https:\/\/positiveaffirmationscenter.com\/affirmations-for-height-increase\/\"   title=\"height\" data-wpil-keyword-link=\"linked\">height<\/a> or good hair. Nope. It\u2019s a skill, and <strong>positive affirmations for self-control<\/strong> helped me build it. I\u2019m not perfect (see: cake incident), but I\u2019m miles ahead of where I started.<\/p>\n\n\n\n<p>Take procrastination, for example. I\u2019d put off work until the last second, stressing myself out. Now, with affirmations like \u201cI finish what I start,\u201d I\u2019m knocking out tasks early. It\u2019s wild how a few words can shift your whole vibe.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Your Turn: Start Today<\/strong><\/h2>\n\n\n\n<p>So, what\u2019s stopping you from trying these <strong>self-control affirmations<\/strong>? Nothing, right? Grab a few from the list, say them like you mean it, and watch how they start steering you straight. You don\u2019t need to overhaul your life\u2014just start small and let it grow.<\/p>\n\n\n\n<p>I\u2019d love to hear which ones you pick. Drop your faves in your head (or out loud if you\u2019re feeling bold) and see how they feel. You\u2019ve got this\u2014I\u2019m rooting for you!<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">Mastering self-control doesn\u2019t have to feel like climbing a mountain. With these 40+ <strong>affirmations for self-control<\/strong>, you\u2019ve got a toolbox to tackle cravings, stress, and distractions head-on. I\u2019ve shared what works for me\u2014<strong>positive affirmations for self-control<\/strong> that keep me grounded and focused\u2014and now it\u2019s your turn to give them a spin. <\/p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">They\u2019re simple, they\u2019re fun, and they just might change how you see yourself. So, go ahead, pick a few <strong>self control affirmations<\/strong>, and start owning your choices today. You\u2019re stronger than you think!<\/p>\n<style>\r\n\r\n        .lwrp.link-whisper-related-posts{\r\n            \r\n            margin-top: 40px;\nmargin-bottom: 30px;\r\n        }\r\n        .lwrp .lwrp-title{\r\n            \r\n            \r\n        }\r\n        .lwrp .lwrp-description{\r\n            \r\n            \r\n\r\n        }\r\n        .lwrp .lwrp-list-container{\r\n        }\r\n        .lwrp .lwrp-list-multi-container{\r\n            display: flex;\r\n        }\r\n        .lwrp .lwrp-list-double{\r\n            width: 48%;\r\n        }\r\n        .lwrp .lwrp-list-triple{\r\n            width: 32%;\r\n        }\r\n        .lwrp .lwrp-list-row-container{\r\n            display: flex;\r\n            justify-content: space-between;\r\n        }\r\n        .lwrp .lwrp-list-row-container .lwrp-list-item{\r\n            width: calc(25% - 20px);\r\n        }\r\n        .lwrp .lwrp-list-item:not(.lwrp-no-posts-message-item){\r\n            \r\n            \r\n        }\r\n        .lwrp .lwrp-list-item img{\r\n            max-width: 100%;\r\n            height: auto;\r\n        }\r\n        .lwrp .lwrp-list-item.lwrp-empty-list-item{\r\n            background: initial !important;\r\n        }\r\n        .lwrp .lwrp-list-item .lwrp-list-link .lwrp-list-link-title-text,\r\n        .lwrp .lwrp-list-item .lwrp-list-no-posts-message{\r\n            \r\n                \r\n        }\r\n        @media screen and (max-width: 480px) {\r\n            .lwrp.link-whisper-related-posts{\r\n                \r\n                \r\n            }\r\n            .lwrp .lwrp-title{\r\n                \r\n                \r\n            }\r\n            .lwrp .lwrp-description{\r\n                \r\n                \r\n            }\r\n            .lwrp .lwrp-list-multi-container{\r\n                flex-direction: column;\r\n            }\r\n            .lwrp .lwrp-list-multi-container ul.lwrp-list{\r\n                margin-top: 0px;\r\n                margin-bottom: 0px;\r\n                padding-top: 0px;\r\n                padding-bottom: 0px;\r\n            }\r\n            .lwrp .lwrp-list-double,\r\n            .lwrp .lwrp-list-triple{\r\n                width: 100%;\r\n            }\r\n            .lwrp .lwrp-list-row-container{\r\n                justify-content: initial;\r\n                flex-direction: column;\r\n            }\r\n            .lwrp .lwrp-list-row-container .lwrp-list-item{\r\n                width: 100%;\r\n            }\r\n            .lwrp .lwrp-list-item:not(.lwrp-no-posts-message-item){\r\n                \r\n                \r\n            }\r\n            .lwrp .lwrp-list-item .lwrp-list-link .lwrp-list-link-title-text,\r\n            .lwrp .lwrp-list-item .lwrp-list-no-posts-message{\r\n                \r\n                    \r\n            }\r\n        }<\/style>\r\n<div id=\"link-whisper-related-posts-widget\" class=\"link-whisper-related-posts lwrp\">\r\n            <h3 class=\"lwrp-title\">Related Posts<\/h3>    \r\n        <div class=\"lwrp-list-container\">\r\n                                            <div class=\"lwrp-list-multi-container\">\r\n                    <ul class=\"lwrp-list lwrp-list-double lwrp-list-left\">\r\n                        <li class=\"lwrp-list-item\"><a href=\"https:\/\/positiveaffirmationscenter.com\/intuitive-journaling\/\" class=\"lwrp-list-link\"><span class=\"lwrp-list-link-title-text\">Unlock Creativity with Intuitive Journaling Tips<\/span><\/a><\/li><li class=\"lwrp-list-item\"><a href=\"https:\/\/positiveaffirmationscenter.com\/what-is-gaslighting\/\" class=\"lwrp-list-link\"><span class=\"lwrp-list-link-title-text\">What is Gaslighting? Unveiling Manipulative Behavior<\/span><\/a><\/li><li class=\"lwrp-list-item\"><a href=\"https:\/\/positiveaffirmationscenter.com\/811-angel-number-twin-flame\/\" class=\"lwrp-list-link\"><span class=\"lwrp-list-link-title-text\">811 Angel Number Twin Flame Meaning Unveiled<\/span><\/a><\/li><li class=\"lwrp-list-item\"><a href=\"https:\/\/positiveaffirmationscenter.com\/positive-affirmations-for-mothers\/\" class=\"lwrp-list-link\"><span class=\"lwrp-list-link-title-text\">Positive Affirmations for Mothers: How to Build Confidence and Joy in Parenting<\/span><\/a><\/li>                    <\/ul>\r\n                    <ul class=\"lwrp-list lwrp-list-double lwrp-list-right\">\r\n                        <li class=\"lwrp-list-item\"><a href=\"https:\/\/positiveaffirmationscenter.com\/positive-affirmations-for-parents\/\" class=\"lwrp-list-link\"><span class=\"lwrp-list-link-title-text\">Affirmations for Parents: 40+ Positive Phrases to Boost Confidence &amp; Joy<\/span><\/a><\/li><li class=\"lwrp-list-item\"><a href=\"https:\/\/positiveaffirmationscenter.com\/quantum-physics-laws-of-attraction\/\" class=\"lwrp-list-link\"><span class=\"lwrp-list-link-title-text\">Quantum Physics and the Law of Attraction: Understanding the Connection<\/span><\/a><\/li><li class=\"lwrp-list-item\"><a href=\"https:\/\/positiveaffirmationscenter.com\/affirmations-for-insecurity\/\" class=\"lwrp-list-link\"><span class=\"lwrp-list-link-title-text\">Affirmations For Insecurity: 50 Powerful Statements to Silence Self-Doubt and Build Confidence<\/span><\/a><\/li><li class=\"lwrp-list-item\"><a href=\"https:\/\/positiveaffirmationscenter.com\/how-to-improve-emotional-maturity\/\" class=\"lwrp-list-link\"><span class=\"lwrp-list-link-title-text\">Unlocking Potential: How to Improve Emotional Maturity<\/span><\/a><\/li>                    <\/ul>\r\n                <\/div>\r\n                        <\/div>\r\n<\/div>","protected":false},"excerpt":{"rendered":"<p>You\u2019re here because you want to take charge of your impulses, right? Maybe you\u2019re looking for affirmations for self-control to&#8230;<\/p>\n","protected":false},"author":1,"featured_media":239228,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"googlesitekit_rrm_CAowoq2_DA:productID":"","_uag_custom_page_level_css":"","_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[7067],"tags":[],"class_list":["post-222048","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-affirmations"],"uagb_featured_image_src":{"full":["https:\/\/positiveaffirmationscenter.com\/wp-content\/uploads\/2021\/10\/Designer-21.jpeg",1024,1024,false],"thumbnail":["https:\/\/positiveaffirmationscenter.com\/wp-content\/uploads\/2021\/10\/Designer-21-300x300.jpeg",300,300,true],"medium":["https:\/\/positiveaffirmationscenter.com\/wp-content\/uploads\/2021\/10\/Designer-21-300x300.jpeg",300,300,true],"medium_large":["https:\/\/positiveaffirmationscenter.com\/wp-content\/uploads\/2021\/10\/Designer-21-768x768.jpeg",768,768,true],"large":["https:\/\/positiveaffirmationscenter.com\/wp-content\/uploads\/2021\/10\/Designer-21-845x845.jpeg",845,845,true],"1536x1536":["https:\/\/positiveaffirmationscenter.com\/wp-content\/uploads\/2021\/10\/Designer-21.jpeg",1024,1024,false],"2048x2048":["https:\/\/positiveaffirmationscenter.com\/wp-content\/uploads\/2021\/10\/Designer-21.jpeg",1024,1024,false]},"uagb_author_info":{"display_name":"Dobrivoje","author_link":"https:\/\/positiveaffirmationscenter.com\/author\/dbojic87\/"},"uagb_comment_info":0,"uagb_excerpt":"You\u2019re here because you want to take charge of your impulses, right? Maybe you\u2019re looking for affirmations for self-control to...","_links":{"self":[{"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/posts\/222048","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/comments?post=222048"}],"version-history":[{"count":8,"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/posts\/222048\/revisions"}],"predecessor-version":[{"id":254802,"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/posts\/222048\/revisions\/254802"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/media\/239228"}],"wp:attachment":[{"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/media?parent=222048"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/categories?post=222048"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/positiveaffirmationscenter.com\/wp-json\/wp\/v2\/tags?post=222048"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}