Wikipedia
gpewiki
https://gpe.wikipedia.org/wiki/Main_Page
MediaWiki 1.47.0-wmf.17
first-letter
Media
Special
Talk
User
User talk
Wikipedia
Wikipedia talk
File
File talk
MediaWiki
MediaWiki talk
Template
Template talk
Help
Help talk
Category
Category talk
TimedText
TimedText talk
Module
Module talk
Event
Event talk
Module:Infobox
828
2521
111303
40814
2026-08-30T02:46:13Z
ChomponU Pongsawet
7580
Update from [[d:Special:GoToLinkedPage/enwiki/Q13107716|master]] using [[mw:Synchronizer| #Synchronizer]]
111303
Scribunto
text/plain
local p = {}
local args = {}
local origArgs = {}
local root
local empty_row_categories = {}
local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]'
local has_rows = false
local yesno = require("Module:Yesno")
local lists = {
plainlist_t = {
patterns = {
'^plainlist$',
'%splainlist$',
'^plainlist%s',
'%splainlist%s'
},
found = false,
styles = 'Plainlist/styles.css'
},
hlist_t = {
patterns = {
'^hlist$',
'%shlist$',
'^hlist%s',
'%shlist%s'
},
found = false,
styles = 'Hlist/styles.css'
}
}
local function has_list_class(args_to_check)
for _, list in pairs(lists) do
if not list.found then
for _, arg in pairs(args_to_check) do
for _, pattern in ipairs(list.patterns) do
if mw.ustring.find(arg or '', pattern) then
list.found = true
break
end
end
if list.found then break end
end
end
end
end
local function isUntitledChildBox(sval)
return sval and ( sval:match( '^%s*<%s*[Tt][Rr]' ) or sval:match( '^%s*\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127%s*<%s*[Tt][Rr]' ) )
end
local function fixChildBoxes(sval, tt)
local function notempty( s ) return s and s:match( '%S' ) end
if notempty(sval) then
local marker = '<span class=special_infobox_marker>'
local s = sval
-- start moving templatestyles and categories inside of table rows
local slast = ''
while slast ~= s do
slast = s
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*%]%])', '%2%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)', '%2%1')
end
-- end moving templatestyles and categories inside of table rows
s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker)
if s:match(marker) then
s = mw.ustring.gsub(s, marker .. '%s*' .. marker, '')
s = mw.ustring.gsub(s, '([\r\n]|-[^\r\n]*[\r\n])%s*' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '%s*([\r\n]|-)', '%1')
s = mw.ustring.gsub(s, '(</[Cc][Aa][Pp][Tt][Ii][Oo][Nn]%s*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '(<%s*[Tt][Aa][Bb][Ll][Ee][^<>]*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '^(%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '([\r\n]%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '(%s*</[Tt][Aa][Bb][Ll][Ee]%s*>)', '%1')
s = mw.ustring.gsub(s, marker .. '(%s*\n|%})', '%1')
end
if s:match(marker) then
local subcells = mw.text.split(s, marker)
s = ''
for k = 1, #subcells do
if k == 1 then
s = s .. subcells[k] .. '</' .. tt .. '></tr>'
elseif k == #subcells then
local rowstyle = ' style="display:none"'
if notempty(subcells[k]) then rowstyle = '' end
s = s .. '<tr' .. rowstyle ..'><' .. tt .. ' colspan=2>\n' ..
subcells[k]
elseif notempty(subcells[k]) then
if (k % 2) == 0 then
s = s .. subcells[k]
else
s = s .. '<tr><' .. tt .. ' colspan=2>\n' ..
subcells[k] .. '</' .. tt .. '></tr>'
end
end
end
end
-- the next two lines add a newline at the end of lists for the PHP parser
-- [[Special:Diff/849054481]]
-- remove when [[:phab:T191516]] is fixed or OBE
s = mw.ustring.gsub(s, '([\r\n][%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:])', '\n%1')
s = mw.ustring.gsub(s, '^(%{%|)', '\n%1')
return s
else
return sval
end
end
-- Cleans empty tables
local function cleanInfobox()
root = tostring(root)
if has_rows == false then
root = mw.ustring.gsub(root, '<table[^<>]*>%s*</table>', '')
end
end
-- Returns the union of the values of two tables, as a sequence.
local function union(t1, t2)
local vals = {}
for k, v in pairs(t1) do
vals[v] = true
end
for k, v in pairs(t2) do
vals[v] = true
end
local ret = {}
for k, v in pairs(vals) do
table.insert(ret, k)
end
return ret
end
-- Returns a table containing the numbers of the arguments that exist
-- for the specified prefix. For example, if the prefix was 'data', and
-- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}.
local function getArgNums(prefix)
local nums = {}
for k, v in pairs(args) do
local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
if num then table.insert(nums, tonumber(num)) end
end
table.sort(nums)
return nums
end
-- Adds a row to the infobox, with either a header cell
-- or a label/data cell combination.
local function addRow(rowArgs)
if rowArgs.header and rowArgs.header ~= '_BLANK_' then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class, args.headerclass })
root
:tag('tr')
:addClass(rowArgs.rowclass)
:addClass( isUntitledChildBox( rowArgs.header ) and 'infobox-hiddenrow' or nil )
:cssText(rowArgs.rowstyle)
:tag('th')
:attr('colspan', '2')
:addClass('infobox-header')
:addClass(rowArgs.class)
:addClass(args.headerclass)
-- @deprecated next; target .infobox-<name> .infobox-header
:cssText(args.headerstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.header, 'th'))
if rowArgs.data and not yesno(args.decat) then
root:wikitext(
'[[Category:Pages using infobox templates with ignored data cells]]'
)
end
elseif rowArgs.data and rowArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class })
local row = root:tag('tr')
row:addClass(rowArgs.rowclass)
row:cssText(rowArgs.rowstyle)
if rowArgs.label then
row
:tag('th')
:attr('scope', 'row')
:addClass('infobox-label')
-- @deprecated next; target .infobox-<name> .infobox-label
:cssText(args.labelstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(rowArgs.label)
:done()
else
row:addClass( isUntitledChildBox( rowArgs.data ) and 'infobox-hiddenrow' or nil )
end
local dataCell = row:tag('td')
dataCell
:attr('colspan', not rowArgs.label and '2' or nil)
:addClass(not rowArgs.label and 'infobox-full-data' or 'infobox-data')
:addClass(rowArgs.class)
-- @deprecated next; target .infobox-<name> .infobox(-full)-data
:cssText(rowArgs.datastyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.data, 'td'))
else
table.insert(empty_row_categories, rowArgs.data or '')
end
end
local function renderTitle()
if not args.title then return end
has_rows = true
has_list_class({args.titleclass})
root
:tag('caption')
:addClass('infobox-title')
:addClass(args.titleclass)
-- @deprecated next; target .infobox-<name> .infobox-title
:cssText(args.titlestyle)
:wikitext(args.title)
end
local function renderAboveRow()
if not args.above then return end
has_rows = true
has_list_class({ args.aboveclass })
root
:tag('tr')
:addClass( isUntitledChildBox( args.above ) and 'infobox-hiddenrow' or nil )
:tag('th')
:attr('colspan', '2')
:addClass('infobox-above')
:addClass(args.aboveclass)
-- @deprecated next; target .infobox-<name> .infobox-above
:cssText(args.abovestyle)
:wikitext(fixChildBoxes(args.above,'th'))
end
local function renderBelowRow()
if not args.below then return end
has_rows = true
has_list_class({ args.belowclass })
root
:tag('tr')
:addClass( isUntitledChildBox( args.below ) and 'infobox-hiddenrow' or nil )
:tag('td')
:attr('colspan', '2')
:addClass('infobox-below')
:addClass(args.belowclass)
-- @deprecated next; target .infobox-<name> .infobox-below
:cssText(args.belowstyle)
:wikitext(fixChildBoxes(args.below,'td'))
end
local function addSubheaderRow(subheaderArgs)
if subheaderArgs.data and
subheaderArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ subheaderArgs.rowclass, subheaderArgs.class })
local row = root:tag('tr')
row:addClass(subheaderArgs.rowclass)
row:addClass( isUntitledChildBox( subheaderArgs.data ) and 'infobox-hiddenrow' or nil )
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-subheader')
:addClass(subheaderArgs.class)
:cssText(subheaderArgs.datastyle)
:cssText(subheaderArgs.rowcellstyle)
:wikitext(fixChildBoxes(subheaderArgs.data, 'td'))
else
table.insert(empty_row_categories, subheaderArgs.data or '')
end
end
local function renderSubheaders()
if args.subheader then
args.subheader1 = args.subheader
end
if args.subheaderrowclass then
args.subheaderrowclass1 = args.subheaderrowclass
end
local subheadernums = getArgNums('subheader')
for k, num in ipairs(subheadernums) do
addSubheaderRow({
data = args['subheader' .. tostring(num)],
-- @deprecated next; target .infobox-<name> .infobox-subheader
datastyle = args.subheaderstyle,
rowcellstyle = args['subheaderstyle' .. tostring(num)],
class = args.subheaderclass,
rowclass = args['subheaderrowclass' .. tostring(num)]
})
end
end
local function addImageRow(imageArgs)
if imageArgs.data and
imageArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ imageArgs.rowclass, imageArgs.class })
local row = root:tag('tr')
row:addClass(imageArgs.rowclass)
row:addClass( isUntitledChildBox( imageArgs.data ) and 'infobox-hiddenrow' or nil )
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-image')
:addClass(imageArgs.class)
:cssText(imageArgs.datastyle)
:wikitext(fixChildBoxes(imageArgs.data, 'td'))
else
table.insert(empty_row_categories, imageArgs.data or '')
end
end
local function renderImages()
if args.image then
args.image1 = args.image
end
if args.caption then
args.caption1 = args.caption
end
local imagenums = getArgNums('image')
for k, num in ipairs(imagenums) do
local caption = args['caption' .. tostring(num)]
local data = mw.html.create():wikitext(args['image' .. tostring(num)])
if caption then
data
:tag('div')
:addClass('infobox-caption')
-- @deprecated next; target .infobox-<name> .infobox-caption
:cssText(args.captionstyle)
:wikitext(caption)
end
addImageRow({
data = tostring(data),
-- @deprecated next; target .infobox-<name> .infobox-image
datastyle = args.imagestyle,
class = args.imageclass,
rowclass = args['imagerowclass' .. tostring(num)]
})
end
end
-- When autoheaders are turned on, preprocesses the rows
local function preprocessRows()
if not args.autoheaders then return end
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
local lastheader
for k, num in ipairs(rownums) do
if args['header' .. tostring(num)] then
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
lastheader = num
elseif args['data' .. tostring(num)] and
args['data' .. tostring(num)]:gsub(
category_in_empty_row_pattern, ''
):match('^%S') then
local data = args['data' .. tostring(num)]
if data:gsub(category_in_empty_row_pattern, ''):match('%S') then
lastheader = nil
end
end
end
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
end
-- Gets the union of the header and data argument numbers,
-- and renders them all in order
local function renderRows()
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
for k, num in ipairs(rownums) do
addRow({
header = args['header' .. tostring(num)],
label = args['label' .. tostring(num)],
data = args['data' .. tostring(num)],
datastyle = args.datastyle,
class = args['class' .. tostring(num)],
rowclass = args['rowclass' .. tostring(num)],
-- @deprecated next; target .infobox-<name> rowclass
rowstyle = args['rowstyle' .. tostring(num)],
rowcellstyle = args['rowcellstyle' .. tostring(num)]
})
end
end
local function renderNavBar()
if not args.name then return end
has_rows = true
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-navbar')
:wikitext(require('Module:Navbar')._navbar{
args.name,
mini = 1,
})
end
local function renderItalicTitle()
local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title'])
if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then
root:wikitext(require('Module:Italic title')._main({}))
end
end
-- Categories in otherwise empty rows are collected in empty_row_categories.
-- This function adds them to the module output. It is not affected by
-- args.decat because this module should not prevent module-external categories
-- from rendering.
local function renderEmptyRowCategories()
for _, s in ipairs(empty_row_categories) do
root:wikitext(s)
end
end
-- Render tracking categories. args.decat == turns off tracking categories.
local function renderTrackingCategories()
if yesno(args.decat) then return end
if args.child == 'yes' then
if args.title then
root:wikitext(
'[[Category:Pages using embedded infobox templates with the title parameter]]'
)
end
elseif #(getArgNums('data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then
root:wikitext('[[Category:Articles using infobox templates with no data rows]]')
end
end
--[=[
Loads the templatestyles for the infobox.
TODO: FINISH loading base templatestyles here rather than in
MediaWiki:Common.css. There are 4-5000 pages with 'raw' infobox tables.
See [[Mediawiki_talk:Common.css/to_do#Infobox]] and/or come help :).
When we do this we should clean up the inline CSS below too.
Will have to do some bizarre conversion category like with sidebar.
]=]
local function loadTemplateStyles()
local frame = mw.getCurrentFrame()
local hlist_templatestyles = ''
if lists.hlist_t.found then
hlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.hlist_t.styles }
}
end
local plainlist_templatestyles = ''
if lists.plainlist_t.found then
plainlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.plainlist_t.styles }
}
end
-- See function description
local base_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = 'Module:Infobox/styles.css' }
}
local templatestyles = ''
if args['templatestyles'] then
templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['templatestyles'] }
}
end
local child_templatestyles = ''
if args['child templatestyles'] then
child_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['child templatestyles'] }
}
end
local grandchild_templatestyles = ''
if args['grandchild templatestyles'] then
grandchild_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['grandchild templatestyles'] }
}
end
return table.concat({
-- hlist -> plainlist -> base is best-effort to preserve old Common.css ordering.
-- this ordering is not a guarantee because the rows of interest invoking
-- each class may not be on a specific page
hlist_templatestyles,
plainlist_templatestyles,
base_templatestyles,
templatestyles,
child_templatestyles,
grandchild_templatestyles
})
end
-- common functions between the child and non child cases
local function structure_infobox_common()
renderSubheaders()
renderImages()
preprocessRows()
renderRows()
renderBelowRow()
renderNavBar()
renderItalicTitle()
renderEmptyRowCategories()
renderTrackingCategories()
cleanInfobox()
end
-- Specify the overall layout of the infobox, with special settings if the
-- infobox is used as a 'child' inside another infobox.
local function _infobox()
if args.child ~= 'yes' then
root = mw.html.create('table')
root
:addClass(args.subbox == 'yes' and 'infobox-subbox' or 'infobox')
:addClass(args.bodyclass)
-- @deprecated next; target .infobox-<name>
:cssText(args.bodystyle)
has_list_class({ args.bodyclass })
renderTitle()
renderAboveRow()
else
root = mw.html.create()
root
:wikitext(args.title)
end
structure_infobox_common()
return loadTemplateStyles() .. root
end
-- If the argument exists and isn't blank, add it to the argument table.
-- Blank arguments are treated as nil to match the behaviour of ParserFunctions.
local function preprocessSingleArg(argName)
if origArgs[argName] and origArgs[argName] ~= '' then
args[argName] = origArgs[argName]
end
end
-- Assign the parameters with the given prefixes to the args table, in order, in
-- batches of the step size specified. This is to prevent references etc. from
-- appearing in the wrong order. The prefixTable should be an array containing
-- tables, each of which has two possible fields, a "prefix" string and a
-- "depend" table. The function always parses parameters containing the "prefix"
-- string, but only parses parameters in the "depend" table if the prefix
-- parameter is present and non-blank.
local function preprocessArgs(prefixTable, step)
if type(prefixTable) ~= 'table' then
error("Non-table value detected for the prefix table", 2)
end
if type(step) ~= 'number' then
error("Invalid step value detected", 2)
end
-- Get arguments without a number suffix, and check for bad input.
for i,v in ipairs(prefixTable) do
if type(v) ~= 'table' or type(v.prefix) ~= "string" or
(v.depend and type(v.depend) ~= 'table') then
error('Invalid input detected to preprocessArgs prefix table', 2)
end
preprocessSingleArg(v.prefix)
-- Only parse the depend parameter if the prefix parameter is present
-- and not blank.
if args[v.prefix] and v.depend then
for j, dependValue in ipairs(v.depend) do
if type(dependValue) ~= 'string' then
error('Invalid "depend" parameter value detected in preprocessArgs')
end
preprocessSingleArg(dependValue)
end
end
end
-- Get arguments with number suffixes.
local a = 1 -- Counter variable.
local moreArgumentsExist = true
while moreArgumentsExist == true do
moreArgumentsExist = false
for i = a, a + step - 1 do
for j,v in ipairs(prefixTable) do
local prefixArgName = v.prefix .. tostring(i)
if origArgs[prefixArgName] then
-- Do another loop if any arguments are found, even blank ones.
moreArgumentsExist = true
preprocessSingleArg(prefixArgName)
end
-- Process the depend table if the prefix argument is present
-- and not blank, or we are processing "prefix1" and "prefix" is
-- present and not blank, and if the depend table is present.
if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then
for j,dependValue in ipairs(v.depend) do
local dependArgName = dependValue .. tostring(i)
preprocessSingleArg(dependArgName)
end
end
end
end
a = a + step
end
end
-- Parse the data parameters in the same order that the old {{infobox}} did, so
-- that references etc. will display in the expected places. Parameters that
-- depend on another parameter are only processed if that parameter is present,
-- to avoid phantom references appearing in article reference lists.
local function parseDataParameters()
preprocessSingleArg('autoheaders')
preprocessSingleArg('child')
preprocessSingleArg('bodyclass')
preprocessSingleArg('subbox')
preprocessSingleArg('bodystyle')
preprocessSingleArg('title')
preprocessSingleArg('titleclass')
preprocessSingleArg('titlestyle')
preprocessSingleArg('above')
preprocessSingleArg('aboveclass')
preprocessSingleArg('abovestyle')
preprocessArgs({
{prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}}
}, 10)
preprocessSingleArg('subheaderstyle')
preprocessSingleArg('subheaderclass')
preprocessArgs({
{prefix = 'image', depend = {'caption', 'imagerowclass'}}
}, 10)
preprocessSingleArg('captionstyle')
preprocessSingleArg('imagestyle')
preprocessSingleArg('imageclass')
preprocessArgs({
{prefix = 'header'},
{prefix = 'data', depend = {'label'}},
{prefix = 'rowclass'},
{prefix = 'rowstyle'},
{prefix = 'rowcellstyle'},
{prefix = 'class'}
}, 50)
preprocessSingleArg('headerclass')
preprocessSingleArg('headerstyle')
preprocessSingleArg('labelstyle')
preprocessSingleArg('datastyle')
preprocessSingleArg('below')
preprocessSingleArg('belowclass')
preprocessSingleArg('belowstyle')
preprocessSingleArg('name')
-- different behaviour for italics if blank or absent
args['italic title'] = origArgs['italic title']
preprocessSingleArg('decat')
preprocessSingleArg('templatestyles')
preprocessSingleArg('child templatestyles')
preprocessSingleArg('grandchild templatestyles')
end
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
function p.infobox(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
parseDataParameters()
return _infobox()
end
-- For calling via #invoke within a template
function p.infoboxTemplate(frame)
origArgs = {}
for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end
parseDataParameters()
return _infobox()
end
return p
kueb5p6xeoq6x7bxu2zyyl7pmxgesrs
Mandisa Maya
0
3887
111302
27136
2026-08-30T02:24:52Z
CommonsDelinker
61
Replacing High_Court,_Bloemfontein,_South_Africa.JPG with [[File:Supreme_Court_of_Appeal,_Bloemfontein,_South_Africa.jpg]] (by [[:c:User:CommonsDelinker|CommonsDelinker]] because: [[:c:COM:FR|File renamed]]: Renaming criterion 3: misidentified object).
111302
wikitext
text/x-wiki
{{Databox|item=Q29119101}}
'''Mandisa Muriel Lindelwa Maya''' (dem born am 20 March 1964) be de Deputy Chief Justice of South Africa. Na she formerly be de President of de Supreme Court of Appeal from 2017 go 2022. She join de bench for May 2000 insyd as judge give de Transkei Division of de High Court of South Africa wey dem elevate am go de Supreme Court of Appeal for 2006 insyd.
Born for Eastern Cape insyd, Maya start ein legal career for Transkei, as prosecutor den state law adviser till dem admit as sam advocate for 1994 insyd. Presido Thabo Mbeki appoint am go de Mthatha High Court for May 2000 insyd den for de Supreme Court of Appeal for June 2006 insyd. For de appellate court insyd, dem elevate am go deputy presidency for September 2015 insyd den de presidency for May 2017 insyd, succeeding Lex Mpati for both positions insyd. Na she be de first black woman wey serve for de Supreme Court of Appeal insyd, as well as de court ein first woman deputy president den first woman president.
Dem unsuccessfully nominate Maya for elevation go de Constitutional Court for 2009 den 2012 insyd, wey President Cyril Ramaphosa controversially decline say she go confirm ein nomination as Chief Justice of South Africa for March 2022 insyd. For September 2022 insyd, however, Ramaphosa appoint am as de first woman Deputy Chief Justice, wey for dat capacity insyd she dey deputise Raymond Zondo. Na she be de president give de South African chapter of de International Association of Women Judges from 2018 go 2023, wey dem appoint as de Chancellor give de University of Mpumalanga for 1 July 2021 insyd.
== Ein Early life den education ==
Dem born Maya for 20 March 1964 for St Cuthbert's, sam rural area of Tsolo wey dey de Transkei region of de Eastern Cape.<ref name=":0">[https://www.concourt.org.za/index.php/judges/acting-judges/12-acting-judges/197-justice-maya-mandisa-muriel-lindelwa "Justice Maya Mandisa Muriel Lindelwa"]. ''Constitutional Court of South Africa''. Retrieved 29 December 2019.</ref> Na she be de eldest of six kiddies born to Sandile den Nombulelo Maya, wey na dem both be teachers.<ref name=":1">Tolsi, Niren (9 April 2017). [https://www.news24.com/news24/newsmaker-mandisa-maya-making-history-20170409-2 "Newsmaker: Mandisa Maya making history"]. ''News24''. Retrieved 21 January 2024.</ref> Na ein home language be Xhosa.<ref>Thamm, Marianne (20 June 2022). [https://www.dailymaverick.co.za/article/2022-06-20-judge-mandisa-mayas-support-of-afrikaans-in-her-mother-tongue-isixhosa-a-pioneering-moment/ "Speaking clearly in tongues: Judge Mandisa Maya's support of Afrikaans in her mother tongue, isiXhosa, a pioneering moment"]. ''Daily Maverick''. Retrieved 21 January 2024.</ref>
Ein family move go King William's Town for 1966 insyd after ein father get some job plus Radio Bantu, wey she attend school for der till 1977, when, secof de disruptive effects of de Soweto uprising, dem send am go attend school for Mthatha insyd.<ref>[https://www.businesslive.co.za/bd/national/2018-04-24-wild-coast-roots-sustain-top-judge-mandisa-maya/ "Wild Coast roots sustain top judge Mandisa Maya"]. ''Business Day''. 24 April 2018. Retrieved 21 January 2024.</ref> She matriculate for 1981 insyd for St John's College, Mthatha.<ref name=":2">[https://gcbsa.co.za/law-journals/2001/april/2001-april-vol014-no1-pp21-22.pdf "New judges: Judge Mandisa Maya"] (PDF). ''Advocate''. '''14''' (1): 22. April 2001.</ref>
== Ein Legal education den career ==
As Maya enroll for University of Transkei insyd, she try say she go register for sam degree for medicine insyd but sam forensic medicine textbook put am off for de registration day.<ref name=":1" /> She study towards sam BProc instead, wey she graduate for 1986 insyd.<ref name=":0" /> Thereafter she attend de University of Natal, wey she plete plus LLB for 1988 insyd.<ref name=":0" /> Na she sana be clerk for Mthatha firm of Dazana Mafungo Inc. between 1987 den 1988, wey after graduation she work for de magistrate's court wey dey Mthatha insyd, wer na she be court interpreter den public prosecutor.<ref name=":0" /><ref name=":1" />
== Transkei Division: 2000–2006 ==
For 1 May 2000 insyd, Maya join de bench permanently as judge give de Transkei Division.<ref name=":2" /> She sana serve as acting judge for de Labour Court, de Bhisho High Court (Ciskei Division), den Grahamstown den Port Elizabeth High Courts (Eastern Cape Division) insyd.<ref name=":0" /> For February 2005 insyd, dem appoint am as acting judge for de Supreme Court of Appeal insyd, wey she remain for dat court wey dey Bloemfontein insyd for over one year, till dem elevate am permanently de year wey dey follow.<ref>Johannesburg Bar Council (13 June 2012). [https://www.politicsweb.co.za/politics/judge-mandisa-maya-the-joburg-bar-councils-assessm "Judge Mandisa Maya: The Joburg Bar Council's assessment"]. ''PoliticsWeb''. Retrieved 21 January 2024.</ref>
=== Ein Nominations go de Constitutional Court ===
For ein first decade tym for de Supreme Court of Appeal insyd, dem nominate Maya twice unsuccessfully for appointment as puisne judge give de Constitutional Court. Judicial Service Commission first interview am for September 2009 insyd as one of 24 candidates give four vacancies.<ref>[https://www.news24.com/news24/you-be-the-judge-20150429 "You be the judge"]. ''News24''. 1 September 2009. Retrieved 21 January 2024.</ref> Na she be one of de seven candidates wey de Judicial Service Commission shortlist after ein hearings,<ref>[https://www.news24.com/news24/jsc-names-concourt-shortlist-20090922 "JSC names ConCourt shortlist"]. ''News24''. 22 September 2009. Retrieved 21 January 2024.</ref> wey Pierre de Vos view am as strong candidate plus sam demonstrated "sensitivity for gender issues".<ref>de Vos, Pierre (23 September 2009). [http://constitutionallyspeaking.co.za/not-a-bad-list-all-things-considered/ "Not a bad list – all things considered"]. ''Constitutionally Speaking''. Retrieved 17 July 2015.</ref> However, Presido Jacob Zuma decline say he go appoint am, instead he confirm de appointments of Johan Froneman, Chris Jafta, Sisi Khampepe den Mogoeng Mogoeng.<ref>Grootes, Stephen (2009). [http://ewn.co.za/2009/10/12/Zuma-gets-3-out-of-4-right-with-Con-Court-appointments "Zuma gets 3 out of 4 right with Con Court appointments"]. ''EWN''. Retrieved 17 July 2015.</ref>
=== Deputy Presidency ===
For June 2015 insyd, na Maya be President Zuma ein sole nominee for appointment as Deputy President give de Supreme Court of Appeal, sam position wey Kenneth Mthiyane lef for der secof ein retirement for 2014 insyd.<ref>Wakefield, Adam (10 June 2015). [https://www.news24.com/news24/judge-candidates-announced-and-theyre-all-women-20150610 "Judge candidates announced – and they're all women"]. ''News24''. Retrieved 21 January 2024.</ref> Following sam interview for Johannesburg for July insyd, de Judicial Service Commission recommend am as suitable for appointment.<ref>Evans, Jenni (9 July 2015). [https://www.news24.com/news24/zuma-has-his-hands-full-with-4-concourt-candidates-judicial-row-20150709 "Zuma has his hands full with 4 ConCourt candidates, judicial row"]. ''News24''. Retrieved 21 January 2024.</ref> Zuma confirm ein appointment for 23 September 2015 insyd, wey she cam turn de first woman wey serve as de court ein Deputy President.<ref>[https://www.iol.co.za/news/politics/sca-gets-first-female-deputy-president-1920474 "SCA gets first female deputy president"]. ''IOL''. 23 September 2015. Retrieved 21 January 2024.</ref> As de Supreme Court President Lex Mpati retire de year wey dey follow, she stand insyd as acting President.<ref name=":0" />
=== Presidency ===
[[File:Supreme Court of Appeal, Bloemfontein, South Africa.jpg|link=https://en.wikipedia.org/wiki/File:Supreme Court of Appeal, Bloemfontein, South Africa.jpg|thumb|De façade of de [[:en:Supreme_Court_of_Appeal_(South_Africa)|Supreme Court of Appeal]] courthouse wey dey [[:en:Bloemfontein|Bloemfontein]], wer Maya work for 12 years]]
Presido Zuma announce for March 2017 insyd say Maya be ein sole nominee wey go succeed Mpati as Supreme Court President.<ref>Evans, Jenni (6 March 2017). [https://www.news24.com/news24/judge-maya-makes-sca-history-again-20170306 "Judge Maya makes SCA history... again"]. ''News24''. Retrieved 21 January 2024.</ref> Before den after ein confirmation interview plus de Judicial Service Commission for April 2017 insyd, na she be highly candid about wat she dey describe as de Supreme Court ein "challenges", wey she dey describe court as "not the most collegial of courts" den ein judges as afflicted plus "superiority complexes den disrespect".<ref>[https://mg.co.za/article/2017-04-07-00-race-tensions-on-the-sca-ripped-open/ "Race tensions on the SCA ripped open"]. ''The Mail & Guardian''. 7 April 2017. Retrieved 21 January 2024.</ref> De Judicial Service Commission endorse ein appointment, wey Zuma confirm plus immediate effect for 26 May 2017 insyd.<ref>[https://www.news24.com/news24/zuma-appoints-mandisa-maya-as-sca-president-20170526 "Zuma appoints Mandisa Maya as SCA president"]. ''News24''. 26 May 2017. Retrieved 21 January 2024.</ref><ref>[http://www.timeslive.co.za/local/2017/05/26/Judge-Mandisa-Maya-is-new-president-of-the-Supreme-Court-of-Appeal "Judge Mandisa Maya is new president of the Supreme Court of Appeal"]. ''The Times''. 26 May 2017. Retrieved 26 May 2017.</ref>
=== Nomination as Chief Justice ===
For October 2021 insyd, Presido Cyril Ramaphosa announce say Maya be part of longlist of eight candidates wey go succeed Mogoeng Mogoeng as Chief Justice of South Africa,<ref>[https://www.news24.com/news24/newsletters/icymi/featured/8-candidates-nominated-for-chief-justice-post-including-zondo-maya-and-mlambo-20211004 "8 candidates nominated for chief justice post, including Zondo, Maya and Mlambo"]. ''News24''. 4 October 2021. Retrieved 21 January 2024.</ref><ref>[https://mg.co.za/news/2021-10-29-and-then-there-were-six-ramaphosa-fails-to-release-shortlist-for-chief-justice/ "And then there were six: Ramaphosa fails to release shortlist for chief justice"]. ''The Mail & Guardian''. 29 October 2021. Retrieved 21 January 2024.</ref> wey de month wey dey follow, he announce say he shortlist Maya den three others: Raymond Zondo, Mbuyiseli Madlanga, den Dunstan Mlambo.<ref>[https://mg.co.za/news/2021-11-18-zondo-maya-mlambo-and-madlanga-shortlisted-for-chief-justice/ "Zondo, Maya, Mlambo and Madlanga shortlisted for chief justice"]. ''The Mail & Guardian''. 18 November 2021. Retrieved 21 January 2024.</ref> De Judicial Service Commission consider Maya ein candidacy for sam interview for 2 February 2022 insyd,<ref>[https://mg.co.za/news/2022-02-02-chief-justice-interviews-mandisa-maya/ "Chief justice interviews: Mandisa Maya"]. ''The Mail & Guardian''. 2 February 2022. Retrieved 21 January 2024.</ref> wey Maya open plus sam lengthy address about de failure of judicial leadership say she go address sexism for de judiciary insyd; among other things, she object give de absence of formal policies for sexual harassment den maternity top, wey she dey recall say, as she cam turn de first serving judge wey preg, de Department of Justice "simply no know wat dem go do plus me".<ref>Chabalala, Jeanette (2 February 2022). [https://www.news24.com/news24/southafrica/news/chief-justice-interviews-mandisa-maya-hits-out-at-judiciarys-lack-of-a-sexual-harassment-policy-20220202 "Chief Justice interviews: Mandisa Maya hits out at judiciary's lack of a sexual harassment policy"]. ''News24''. Retrieved 21 January 2024.</ref> Dem bizz am about ein own gender, wey she cry as commissioner Sylvia Lucas congratulate am for "breaking the glass ceiling".<ref>Macupe, Bongekile (2 February 2022). [https://www.news24.com/citypress/news/chief-justice-interviews-there-has-never-been-a-shortage-of-women-judges-to-lead-maya-20220202 "Chief Justice interviews: 'There has never been a shortage of women judges to lead' – Maya"]. ''City Press''. Retrieved 21 January 2024.</ref>
== Constitutional Court: 2022–present ==
For May 2022 insyd, Maya accept Ramaphosa ein nomination give de position of Deputy Chief Justice.<ref>[https://mg.co.za/news/2022-05-04-ramaphosa-nominates-maya-as-deputy-chief-justice/ "Ramaphosa nominates Maya as deputy chief justice"]. ''The Mail & Guardian''. 4 May 2022. Retrieved 21 January 2024.</ref> After dem interview am for June 2022 insyd, de Judicial Service Commission endorse de nomination,<ref>Macupe, Bongekile (20 June 2022). [https://www.news24.com/citypress/news/mandisa-maya-endorse-me-for-deputy-chief-justice-job-to-push-women-up-in-the-judiciary-ladder-20220620 "Mandisa Maya: 'Endorse me for Deputy Chief Justice job to push women up in the judiciary ladder'"]. ''City Press''. Retrieved 21 January 2024.</ref><ref>Mafolo, Karabo (20 June 2022). [https://www.dailymaverick.co.za/article/2022-06-20-mandisa-maya-set-to-become-sas-first-female-deputy-chief-justice/ "Mandisa Maya set to become South Africa's first female Deputy Chief Justice"]. ''Daily Maverick''. Retrieved 21 January 2024.</ref> wey Ramaphosa announce for 25 July say dem go appoint give de position plus effect from 1 September 2022.<ref>Chabalala, Jeanette (25 July 2022). [https://www.news24.com/news24/southafrica/news/its-official-justice-mandisa-maya-appointed-deputy-chief-justice-20220725 "It's official: Justice Mandisa Maya appointed deputy chief justice"]. ''News24''. Retrieved 21 January 2024.</ref><ref>[https://mg.co.za/news/2022-07-25-ramaphosa-appoints-mandisa-maya-as-deputy-chief-justice/ "Ramaphosa appoints Mandisa Maya as deputy chief justice"]. ''The Mail & Guardian''. 25 July 2022. Retrieved 21 January 2024.</ref>
For February 2023 insyd, Zondo announce say dem appoint Maya say make she chair sam new committee wey dem task plus drafting sam sexual harassment policy give de judiciary,<ref>[https://mg.co.za/news/2023-02-24-work-to-be-done-maya-heading-committee-drawing-up-anti-sexual-harassment-policy/ "Work to be done: Maya heading committee drawing up anti-sexual harassment policy"]. ''The Mail & Guardian''. 24 February 2023. Retrieved 21 January 2024.</ref> wey for June 2023 insyd, she hand down judgment for sam unanimous court ein behalf for ''Ashebo v Minister of Home Affairs den Others'', wey block de deportation of sam asylum seeker.<ref>Hawker, Dianne (28 December 2023). [https://www.dailymaverick.co.za/article/2023-12-28-the-constitutional-court-had-a-busy-year-some-significant-rulings/ "From refugee rights to tax record transparency, the Constitutional Court had a busy year — here are some significant judgments"]. ''Daily Maverick''. Retrieved 21 January 2024.</ref>
== International Association of Women Judges ==
Na Maya be founding member of de South African chapter of de International Association of Women Judges (IAWJ) for 2002 insyd. She serve as de chapter ein deputy president from 2008 go 2010 den as ein presido from 2018 go 2023.<ref name=":0" /> Dem later elect am as IAWJ ein regional director give [[West Africa|West]] den Southern Africa for 2021 insyd,<ref>[https://www.derebus.org.za/justice-maya-elected-regional-director-for-west-and-southern-africa-of-the-international-association-of-women-judges/ "Justice Maya elected Regional Director for West and Southern Africa of the International Association of Women Judges"]. ''De Rebus''. 9 June 2021. Retrieved 21 January 2024.</ref> den as ein vice pee for 2023 insyd.<ref name=":0" />
== Ein Honours ==
Nelson Mandela University award Maya plus honorary LLDs for 2018 insyd, Walter Sisulu University for 2019 insyd, den de University of Fort Hare for 2020 insyd.<ref name=":0" /> For July 2021 insyd, dem appoint am as de Chancellor give de University of Mpumalanga.<ref>[https://mg.co.za/special-reports/2021-07-26-justice-mandisa-maya-is-the-new-chancellor-of-ump/ "Justice Mandisa Maya is the new Chancellor of UMP"]. ''The Mail & Guardian''. 26 July 2021. Retrieved 21 January 2024.</ref>
== Ein life matter ==
Maya marry Dabulamanzi Mlokoti, sam businessman wey dey komot from Johannesburg,<ref name=":0" /> wey she get three kiddies.<ref name=":0" /> Ein daughter, Wela Mlokoti, na she be clerk for de Constitutional Court top for Chris Jafta ein chambers wey she rise go public prominence wey dey lodge sam disciplinary complaint against Judge Fayeeza Kathree-Setiloane, wey na she dey act for de Constitutional Court insyd for dat tym.<ref>Rabkin, Franny (5 April 2019). [https://mg.co.za/article/2019-04-05-00-constitutional-court-interviews-turn-he-said-she-said/ "Constitutional Court interviews turn he-said-she-said"]. ''The Mail & Guardian''. Retrieved 16 November 2023.</ref><ref>[https://www.timeslive.co.za/sunday-times-daily/news/2022-07-15-high-court-judge-should-apologise-to-clerk-for-wrongly-implying-mistake/ "High court judge should apologise to clerk for wrongly implying mistake"]. ''Sunday Times''. 15 July 2022. Retrieved 21 January 2024.</ref>
== References ==
<references />
[[Category:Human]]
[[Category:1964 births]]
[[Category:20th-century South African lawyers]]
[[Category:20th-century South African women lawyers]]
[[Category:21st-century South African judges]]
[[Category:21st-century women judges]]
[[Category:Constitutional court women judges]]
[[Category:Judges of de Constitutional Court of South Africa]]
[[Category:Judges of de Supreme Court of Appeal (South Africa)]]
[[Category:Judges of de Eastern Cape High Court]]
[[Category:Fulbright alumni]]
[[Category:University of Natal alumni]]
[[Category:Walter Sisulu University alumni]]
[[Category:Duke University School of Law alumni]]
[[Category:Xhosa people]]
[[Category:Chancellors of de University of Mpumalanga]]
rz4880ro65g3wwl9loqrka5i2uhxxl8
Aaron Rodgers
0
29915
111286
111254
2026-08-29T18:32:03Z
DaSupremo
9
Created by translating the section "Media appearances" from the page "[[:en:Special:Redirect/revision/1369618906|Aaron Rodgers]]"
111286
wikitext
text/x-wiki
'''Aaron Charles Rodgers''' (born December 2, 1983) be an American professional [[American football|football]] quarterback give de Pittsburgh Steelers of de National Football League (NFL). He play college football give de California Golden Bears, setting de school ein record for lowest single-season den career interception rates before he be selected by de Green Bay Packers insyd de first round of de 2005 NFL draft.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{cite web |date=April 23, 2005 |title=Aaron Rodgers Selected by Green Bay |url=https://calbears.com/sports/2005/4/23/207736054 |access-date=September 25, 2025 |website=California Golden Bears Athletics}}</ref> He be regarded as one of de greatest den most talented quarterbacks of all time.<ref name="GOAT"></ref>
After backing up [[Brett Favre]] for de first three years of ein NFL career, Rodgers cam be de Packers dema starting quarterback insyd 2008. Insyd de 2010 season, he lead dem to a victory insyd Super Bowl XLV, earning de Super Bowl MVP. Na dem name am Associated Press Athlete of de Year insyd 2011,<ref name="Male Athlete of the year">{{Cite news|date=December 21, 2011|title=Rodgers named Male Athlete of the Year|work=[[Fox Sports]]|agency=[[Associated Press]]|url=http://msn.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|url-status=dead|access-date=May 13, 2011|archive-url=https://web.archive.org/web/20190718082529/https://www.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|archive-date=July 18, 2019}}</ref> wey na dem vote am league MVP by de Associated Press for de 2011, 2014, 2020, den 2021 NFL seasons. Rodgers be de fifth player to win NFL MVP insyd consecutive seasons, joining [[Peyton Manning]], Favre, [[Joe Montana]] den [[Jim Brown]]. Rodgers lead de NFL six times insyd touchdown-to-interception ratio (2011, 2012, 2014, 2018, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Leaders – Passing Touchdown/Interception Ratio |url=https://www.footballdb.com/leaders/yearly-passing-tdintratio |url-status=live |archive-url=https://web.archive.org/web/20190407190912/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=April 7, 2019 |access-date=April 7, 2019 |website=FootballDB.com}}</ref> six times insyd lowest passing interception percentage (2009, 2014, 2018, 2019, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passing Interception Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-intpct |url-status=live |archive-url=https://web.archive.org/web/20200724202503/https://www.footballdb.com/leaders/yearly-passing-intpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> four times insyd passer rating (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passer Rating Leaders |url=https://www.footballdb.com/leaders/yearly-passing-rating |url-status=live |archive-url=https://web.archive.org/web/20200724211550/https://www.footballdb.com/leaders/yearly-passing-rating |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den four times insyd touchdown passing percentage (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Touchdown Pass Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-tdpct |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.footballdb.com/leaders/yearly-passing-tdpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> three times insyd total touchdowns (2011, 2016, 2020); twice insyd touchdown passes (2016, 2020)<ref>{{Cite web |title=NFL Yearly Touchdown Passes Leaders |url=https://www.footballdb.com/leaders/yearly-passing-touchdowns |url-status=live |archive-url=https://web.archive.org/web/20200724202559/https://www.footballdb.com/leaders/yearly-passing-touchdowns |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den once insyd yards per attempt (2011) den completion percentage (2020).<ref>{{Cite web |title=NFL Yearly Passing Yards per Attempt Leaders |url=https://www.footballdb.com/leaders/yearly-passing-ydsattempt |url-status=live |archive-url=https://web.archive.org/web/20200724202800/https://www.footballdb.com/leaders/yearly-passing-ydsattempt |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> Insyd 2023, na dem trade Rodgers to de New York Jets, wer he spend two seasons plus de team. Released by de Jets after de 2024 season, Rodgers sign plus de Steelers, whom he lead to a division title dat season.
Ranking first on de NFL ein all-time regular-season career passer rating list,<ref>{{Cite web |last=Brizuela |first=James |date=September 16, 2025 |title=Ravens' Lamar Jackson Has Surpassed Aaron Rodgers in Major NFL Career Stat |url=https://www.newsweek.com/sports/nfl/ravens-lamar-jackson-has-surpassed-aaron-rodgers-major-nfl-career-stat-2130770 |access-date=September 16, 2025 |website=[[Newsweek]]}}</ref> Rodgers be among de most efficient quarterbacks of all time. Apart from a regular-season career passer rating of over 100 (de first to ever have a career rating over 100), he sanso dey hold de best touchdown-to-interception ratio den de lowest passing interception percentage insyd NFL history while he sanso get de highest passer rating insyd NFL history thru out de entire 2010s decade. Insyd de postseason, he be second in both touchdown passes den touchdown-to-interception ratio, fourth insyd passing yards, den eighth insyd all-time passer rating. Insyd de regular season, he get de best touchdown-to-interception ratio insyd NFL history at 4.34,<ref name="Football DB">{{Cite web |title=NFL Career Leaders – Passing Touchdown/Interception Ratio |url=http://www.footballdb.com/leaders/career-passing-tdintratio |archive-url=https://web.archive.org/web/20200508102359/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=May 8, 2020 |access-date=November 3, 2014 |website=FootballDB.com}}</ref> he dey hold de league ein second lowest career interception percentage at 1.4 percent<ref name="a">{{Cite web |title=NFL Career Pass Interception % Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |url-status=live |archive-url=https://web.archive.org/web/20110815065956/http://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |archive-date=August 15, 2011 |access-date=September 24, 2015 |work=[[Pro Football Reference]]}}</ref> den de highest single-season passer rating record of 122.5.<ref>{{Cite web |last=Mayer |first=Larry |date=September 12, 2012 |title=Bears gearing up to battle Rodgers |url=http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |url-status=dead |archive-url=https://web.archive.org/web/20150925095614/http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |archive-date=September 25, 2015 |access-date=September 24, 2015 |publisher=[[Chicago Bears]]}}</ref> Rodgers sanso be a four-time winner of de Best NFL Player ESPY Award.
== Early life ==
Ba dem born Aaron Charles Rodgers on December 2, 1983, insyd Chico, California,<ref>{{Cite magazine|title=Aaron Rodgers – No. 12 – QB|url=http://sportsillustrated.cnn.com/football/nfl/players/7200|url-status=dead|archive-url=https://web.archive.org/web/20110719095151/http://sportsillustrated.cnn.com/football/nfl/players/7200/|archive-date=July 19, 2011|access-date=February 6, 2011|magazine=[[Sports Illustrated]]}}</ref> de son of Darla Leigh (née Pittman) den Edward Wesley Rodgers. Na ein poppie be a Texas-born chiropractor wey play football as an offensive lineman give de Chico State Wildcats from 1973 to 1976.<ref name="about1">{{Cite web |last=Powell |first=Kimberly |date=October 15, 2018 |title=Ancestry of Aaron Rodgers |url=https://www.thoughtco.com/family-tree-of-aaron-rodgers-1421929 |url-status=live |archive-url=https://web.archive.org/web/20111211212214/http://genealogy.about.com/od/famous_family_trees/ss/aaron-rodgers.htm |archive-date=December 11, 2011 |access-date=May 10, 2012 |website=ThoughtCo.com}}</ref><ref name="Jackel2005">{{Cite web |last=Jackel |first=Pete |date=October 6, 2005 |title=Focus on Football: Rodgers preparing for his moment |url=http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |url-status=live |archive-url=https://web.archive.org/web/20110127115346/http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |archive-date=January 27, 2011 |access-date=March 14, 2012 |website=RacineSportsZone.com |publisher=JournalTimes.com}}</ref> Rodgers be of English, Irish den German ancestry.<ref name="about1" /> De family move go Ukiah, California, wer he attend Oak Manor Elementary School.<ref name="FreeThrows">{{Cite news|date=January 3, 1993|title='Free throws' are his forte|url=https://newspaperarchive.com/ukiah-daily-journal/1993-01-03/|url-status=live|archive-url=https://web.archive.org/web/20211201192340/https://newspaperarchive.com/browse/us/ca/ukiah/ukiah-daily-journal/|archive-date=December 1, 2021|access-date=March 14, 2012|work=Ukiah Daily Journal|via=Newspaper Archive|page=1}}</ref> Edward Rodgers toss a football plus ein sons Luke, Aaron den [[Jordan Rodgers]], wey he flow dem make dem no told drink den no party insyd college anaa dem go limit demaselves insyd sports like he do. Aaron take dis advice to heart.<ref name="Jackel2005" /> At de age of ten, he be featured on de front page of de ''Ukiah Daily Journal'' for ein top performance at a local basketball free throw competition.<ref name="FreeThrows" />
Later, de family move go Beaverton, Oregon, wer Rodgers attend Vose Elementary School den Whitford Middle School, wey he play baseball insyd de Raleigh Hills Little League at shortstop, center field den pitcher.<ref name="Oregonian">{{Cite web |date=February 5, 2011 |title=Green Bay quarterback Aaron Rodgers has strong ties to Beaverton |url=http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |url-status=live |archive-url=https://web.archive.org/web/20110216014347/http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |archive-date=February 16, 2011 |access-date=February 5, 2011 |work=[[The Oregonian]]}}</ref>
De Rodgers family return to Chico insyd 1997, wey Aaron attend Pleasant Valley High School, starting for two years at quarterback den garnering 4,421 passing yards.<ref>{{Cite web |last=Davidson |first=Joe |date=September 5, 2019 |title=Green Bay Packers quarterback Aaron Rodgers donates 354 new helmets to California high schools |url=https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |url-status=live |archive-url=https://web.archive.org/web/20190925105424/https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |archive-date=September 25, 2019 |access-date=September 13, 2019 |work=[[Honolulu Star-Advertiser]]}}</ref> He set single-game records of six touchdowns den 440 all-purpose yards. Rodgers set a single-season school record plus 2,466 total yards insyd 2001.<ref>{{Cite web |last=Carlton |first=Jimmy |date=April 26, 2018 |title=Of brains, Butte and baseball: How a tiny teenager became #Packers MVP Aaron Rodgers |url=https://onmilwaukee.com/articles/packersaaronrodgersjourney |access-date=May 30, 2024 |website=OnMilwaukee}}</ref> He graduate from Pleasant Valley High School insyd spring 2002, after scoring 1310 insyd de SAT den plus an A− average.<ref>{{Cite web |title=#12 Aaron Rodgers |url=http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |url-status=live |archive-url=https://web.archive.org/web/20110716022313/http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |archive-date=July 16, 2011 |access-date=February 6, 2011 |website=Packer Report |publisher=Scout with FoxSports.com}}</ref><ref>{{Cite news|date=November 20, 2002|title=JC Quarterback Commits to Cal, Butte's Rodgers Could Join the Competition to Replace Boller Next Year|url=http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|url-status=live|archive-url=https://web.archive.org/web/20181113165752/http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|archive-date=November 13, 2018|access-date=May 11, 2012|work=Contra Costa Times|location=Walnut Creek, California|via=NewsBank|quote=[He] scored 1310 on the SAT, so Cal's academic reputation was important to him.}}</ref><ref>{{Cite news|last=Crouse|first=Karen|date=January 31, 2011|title=Packers' Rodgers Has Deep Roots in Chico|url=https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|url-status=live|archive-url=https://web.archive.org/web/20190426170034/https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|archive-date=April 26, 2019|access-date=December 5, 2019|work=[[The New York Times]]|page=D1|quote=Despite his athletic prowess, an A-minus average and an SAT score of 1310, Rodgers did not receive an NCAA Division I scholarship offer coming out of high school.}}</ref>
== College career ==
Despite ein impressive high school record, Rodgers attract little interest from Division I programs.<ref>{{Cite web |last=Kalland |first=Robby |date=September 3, 2015 |title=How Aaron Rodgers went from not being recruited to a star at Cal |url=https://www.cbssports.com/college-football/news/how-aaron-rodgers-went-from-not-being-recruited-to-a-star-at-cal/ |access-date=May 30, 2024 |website=CBSSports.com}}</ref> Insyd a 2011 interview plus ''E:60'', he attribute de relative lack of attention insyd de recruiting process to ein unimposing physical stature as a high school player at {{convert|5|ft|10|in|m|abbr=on}} den {{convert|165|lb|kg}}. Na Rodgers want to attend Florida State den play under head coach [[Bobby Bowden]], buh na dem reject am.<ref name="E60 Youtube">{{Cite web |date=October 27, 2011 |title=E:60 – Aaron Rodgers |url=https://www.youtube.com/watch?v=blrmdIfXPwI |url-status=live |archive-url=https://web.archive.org/web/20120302212553/https://www.youtube.com/watch?v=blrmdIfXPwI |archive-date=March 2, 2012 |access-date=May 13, 2012 |publisher=ESPN |via=YouTube}}</ref> Na he only be offered an opportunity to compete for a scholarship as a walk-on from University of Illinois.<ref>{{Cite news|last=McGrath|first=Jim|date=June 29, 2011|title=Green Bay QB Rodgers Visits All-Pro Campers at W&M|work=Williamsburg Yorktown Daily|url=http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|url-status=dead|access-date=August 22, 2013|archive-url=https://web.archive.org/web/20130921054645/http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|archive-date=September 21, 2013}}</ref> He decline de invitation, wey na he consider quitting football to play baseball instead anaa giving up entirely on de idea of playing insyd professional sports den attending law school after completing ein undergraduate degree.<ref name="Babb">{{Cite news|last=Babb|first=Kent|date=December 15, 2015|title=For Aaron Rodgers, road to the NFL started at an apparent dead end|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|url-status=live|access-date=November 30, 2018|archive-url=https://web.archive.org/web/20181130205037/https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|archive-date=November 30, 2018}}</ref>
He then be recruited to play football at Butte College insyd Oroville, a junior college about {{convert|15|mi|km}} southeast of Chico.<ref>{{Cite book |last=Sandler |first=Michael |url=https://archive.org/details/aaronrodgersgree0000sand |title=Aaron Rodgers and the Green Bay Packers: Super Bowl XLV |date=August 1, 2011 |publisher=Bearport Publishing |isbn=9781617723094 |url-access=registration}}</ref>
=== Butte ===
==== 2002 season ====
Rodgers throw 26 touchdowns insyd ein freshman season at Butte,<ref>{{Cite web |title=Aaron Rodgers |url=https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |url-status=live |archive-url=https://web.archive.org/web/20211028170413/https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |archive-date=October 28, 2021 |access-date=October 13, 2021 |website=California Community Colleges Chancellor's Office}}</ref><ref>{{Cite web |title=Stats & Records |url=http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-url=https://web.archive.org/web/20081202112615/http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-date=December 2, 2008 |access-date=November 18, 2011 |website=butte.edu |publisher=[[Butte College]]}}</ref> leading de school to a 10–1 record, de NorCal Conference championship,<ref>{{Cite web |date=November 8, 2008 |title=Title-tilt bound: Butte secures NorCal championship |url=https://www.chicoer.com/20081108/title-tilt-bound-butte-secures-norcal-championship/ |access-date=May 30, 2024 |work=Chico Enterprise-Record}}</ref> den a {{nowrap|No. 2}} national ranking. While der, na he be discovered by de California Golden Bears ein head coach [[Jeff Tedford]], wey na he dey recruite Butte tight end Garrett Cross.<ref>{{Cite web |last=McGrath |first=Dan |date=November 11, 2004 |title=Cal QB Rodgers has the pedigree |url=https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-url=https://web.archive.org/web/20191205183533/https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-date=December 5, 2019 |access-date=September 13, 2019 |work=Chicago Tribune}}</ref> Na Tedford be surprised to learn say Rodgers no be recruited earlier. Secof Rodgers ein good high school scholastic record, he be eligible to transfer to de University of California, Berkeley after one year of junior college instead of de typical two.<ref name="Cal">{{Cite news|last=Adams|first=Bruce|date=August 3, 2003|title=Cal's QB hope: JC transfer Rodgers has what Tedford likes|work=San Francisco Chronicle|url=https://www.sfchronicle.com/sports/article/Cal-s-QB-hope-JC-transfer-Rodgers-has-what-2598626.php|url-status=live|access-date=22 February 2026}}</ref>
=== California ===
==== 2003 season ====
As a junior college transfer, Rodgers get three years of eligibility at Cal. Na dem name am de starting quarterback insyd de fifth game of de 2003 season, beating de only team wey offer am a {{nowrap|Division I}} opportunity out of high school, Illinois.<ref>{{Cite web |date=October 14, 2014 |title=Aaron Rodgers: I wanted to join Illini; they passed |url=https://www.chicagotribune.com/2014/10/14/aaron-rodgers-i-wanted-to-join-illini-they-passed/ |access-date=May 30, 2024 |work=Chicago Tribune}}</ref> As a sophomore, he help lead de Golden Bears to a 7–3 record as a starter.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{Cite web |last=King |first=Randy |date=December 26, 2003 |title=Virginia Tech finishes on wrong foot with Insight Bowl loss to Cal |url=https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |url-status=live |archive-url=https://web.archive.org/web/20191208021513/https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |work=The Roanoke Times}}</ref>
Insyd ein second career start, Rodgers lead de team to a 21–7 halftime lead against #3 USC. Secof injury, na dem replace Rodgers insyd de second half by Reggie Robertson.<ref name="calfans" /><ref>{{Cite web |date=September 27, 2003 |title=Cal-USC Postgame Quotes |url=http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121444/http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |archive-date=June 9, 2012 |website=California Golden Bears |quote=After the interception for the touchdown, I went over to him and said 'Do you want to take a couple of series off?' and he said 'Yes.' We put Reggie (Robertson) in and Reggie did a nice job for us."}}</ref> De Bears win insyd triple overtime, 34–31.<ref name="calfans">{{Cite web |date=September 27, 2003 |title=Cal fans storm field after win |url=http://espn.go.com/ncf/recap?gameId=232700025 |url-status=dead |archive-url=https://web.archive.org/web/20161119182933/https://www.espn.com/college-football/recap?gameId=232700025 |archive-date=November 19, 2016 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |last=Faraudo |first=Jeff |date=September 29, 2009 |title=Cal's triple-overtime thriller against USC in 2003 produced multiple heroes |url=https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |url-status=live |archive-url=https://web.archive.org/web/20191208021406/https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=East Bay Times}}</ref> Rodgers pass for 394 yards wey na dem name am game MVP insyd de Insight Bowl against Virginia Tech.<ref>{{Cite web |title=Insight Bowl – Virginia Tech vs California Box Score, December 26, 2003 |url=https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |url-status=live |archive-url=https://web.archive.org/web/20180312084010/https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |work=[[Sports Reference]]}}</ref><ref>{{Cite book |last=Tsuchiya |first=Anita |url=https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |title=Aaron Rodgers: Biography of a Super Bowl MVP |date=July 30, 2012 |publisher=Hyperink Inc |isbn=9781614646129 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203201742/https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |archive-date=February 3, 2021 |url-status=live}}</ref>
Insyd 2003, Rodgers tie de school season record for 300-yard games plus five wey he set a school record for de lowest percentage of passes dem intercept at 1.43%.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref>
==== 2004 season ====
As a junior, Rodgers lead Cal to a 10–1 record den top-five ranking at de end of de regular season, plus dema only loss a 23–17 loss at {{nowrap|No. 1}} USC.<ref>{{Cite web |title=2004 California Golden Bears Schedule and Results |url=https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |url-status=live |archive-url=https://web.archive.org/web/20180312085053/https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref> Insyd dat game, Rodgers set a school record for consecutive passes dem plete plus 26 wey he tie an NCAA record plus 23 consecutive passes dem plete insyd one game.<ref>{{Cite web |last=Lee |first=Ted |date=October 10, 2004 |title=It was there for the taking |url=https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-url=https://web.archive.org/web/20191205183922/https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-date=December 5, 2019 |access-date=September 13, 2019 |website=BearTerritory.net}}</ref> Na he set a Cal single-game record for passing completion percentage of 85.3.<ref>{{Cite web |last=Lowry |first=Matthew |date=November 15, 2019 |title=Trojans Throwback: 2004 USC vs California |url=https://www.conquestchronicles.com/football/2019/11/15/20966700/trojans-throwback-2004-usc-vs-california |access-date=May 30, 2024 |work=Conquest Chronicles}}</ref><ref>{{Cite web |last=Wharton |first=David |date=October 10, 2004 |title=Rodgers Can't See It Through to Completion |url=https://www.latimes.com/archives/la-xpm-2004-oct-10-sp-uscside10-story.html |access-date=May 30, 2024 |work=Los Angeles Times}}</ref> Rodgers dey hold de Cal career record for lowest percentage of passes dem intercept at 1.95 percent.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref> Rodgers ein performance set up de Golden Bears at first den goal plus 1:47 remaining den a chance for de game-winning touchdown. On de first play of USC ein goal line stand, Rodgers throw an incomplete pass. Na dis be followed by a second-down sack by [[Manuel Wright]].<ref name="Cal Vs USC 2004" /> After a timeout den Rodgers ein incomplete pass on third down, USC stop Cal ein run play to win de game.<ref name="Cal Vs USC 2004" /> Rodgers comment say na e be "frustrating dat we no fi get de job done."<ref name="Cal Vs USC 2004">{{Cite web |date=October 9, 2004 |title=Trojans' defense stymies Cal QB at first-and-goal |url=http://scores.espn.go.com/ncf/recap?gameId=242830030 |url-status=dead |archive-url=https://web.archive.org/web/20170817065913/http://scores.espn.com/ncf/recap?gameId=242830030 |archive-date=August 17, 2017 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Overall, he fini de 2004 season plus 2,566 passing yards, 24 touchdowns, den eight interceptions. Ein 66.1% pass completion percentage lead de Pac-10.<ref>{{Cite web |title=Aaron Rodgers 2004 Game Log |url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |url-status=live |archive-url=https://web.archive.org/web/20180312084136/https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref><ref>{{Cite web |title=2004 Pacific-10 Conference Leaders |url=https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |url-status=live |archive-url=https://web.archive.org/web/20180328231847/https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Sports Reference]]}}</ref> He fini ninth insyd Heisman Trophy voting.<ref>{{Cite web |title=2004 Heisman Trophy Voting |url=https://www.sports-reference.com/cfb/awards/heisman-2004.html |access-date=December 2, 2022 |website=[[Sports Reference]] |language=en}}</ref>
After na dem pick Texas over Cal for a Rose Bowl berth, na dem award de fourth-ranked Bears a spot insyd de Holiday Bowl, wich dem loose to Texas Tech, 45–31.<ref>{{Cite web |date=December 15, 2017 |title=2004 Holiday Bowl: Cal caught in Texas Tech's Air Raid |url=https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208021644/https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> After de season, Rodgers decide to forgo ein senior season to enter de 2005 NFL draft.<ref>{{Cite web |date=January 6, 2005 |title=Who to watch in 2005 |url=http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |url-status=live |archive-url=https://web.archive.org/web/20190426144539/http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |archive-date=April 26, 2019 |access-date=February 15, 2012 |website=Chico News & Review}}</ref>
== Professional career ==
=== 2005 NFL draft ===
Na Rodgers be expected to be selected early insyd de 2005 NFL draft as he post impressive numbers as a junior plus Cal, throwing for 2,320 yards plus a 67.5 completion rate insyd de regular season. He throw for 24 touchdowns den only eight interceptions insyd ein last college season, impressing chaw NFL scouts. Na dem comment say na he be a "talented strong-armed junior"<ref name="Draft Insider">{{Cite web |title=NFL Draft – QB Aaron Rodgers |url=http://www.draftinsiders.com/node/1288 |url-status=dead |archive-url=https://web.archive.org/web/20120111054622/http://www.draftinsiders.com/node/1288 |archive-date=January 11, 2012 |access-date=December 9, 2011 |website=DraftInsiders.com}}</ref> wey dey "combine arm strength, mechanics den delivery to make all de throws", buh dem note say ein stats fi be inflated secof playing insyd a quarterback-friendly system den dat he go need to adjust to de more elaborate defensive schemes of de NFL.<ref name="Draft Insider" />
Before de draft, na Rodgers be confident say he go be drafted to de San Francisco 49ers, de team he support den grow up near,<ref name="Bensiger">{{Cite AV media |url=https://www.youtube.com/watch?v=8_a6O3vdlU0 |title=In Depth with Graham Bensinger: Aaron Rodgers: Thought I'd be a 49er |date=December 21, 2016 |last=Bensinger |first=Graham |type=Television production, YouTube video |access-date=December 26, 2016 |archive-url=https://ghostarchive.org/varchive/youtube/20211212/8_a6O3vdlU0 |archive-date=December 12, 2021 |url-status=live |orig-year=2010}}</ref> wey possess de No. 1 overall pick insyd de draft.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> De 49ers, however, draft quarterback [[Alex Smith]] out of Utah instead, wey Rodgers slid all de way down to de 24th overall pick by de Green Bay Packers. Na Rodgers say he experience much angst den restlessness wen waiting to be selected several hours into de draft, as na he expect einself to be selected much sooner.<ref name="Bensiger" /> Rodgers ein slip to de 24th selection den de Packers choosing to pick [[Brett Favre]] ein future replacement cam be one of de biggest stories of de draft, though na he still be de second quarterback dem select. Na ein drop insyd de draft later be ranked number one on de NFL Network ein Top 10 Draft Day Moments.<ref>{{Cite web |last=Currie |first=David |date=April 27, 2017 |title=NFL Draft: Top 10 Moments – Aaron Rodgers falling to Tim Tebow trade |url=https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |url-status=live |archive-url=https://web.archive.org/web/20200727131640/https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |archive-date=July 27, 2020 |access-date=September 13, 2019 |website=Sky Sports}}</ref> Chaw teams wey dey draft between de second den 23rd positions get positional needs more pressing dan quarterback.<ref name="ESPN Column">{{Cite web |last=Clayton |first=John |date=April 23, 2005 |title=Clayton: Waiting is the hardest part |url=https://www.espn.com/nfl/draft05/columns/story?columnist=clayton_john&id=2044646 |url-status=live |archive-url=https://web.archive.org/web/20160702194839/http://espn.go.com/nfl/draft05/columns/story?id=2044646&columnist=clayton_john |archive-date=July 2, 2016 |access-date=April 27, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |title=2005 NFL Draft Listing |url=https://www.pro-football-reference.com/years/2005/draft.htm |url-status=live |archive-url=https://web.archive.org/web/20170921001516/https://www.pro-football-reference.com/years/2005/draft.htm |archive-date=September 21, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers be one of six quarterbacks wey [[Jeff Tedford]] coach to be drafted insyd de first round of an NFL draft, joining [[Trent Dilfer]], [[Akili Smith]], [[David Carr (American football)|David Carr]], [[Joey Harrington]] den [[Kyle Boller]].<ref>{{Cite news|last=Greenberg|first=Steve|date=November 20, 2012|title=Jeff Tedford developed Aaron Rodgers, but recent QBs struggled|work=Sporting News|url=http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|url-status=live|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20161230042613/http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|archive-date=December 30, 2016}}</ref>
=== Green Bay Packers ===
==== Backup years: 2005–2007 ====
Insyd August 2005, Rodgers agree to a reported five-year, $7.7 million deal wey include $5.4 million in guaranteed money wey e get de potential to pay am as much as $24.5 million if na dem meet all incentives den escalators.<ref name="Sportrac Contract">{{Cite web |title=Aaron Rodgers Contract Breakdown |url=https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |url-status=live |archive-url=https://web.archive.org/web/20210506052810/https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |archive-date=May 6, 2021 |access-date=November 15, 2021 |website=Spotrac.com |language=en-US}}</ref>
Rodgers spend ein rookie season as de Packers dema backup quarterback behind Brett Favre.<ref>{{Cite web |title=2005 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2005.htm |url-status=live |archive-url=https://web.archive.org/web/20211107183417/https://www.pro-football-reference.com/teams/gnb/2005.htm |archive-date=November 7, 2021 |access-date=December 8, 2019 |website=[[Pro Football Reference]]}}</ref> Na de Packers be 4–12 at dis point wey he receive ein first extended look insyd de opening preseason game against de San Diego Chargers after replacing Favre.<ref name="Chargers Vs Packers 2005 Preseason">{{Cite web |date=August 11, 2005 |title=Favre completes nine of 10 passes for 91 yards, TD |url=http://scores.espn.go.com/nfl/recap?gameId=250811009 |archive-url=https://web.archive.org/web/20180127084112/https://www.espn.com/nfl/recap?gameId=250811009 |archive-date=January 27, 2018 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd ein first NFL game, Rodgers plete two out of seven passes wey na dem sack am twice. He continue to struggle thru de preseason, before ending de preseason by converting two third downs den throwing a touchdown pass to tight end [[Ben Steele]] against de Tennessee Titans.<ref name="GB Vs Tennesee">{{Cite web |date=September 1, 2005 |title=Green Bay 21, Tennessee 17 |url=http://scores.espn.go.com/nfl/recap?gameId=250901010 |url-status=dead |archive-url=https://web.archive.org/web/20131105175854/http://scores.espn.go.com/nfl/recap?gameId=250901010 |archive-date=November 5, 2013 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Once de regular season begin, Rodgers see very little action dat year. He play against de New Orleans Saints insyd de fourth quarter of a 52–3 victory, wey he plete ein first career pass to fullback [[Vonta Leach]] for 0 yards.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> On {{nowrap|December 19, 2005,}} Rodgers enter de game against de Baltimore Ravens at de end of de third quarter insyd a 48–3 loss.<ref name="Green Bay Bio" /> He plete eight of 15 passes for 65 yards den an interception.<ref name="Packers Vs. Ravens 2005">{{Cite web |date=December 20, 2005 |title=Boller outplays Favre in Ravens' rout of Packers |url=http://scores.espn.go.com/nfl/recap?gameId=251219033 |url-status=dead |archive-url=https://web.archive.org/web/20121023103816/http://scores.espn.go.com/nfl/recap?gameId=251219033 |archive-date=October 23, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref>
After de Packers dema losing season, na dem fire den replace head coach [[Mike Sherman]] by [[Mike McCarthy]].<ref name="Packers Fire Sherman">{{Cite news|date=January 2, 2006|title=Packers fire coach Mike Sherman|work=Yahoo! Sports|url=https://sports.yahoo.com/nfl/news?slug=packerssherman|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20140426105024/https://sports.yahoo.com/nfl/news?slug=packerssherman|archive-date=April 26, 2014}}</ref><ref name="Packers to hire 49ers">{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=January 12, 2006 |title=Packers to hire 49ers' McCarthy as coach |url=https://www.espn.com/nfl/news/story?id=2288985 |url-status=live |archive-url=https://web.archive.org/web/20121014050433/http://sports.espn.go.com/nfl/news/story?id=2288985 |archive-date=October 14, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]]}}</ref> Rodgers then be placed insyd McCarthy ein "Quarterback school" for six hours a day several times a week.<ref name="Journal Sentinel">{{Cite web |last=Silverstein |first=Tom |date=September 7, 2008 |title=The Education of Aaron Rodgers |url=http://www.jsonline.com/sports/packers/32579374.html |url-status=live |archive-url=https://web.archive.org/web/20101223123643/http://www.jsonline.com/sports/packers/32579374.html |archive-date=December 23, 2010 |access-date=May 11, 2012 |website=Milwaukee Journal Sentinel}}</ref> Dis focus on working on Rodgers ein motor skills such as hand-eye coordination, finger dexterity, den mechanics.<ref name="New York Times QB School">{{Cite news|last=Bishop|first=Greg|date=December 2, 2011|title=The Education of a Quarterback|work=The New York Times|url=https://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|url-status=live|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20120501123445/http://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|archive-date=May 1, 2012}}</ref> McCarthy sanso work on Rodgers ein release point, moving am from right beside de ear hole of ein helmet to further below am, to give am a smoother release.<ref name="Aaron Rodgers Leader of The Pack">{{Cite book |last=Reischel |first=Rob |title=Aaron Rodgers: Leader of the Pack: An Intimate Portrait of a Super Bowl MVP |date=March 1, 2011 |publisher=Triumph Books |isbn=978-1-60078-645-7 |language=English}}</ref> Wen de 2006 preseason begin, Rodgers play as de backup insyd all four games; he plete 22 out 38 passes for 323 yards den three touchdowns.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> Rodgers see very little action during de 2006 season, buh did step insyd briefly on {{nowrap|October 2}} against de Philadelphia Eagles wen Favre lef de game secof injury.<ref name="Green Bay Bio" /> On {{nowrap|November 19, 2006,}} Rodgers break ein left foot while playing against de New England Patriots insyd a 35–0 defeat at home, filling insyd for an injured Favre, wey Rodgers miss de remainder of de 2006 season.<ref name="Journal Sentinel" />
Following de team ein season-ending victory at Chicago, Favre announce say he go stay plus de Packers for de 2007 season, again postponing Rodgers ein hopes of becoming de Packers dema starting quarterback.<ref name="Favre">{{Cite web |last=Silverstein |first=Tom |date=January 7, 2007 |title=Favre leaves lasting impression |url=http://www.jsonline.com/news/milwaukee/29212859.html |url-status=dead |archive-url=https://web.archive.org/web/20120908152601/http://www.jsonline.com/news/milwaukee/29212859.html |archive-date=September 8, 2012 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref> Prior to de 2007 season, rumors surface about a potential trade involving Rodgers insyd wich he go be traded to de Oakland Raiders for wide receiver [[Randy Moss]].<ref>{{Cite web |date=March 18, 2007 |title=Packers GM insists QB Rodgers not on trading block |url=https://www.espn.com/nfl/news/story?id=2803272 |url-status=live |archive-url=https://web.archive.org/web/20121107040642/http://sports.espn.go.com/nfl/news/story?id=2803272 |archive-date=November 7, 2012 |access-date=December 30, 2010 |website=[[ESPN.com]]}}</ref> However, Moss be traded to de Patriots during de second day of de 2007 NFL draft, wey Rodgers stay insyd Green Bay.<ref>{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=April 29, 2007 |title=Pats acquire WR Moss from Raiders for draft pick |url=https://www.espn.com/nfl/draft07/news/story?id=2853116 |url-status=live |archive-url=https://web.archive.org/web/20171229132248/http://www.espn.com/nfl/draft07/news/story?id=2853116 |archive-date=December 29, 2017 |access-date=January 1, 2018 |website=[[ESPN.com]]}}</ref>
Rodgers step in wen na Favre injure insyd de second quarter against de Dallas Cowboys on ''Thursday Night Football'' on {{nowrap|November 29, 2007}}.<ref name="Cowboys Versus Packers 2007">{{Cite web |date=November 30, 2007 |title=Cowboys hold off Favre-less Packers to clinch playoff berth |url=http://scores.espn.go.com/nfl/recap?gameId=271129006 |url-status=dead |archive-url=https://web.archive.org/web/20121111035600/http://scores.espn.go.com/nfl/recap?gameId=271129006 |archive-date=November 11, 2012 |access-date=May 12, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers plete 18 passes for 201 yards, plus no interceptions.<ref name="Cowboys Versus Packers 2007" /> He sanso throw ein first touchdown pass buh na he be sacked three times.<ref name="Cowboys Versus Packers 2007" /> Rodgers bring de team back from a 17-point deficit to a 3-point deficit, buh de Cowboys go on to win 37–27.<ref name="Cowboys Versus Packers 2007" />
==== 2008: Transition to starter ====
[[File:AaronRodgers.jpg|left|thumb|Rodgers going down de tunnel at Lambeau Field insyd 2008]]
Favre ein retirement announcement on {{nowrap|March 4, 2008,}} open up de Packers dema starting quarterback position to Rodgers for de 2008 season. Although Favre decide to return from retirement, he be traded to de New York Jets, wich mean say Rodgers go cam be de starter.<ref>{{Cite web |last=Nickel |first=Lori |date=March 9, 2008 |title=Rodgers preparing to assume control |url=http://www.jsonline.com/story/index.aspx?id=726140 |url-status=dead |archive-url=https://web.archive.org/web/20081007044908/http://www.jsonline.com/story/index.aspx?id=726140 |archive-date=October 7, 2008 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref>
Rodgers quickly prove say na he be one of de best quarterbacks insyd de league by passing for 4,038 yards insyd ein first season as a starter as well as throwing for 28 touchdowns den only 13 interceptions. As of de 2025 season, dis still dey stand as de most interceptions he throw insyd a season.<ref>{{Cite web |title=Aaron Rodgers 2008 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |url-status=live |archive-url=https://web.archive.org/web/20180313183821/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Plus Rodgers making ein debut as a starter, de Packers beat de Minnesota Vikings 24–19 at Lambeau Field. Dis mark de first time since 1992 wey a quarterback oda dan Favre start a regular season game give de Packers. Rodgers end de game plus 178 yards passing den two touchdowns (one passing den one rushing).<ref name="Rodgers Debut">{{Cite web |last=Jenkins |first=Chris |date=September 10, 2008 |title=Solid debut frees Rodgers from post-Favre scrutiny |url=http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |url-status=live |archive-url=https://web.archive.org/web/20130921062040/http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |archive-date=September 21, 2013 |access-date=May 13, 2012 |website=USA Today |agency=Associated Press}}</ref> Insyd just ein second NFL start de following week, na dem vote Rodgers de FedEx Air award winner after passing for 328 yards den three touchdowns insyd a win against de Lions.<ref name="FedEx Air and Ground Winners Week 2 2008">{{Cite web |date=September 20, 2008 |title=FedEx Air and Ground Week 2 2008 Winners |url=http://www.nfl.com/videos?videoId=09000d5d80af20df |url-status=live |archive-url=https://web.archive.org/web/20090108060338/http://www.nfl.com/videos?videoId=09000d5d80af20df |archive-date=January 8, 2009 |access-date=September 20, 2008 |website=NFL Network |publisher=National Football League}}</ref>
During de fourth week of de season, Rodgers ein streak of 157 consecutive pass attempts widout an interception end wen na he be intercepted by [[Derrick Brooks]] of de Tampa Bay Buccaneers. Na de streak be de third-longest insyd franchise history behind [[Bart Starr]] (294) den Brett Favre (163).<ref name="Buccaneers">{{Cite web |date=September 29, 2008 |title=Buccaneers' defense rattles Rodgers in win over Packers |url=http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081001100738/http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |archive-date=October 1, 2008 |access-date=September 29, 2008 |publisher=National Football League}}</ref> Rodgers suffer a severe shoulder sprain insyd de game buh he continue to start den play well insyd a win against de Seattle Seahawks two weeks later.<ref name="Rodgers">{{Cite web |last=Jenkins |first=Chris |date=December 26, 2008 |title=Packers' Rodgers learns lessons from trying season |url=http://seattletimes.nwsource.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-url=https://web.archive.org/web/20150226064522/http://old.seattletimes.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-date=February 26, 2015 |access-date=May 13, 2012 |website=The Seattle Times}}</ref> Despite early successes, Rodgers be unable to win a close game during de season despite seven opportunities to do so.<ref name="Rodgers" /><ref name="Bears cap unlikely rally with OT win to stay alive in playoff race">{{Cite web |date=December 23, 2008 |title=Bears cap unlikely rally with OT win to stay alive in playoff race |url=http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081225222724/http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |archive-date=December 25, 2008 |access-date=December 23, 2008 |publisher=National Football League |agency=Associated Press}}</ref>
On {{nowrap|October 31, 2008}}, Rodgers sign a six-year, {{nowrap|$65 million}} contract extension thru de 2014 season.<ref name="Packers Sign Rodgers Through 2014">{{Cite web |date=October 31, 2008 |title=Packers sign QB Rodgers to $65M extension through 2014 |url=https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |url-status=live |archive-url=https://web.archive.org/web/20201204181536/https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |archive-date=December 4, 2020 |access-date=April 27, 2022 |publisher=National Football League |language=en-US |agency=Associated Press}}</ref><ref name="Contracts: Rodgers vs. Romo">{{Cite web |last=Silverstein |first=Tom |date=November 5, 2008 |title=Contracts: Rodgers vs. Romo |url=http://www.jsonline.com/sports/packers/33941369.html |url-status=live |archive-url=https://web.archive.org/web/20081205152249/http://www.jsonline.com/sports/packers/33941369.html |archive-date=December 5, 2008 |access-date=November 6, 2008 |website=JSOnline |publisher=Milwaukee Journal-Sentinel}}</ref> Insyd Rodgers ein first full season plus de team, de Packers fini plus a 6–10 record wey dem miss de playoffs.<ref>{{Cite web |title=2008 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2008.htm |url-status=live |archive-url=https://web.archive.org/web/20180907044946/https://www.pro-football-reference.com/teams/gnb/2008.htm |archive-date=September 7, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2009 ====
For de opening game of de 2009 season, Rodgers record ein first win insyd a comeback situation. Na de Packers dey trail at de beginning of de fourth quarter wen Rodgers plete a fifty-yard touchdown pass to wide receiver [[Greg Jennings]] plus about a minute remaining insyd de game to contribute to de 21–15 victory over de Chicago Bears.<ref>{{Cite web |last=Jenkins |first=Chris |date=December 8, 2019 |title=Rodgers brings Pack back for 21–15 win over Bears |url=https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |url-status=dead |archive-url=https://web.archive.org/web/20191208022530/https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Holland Sentinel}}</ref>
Na dem name Rodgers NFC Offensive Player of de Month for {{nowrap|October 2009}}, wen he pass for 988 yards, he plete 74.5 percent of ein passes, wey he record a passer rating over 110 for all three games he play during de month.<ref name="Rodgers, Sharper, Knox win NFC player of month honors">{{Cite web |last=Rosenthal |first=Gregg |date=October 29, 2009 |title=Rodgers, Sharper, Knox win NFC player of month honors |url=http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |url-status=live |archive-url=https://web.archive.org/web/20140112100938/http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |archive-date=January 12, 2014 |access-date=May 13, 2012 |website=ProFootballTalk.com}}</ref>
After a 4–4 start to de season den a 38–28 loss to de previously winless Buccaneers,<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – November 8th, 2009 |url=https://www.pro-football-reference.com/boxscores/200911080tam.htm |url-status=live |archive-url=https://web.archive.org/web/20171108032603/https://www.pro-football-reference.com/boxscores/200911080tam.htm |archive-date=November 8, 2017 |access-date=November 4, 2017 |website=[[Pro Football Reference]]}}</ref> de team begin to heat up. Rodgers lead de Packers to five straight wins, insyd wich he throw for a total of 1,324 yards, nine touchdowns, den two interceptions.<ref>{{Cite web |title=Aaron Rodgers – Games 9–13 in 2009 |url=http://pfref.com/tiny/3NZjQ |url-status=live |archive-url=https://web.archive.org/web/20211201192346/https://stathead.com/tools/tiny.fcgi?id=3NZjQ |archive-date=December 1, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers win two of dema last three games, finishing de second half of de season plus a 7–1 record den an overall 11–5 record; good enough to secure a wild card playoff berth wey dem clinch de fifth seed insyd de playoffs.<ref>{{Cite web |title=Aaron Rodgers 2009 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180101211154/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2009 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2009.htm |url-status=live |archive-url=https://web.archive.org/web/20171115032207/https://www.pro-football-reference.com/teams/gnb/2009.htm |archive-date=November 15, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers set a new franchise record by scoring 461 total points (third insyd de league), breaking de previous record wey de 1996 Super Bowl team (456) hold.<ref>{{Cite web |title=2009 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180504033136/https://www.pro-football-reference.com/years/2009/ |archive-date=May 4, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=1996 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/1996/ |url-status=live |archive-url=https://web.archive.org/web/20100211094812/http://www.pro-football-reference.com/years/1996/ |archive-date=February 11, 2010 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers cam be de first quarterback insyd NFL history ever to throw for 4,000 yards insyd both of ein first two years as a starter.<ref name="Rodgers Proscout.com">{{Cite web |last=Huber |first=Bill |date=May 9, 2012 |title=Wisconsin Makes 12–12–12 'Aaron Rodgers Day' |url=http://gnb.scout.com/2/1185173.html |url-status=dead |archive-url=https://web.archive.org/web/20130701070113/http://gnb.scout.com/2/1185173.html |archive-date=July 1, 2013 |access-date=May 13, 2012 |work=Fox Sports}}</ref> He fini de season fourth insyd passing yards (4,434), touchdown passes (30), passer rating (103.2), den yards per attempt (8.2) as well as eighth insyd completion percentage (64.7%), while he sanso cam second among quarterbacks insyd rushing yards (316).<ref>{{Cite web |title=Quarterbacks by rushing yards, 2009 season |url=http://pfref.com/tiny/dkEhS |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=dkEhS |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Ein passing yardage make am second all-time insyd Packers history, behind only [[Lynn Dickey]] ein all-time single-season record.<ref>{{Cite web |title=Individual Records – Passing |url=http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |url-status=live |archive-url=https://web.archive.org/web/20210126102232/http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |archive-date=January 26, 2021 |access-date=January 8, 2011 |publisher=Packers.com}}</ref> Na ein passer rating of 103.2 sanso be third-highest insyd team history at de time, behind only [[Bart Starr]] ein 105.0 rating insyd 1966 den 104.3 rating insyd 1968 (minimum 150 attempts).<ref>{{Cite web |title=Green Bay Packers, 1950–2009, highest passer rating. |url=http://pfref.com/tiny/a4QtT |url-status=live |archive-url=https://web.archive.org/web/20211201192343/https://stathead.com/tools/tiny.fcgi?id=a4QtT |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref>
[[File:Aaron_Rodgers_-_December_27,_2009_2.jpg|thumb|Rodgers insyd 2009, before a snap]]
Insyd de Wild Card Round, de Packers play de Arizona Cardinals, de same team wey na dem previously beat de week before, 33–7.<ref>{{Cite web |last=Baum |first=Bob |date=January 4, 2010 |title=Rodgers shreds Cardinals backups in 33–7 rout |url=https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208022718/https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Rodgers den Cardinals quarterback [[Kurt Warner]] put on a show wey dem later rank second on NFL Network ein ''Top 10 Quarterback Duels''.<ref>{{Cite web |title=Top Ten Quarterback Duels |url=http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |url-status=live |archive-url=https://web.archive.org/web/20180101135801/http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |archive-date=January 1, 2018 |access-date=January 1, 2018 |publisher=National Football League}}</ref> Na Rodgers ein first pass be intercepted by [[Dominique Rodgers-Cromartie]].<ref>{{Cite web |title=Wild Card – Green Bay Packers at Arizona Cardinals – January 10th, 2010 |url=https://www.pro-football-reference.com/boxscores/201001100crd.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003908/https://www.pro-football-reference.com/boxscores/201001100crd.htm |archive-date=August 21, 2017 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Rodgers settle down after dat miscue, however, wey he fini de game completing 28 of 42 passes for 423 yards, plus four touchdown passes all insyd a second-half comeback. Ein 423 passing yards be de most by any quarterback insyd ein first playoff game as well as ein four touchdown passes den five total touchdowns.<ref>{{Cite book |last=Cohen |first=Robert W. |url=https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |title=The 50 Greatest Players in Green Bay Packers History |date=September 1, 2018 |publisher=Rowman & Littlefield |isbn=9781493031894 |language=en |access-date=September 13, 2019 |archive-url=https://web.archive.org/web/20210203205326/https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |archive-date=February 3, 2021 |url-status=live}}</ref> Warner shred de Packers dema second-ranked defense, completing 29 of 33 passes for 379 yards, five touchdowns, no interceptions, den a passer rating of 154.1. Despite Rodgers ein offensive efforts, de Packers loose de game wen he fumble on a controversial play insyd overtime. Na dem return de ball by [[Karlos Dansby]] for de winning touchdown insyd de 51–45 Cardinals victory.<ref>{{Cite news|last=Crouse|first=Karen|date=January 10, 2010|title=Cardinals' Defense Ends Shootout With Packers in Overtime|work=The New York Times|url=https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20190824010502/https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|archive-date=August 24, 2019}}</ref> Na e be de highest scoring playoff game insyd NFL history.<ref>{{Cite web |date=January 10, 2015 |title=Remembering The Day of the Highest Scoring Playoff Game in NFL History |url=http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |url-status=live |archive-url=https://web.archive.org/web/20191208022939/http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=ThePostGame.com}}</ref>
Secof ein regular season performance, Rodgers earn a trip to ein first Pro Bowl as de NFC ein third quarterback, behind [[Drew Brees]] den Brett Favre. However, after Favre drop out secof injury wey Brees replace am secof ein participation insyd Super Bowl XLIV, Rodgers cam be de NFC ein starter.<ref>{{Cite web |title=2009 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2009/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180821031640/https://www.pro-football-reference.com/years/2009/probowl.htm |archive-date=August 21, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2010: Super Bowl XLV season ====
Insyd 2010, Rodgers lead de Packers to a 2–0 start, buh then dem loose three of dema next four games, wey dey include back-to-back overtime losses. De two overtime defeats bring Rodgers ein record insyd overtime games to 0–5.<ref>{{Cite web |title=2010 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2010.htm |url-status=live |archive-url=https://web.archive.org/web/20180313175307/https://www.pro-football-reference.com/teams/gnb/2010.htm |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
At midseason, Rodgers already throw nine interceptions dem compare to only throwing seven all of de previous season, wey na he be 16th insyd de league plus an 85.3 passer rating.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 1–8 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Over de remainder of de regular season, however, ein play improve as he throw 16 touchdowns to only two interceptions, he plete 71.4% of ein passes, wey he get a passer rating of 122.0.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 9–16 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref>
Insyd {{nowrap|Week 13}}, insyd a 34–16 victory over de San Francisco 49ers, Rodgers get 298 passing yards den three touchdowns to earn ein first career NFC Offensive Player of de Week honor.<ref>{{Cite web |title=AP Game Story: Packers Topple 49ers, 34–16 |url=https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |url-status=live |archive-url=https://web.archive.org/web/20191208221408/https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=packers.com}}</ref><ref>{{Cite web |title=2010 NFL Week 13 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_13.htm |url-status=live |archive-url=https://web.archive.org/web/20180319084545/https://www.pro-football-reference.com/years/2010/week_13.htm |archive-date=March 19, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd {{nowrap|Week 14}}, he sustain ein second concussion of de season. Na dem put backup [[Matt Flynn (American football)|Matt Flynn]] into de game as Rodgers ein replacement. De Packers loose de game 7–3 to de Lions.<ref>{{Cite web |last=Lage |first=Larry |date=December 12, 2010 |title=Rodgers suffers concussion in Packers' 7–3 loss to Lions |url=https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |url-status=live |archive-url=https://web.archive.org/web/20191208023253/https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The Journal Times |agency=Associated Press}}</ref> Against de Patriots, Rodgers miss de next week ein regular season start, ending ein streak of consecutive starts at 45, wich be tied for de second longest insyd team history.<ref name="Green Bay Packers QB Matt Flynn has fine 1st road start">{{Cite web |author=<!-- not stated --> |date=June 16, 2015 |title=Matt Flynn has plenty to learn at minicamp as new Patriots backup QB |url=https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |url-status=live |archive-url=https://web.archive.org/web/20211206085002/https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |archive-date=December 6, 2021 |access-date=March 3, 2026 |website=Fox Sports |publisher= |location=}}</ref>
After dema road loss to de Patriots, de Packers find demaselves at 8–6 wey dem for win dema final two regular season games to qualify for de playoffs. Rodgers turn around de team ein performance; dem win dema final two regular season games, one of dem against de New York Giants, wer Rodgers plete 25 of 37 passes for 404 yards, plus four touchdown passes, den plus a passer rating of 139.9.<ref>{{Cite news|date=December 26, 2010|title=NFL: Rodgers, Packers hammer Giants|url=https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|url-status=live|archive-url=https://web.archive.org/web/20191208023159/https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|archive-date=December 8, 2019|access-date=December 8, 2019|website=New Haven Register|agency=Associated Press}}</ref> Na e be ein first regular season 400-yard passing game. For ein effort against de Giants, he earn ein second NFC Offensive Player of de Week honor for de 2010 season.<ref>{{Cite web |title=2010 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002511/https://www.pro-football-reference.com/years/2010/week_16.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de next game, dem defeat de Bears by a score of 10–3 insyd de regular season finale.<ref name="Packers 10, Bears 3: Nothing Comes Easy">{{Cite web |last=Wilde |first=Jason |date=January 2, 2011 |title=Packers 10, Bears 3: Nothing Comes Easy |url=http://www.channel3000.com/sports/26347682/detail.html |url-status=dead |archive-url=https://web.archive.org/web/20110208054239/http://www.channel3000.com/sports/26347682/detail.html |archive-date=February 8, 2011 |access-date=January 24, 2011 |website=Channel3000.com}}</ref>
Na dem name Rodgers de FedEx Air NFL Player of de Year for ein passing performance insyd de 2010 season.<ref>{{Cite web |title=Aaron Rodgers voted FedEx Air NFL Player of the Year |url=http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |url-status=dead |archive-url=https://web.archive.org/web/20110225154931/http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |archive-date=February 25, 2011 |access-date=February 2, 2011 |publisher=Packers.com}}</ref>
[[File:Aaron_Rodgers_-_January_2,_2011_4.jpg|right|thumb|Rodgers dey greet de fans insyd Lambeau Field during de 2010 season ein finale against de Bears]]
Plus a 10–6 record, de Packers enter de playoffs as a Wild Card den de {{nowrap|No. 6}} seed. Insyd de Wild Card Round, dem defeat de {{nowrap|No. 3}} seeded Eagles 21–16.<ref>{{Cite web |date=January 9, 2011 |title=Rodgers, Packers Beat Eagles 21–16 |url=https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |url-status=live |archive-url=https://web.archive.org/web/20191208023430/https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=CBS – New York}}</ref> Insyd de Divisional Round, Rodgers plete 31 of 36 pass attempts for 366 yards den four touchdowns insyd a 48–21 blowout victory over de {{nowrap|No. 1}} seeded Atlanta Falcons.<ref>{{Cite news|last=Newberry|first=Paul|date=January 16, 2011|title=Rodgers stars in Green Bay's 48–21 rout of Falcons|publisher=AP via Yahoo Sports|url=https://sports.yahoo.com/nfl/recap?gid=20110115001|url-status=live|access-date=January 24, 2011|archive-url=https://web.archive.org/web/20110119180042/https://sports.yahoo.com/nfl/recap?gid=20110115001|archive-date=January 19, 2011}}</ref> Na e be de most points dem score insyd Packers postseason history.<ref>{{Cite web |title=Green Bay Packers Playoff History |url=https://www.pro-football-reference.com/teams/gnb/playoffs.htm |url-status=live |archive-url=https://web.archive.org/web/20161220082023/http://www.pro-football-reference.com/teams/gnb/playoffs.htm |archive-date=December 20, 2016 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> During de contest, Rodgers tie an NFL record for consecutive playoff games plus at least three touchdown passes (3 games). Rodgers sanso set an NFL record by becoming de only quarterback to pass for ten touchdowns dem combine thru three consecutive playoff games. On {{nowrap|January 23, 2011,}} Rodgers get a 55.4 passer rating as de Packers beat de {{nowrap|No. 2}} seed Chicago Bears 21–14 win insyd de NFC Championship.<ref>{{Cite news|date=January 23, 2011|title=NFC championship: Aaron Rodgers leads Packers past Bears 21–14|work=East Bay Times|agency=Associated Press|url=https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20200724211418/https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|archive-date=July 24, 2020}}</ref>
After winning de NFC Championship, de Packers earn a trip to Super Bowl XLV against de Pittsburgh Steelers. Insyd de game, Rodgers plete 24 of 39 pass attempts for 304 yards den three touchdowns insyd de 31–25 win, wey na dem name am Super Bowl MVP for ein performance.<ref name="Layden2011">{{Cite magazine|last=Layden|first=Tim|date=February 14, 2011|title=Green And Golden: Behind the poise and precision of quarterback Aaron Rodgers and the gutsy contributions of a host of role players, the Packers burnished their championship legacy with a memorable 31—25 victory over Pittsburgh in Super Bowl XLV|url=http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|url-status=dead|archive-url=https://web.archive.org/web/20131029203436/http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|archive-date=October 29, 2013|access-date=February 11, 2011|magazine=Sports Illustrated}}</ref><ref>{{Cite web |date=February 6, 2011 |title=Aaron Rodgers tosses 3 TD passes as Packers drop Steelers to win Super Bowl XLV |url=http://espn.go.com/nfl/recap?gameId=310206009 |url-status=dead |archive-url=https://web.archive.org/web/20110225151826/http://espn.go.com/nfl/recap?gameId=310206009 |archive-date=February 25, 2011 |access-date=February 7, 2011 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Dis ultimately go be ein only Super Bowl appearance plus de Packers.
From ein playoff performance, Rodgers cam be only se third player insyd NFL history to pass for over 1,000 yards insyd a single postseason wey he sanso cam be one of only four quarterbacks to record over 300 yards passing, plus at least three touchdown passes, den no interceptions insyd a Super Bowl.<ref>{{Cite web |title=Super Bowl, 300+ pass yds, 3+ TD, 0 Int |url=http://pfref.com/tiny/1posa |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=1posa |archive-date=December 1, 2021 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> He fini plus 1,094 passing yards, nine touchdown passes, two rushing touchdowns, den two interceptions, while completing 68.2% of ein passes for a passer rating of 109.8.<ref>{{Cite web |title=Aaron Rodgers Career Playoff Stats |url=https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |url-status=live |archive-url=https://web.archive.org/web/20220427191344/https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |archive-date=April 27, 2022 |access-date=April 27, 2022 |website=StatMuse |language=en}}</ref> From dis postseason, Rodgers sanso cam be de only player to pass for at least 900 yards den rush for at least two touchdowns insyd a single postseason.<ref>{{Cite web |title=Playoffs, 900+ pass yds, 2 rush TDs |url=https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |url-status=live |archive-url=https://web.archive.org/web/20200728195759/https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |archive-date=July 28, 2020 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Na dem rank am 11th by ein fellow players on de ''NFL Top 100'' Players of 2011.<ref>{{Cite web |title=2011 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20210308170627/https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |archive-date=March 8, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2011: First MVP ====
[[File:Aaron_Rodgers_drops_back_(cropped).jpg|thumb|Rodgers dey drop back for a pass insyd 2011.]]
Secof de 2011 NFL lockout, de Packers den Rodgers no schedule unofficial off-season workouts, despite chaw teams doing so.<ref name="allgbp">{{Cite web |last=Burke |first=Kris |date=July 2, 2011 |title=No Workouts? No Problem for the Packers |url=http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-url=https://web.archive.org/web/20161229101517/http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=All Green Bay Packers}}</ref> Rodgers den de Packers quickly quel any concerns over dema readiness by defeating de Saints, wey schedule off-season workouts, 42–34. He get 312 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 8, 2011 |title=Rodgers throws 3 TDs, Packers outlast Saints 42–34 |url=https://www.dailyherald.com/article/20110908/sports/709089632/ |url-status=live |archive-url=https://web.archive.org/web/20191208023757/https://www.dailyherald.com/article/20110908/sports/709089632/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Daily Herald |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 1 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_1.htm |url-status=live |archive-url=https://web.archive.org/web/20180830192658/https://www.pro-football-reference.com/years/2011/week_1.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> After de game, Rodgers say insyd de press conference, ''"I was going to ask myself, what would have happened if we had offseason workouts? I mean, could we have started any faster and scored more points tonight?"''<ref>{{Cite web |last=Darlington |first=Jeff |date=May 25, 2016 |title=Drew Brees' absence no big deal, but July 16 deadline looms |url=https://www.nfl.com/news/drew-brees-absence-no-big-deal-but-july-16-deadline-looms-09000d5d82956d8b |url-status=live |archive-url=https://web.archive.org/web/20161208145630/http://www.nfl.com/news/story/09000d5d82956d8b/article/drew-brees-absence-no-big-deal-but-july-16-deadline-looms |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref>
Insyd Week 4, a 49–23 victory over de Denver Broncos, Rodgers get 408 passing yards, four touchdowns, den one interception wey he run for two touchdowns to earn anoda NFC Offensive Player of de Week honor.<ref>{{Cite web |date=October 2, 2011 |title=Rodgers' big day helps Packers beat Broncos 49–23 |url=https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |url-status=live |archive-url=https://web.archive.org/web/20191208025355/https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Duluth News Tribune}}</ref><ref>{{Cite web |title=2011 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180401100045/https://www.pro-football-reference.com/years/2011/week_4.htm |archive-date=April 1, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, a 24–3 victory over de St. Louis Rams, Rodgers convert on a career-high 93-yard touchdown pass to [[Jordy Nelson]].<ref>{{Cite web |last=Jenkins |first=Chris |date=October 16, 2011 |title=Packers stay perfect at 6–0, beat Rams 24–3 |url=http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |url-status=live |archive-url=https://web.archive.org/web/20181211010230/http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |archive-date=December 11, 2018 |access-date=December 10, 2018 |website=The Salt Lake Tribune}}</ref> Insyd Week 9, a 45–38 victory over de Chargers, he get 247 passing yards den four touchdowns to earn ein third NFC Offensive Player of de Week honor for de 2011 season.<ref>{{Cite web |date=November 6, 2011 |title=Packers survive Chargers' late push as Aaron Rodgers delivers again |url=https://www.espn.com/nfl/game?gameId=311106024 |url-status=live |archive-url=https://web.archive.org/web/20191210232803/https://www.espn.com/nfl/game?gameId=311106024 |archive-date=December 10, 2019 |access-date=December 8, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 9 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_9.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231451/https://www.pro-football-reference.com/years/2011/week_9.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers get off to a 13–0 start insyd 2011, tying de NFC record for most consecutive wins to start a season, buh na dem be upset by de Kansas City Chiefs 19–14 insyd week 15, ending dema winning streak at 19 games, de second-longest winning streak insyd NFL history.<ref>{{Cite web |title=Green Bay Packers at Kansas City Chiefs – December 18th, 2011 |url=https://www.pro-football-reference.com/boxscores/201112180kan.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211142/https://www.pro-football-reference.com/boxscores/201112180kan.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2011.htm |url-status=live |archive-url=https://web.archive.org/web/20171115033715/https://www.pro-football-reference.com/teams/gnb/2011.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de season plus 4,643 passing yards, 45 touchdown passes, den six interceptions, good for a passer rating of 122.5, wich as of 2024 be de highest single-season passer rating insyd NFL history.<ref>{{Cite web |title=Aaron Rodgers 2011 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |url-status=live |archive-url=https://web.archive.org/web/20180101135748/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Ein passing yards, touchdown passes, den passer rating set single-season franchise records.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to passer rating, Rodgers lead de league insyd touchdown to interception ratio (7.5, fourth-best all-time), touchdowns passing % (9.0%, second highest all-time), den yards per attempt (9.2, fourth-highest all-time since becoming an official stat insyd 1970), while finishing second insyd both touchdown passes (45, sixth-highest all-time) den completion percentage (68.3%), as well as fifth insyd passing yards. He earn NFC Offensive Player of de Month awards for September, October, den November, den FedEx Air Player of de Week six times (Weeks 4, 5, 6, 7, 9, den 13). Insyd week four, against de Denver Broncos, Rodgers cam be de only quarterback insyd NFL history to record over 400 passing yards plus four touchdown passes, while sanso dey rush for two touchdowns insyd de same game.<ref>{{Cite web |title=List of players with at least 400 passing yards, four passing touchdowns, and two rushing touchdowns in a single game. NFL history |url=http://pfref.com/tiny/Io0Od |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=Io0Od |archive-date=December 1, 2021 |access-date=December 6, 2016 |website=[[Pro Football Reference]]}}</ref> Na he de winner of de 2011 Galloping gobbler as MVP of de Thanksgiving game between de Packers den de Lions, a 27–15 Green Bay victory, wey he tie an NFL record for consecutive games plus at least two touchdown passes (13).
De Packers cam be de fifth team insyd NFL history to finish de regular season plus a 15–1 record.<ref>{{Cite web |last=Kruse |first=Zach |date=January 2, 2012 |title=Green Bay Packers Are 5th 15–1 Team in NFL History: How Did the First 4 Finish? |url=https://bleacherreport.com/articles/1007036-green-bay-packers-are-5th-15-1-team-in-nfl-history-how-did-the-first-4-finish |access-date=May 30, 2024 |website=Bleacher Report |language=en}}</ref> Rodgers play insyd 15 of de 16 games, plus de only exception be Week 17 against de Lions, a game insyd wich Rodgers be rested after de club clinched home-field advantage for de playoffs de previous week. Insyd de game, Rodgers assist backup quarterback Matt Flynn insyd ein stellar 480-yard, six-touchdown performance by helping call some plays.<ref>{{Cite web |last=Samano |first=Simon |date=January 1, 2012 |title=Rodgers preps Flynn, calls plays during backup QB's big day |url=https://www.nfl.com/news/rodgers-preps-flynn-calls-plays-during-backup-qb-s-big-day-09000d5d825a02db |url-status=live |archive-url=https://web.archive.org/web/20190829082359/http://www.nfl.com/news/story/09000d5d825a02db/article/rodgers-preps-flynn-calls-plays-during-backup-qbs-big-day |archive-date=August 29, 2019 |access-date=September 13, 2019 |publisher=National Football League}}</ref> De Packers dema offense set franchise record for points scored insyd a season plus 560, wich as of 2016 be de third-most ever behind only de 2007 Patriots den 2013 Broncos.<ref>{{Cite web |title=All Time Most Points Scored by an NFL Team in a Season |url=https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-url=https://web.archive.org/web/20130802114230/https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-date=August 2, 2013 |access-date=December 6, 2016 |website=Sporting Charts}}</ref>
Rodgers set numerous NFL records insyd 2011. He record a passer rating of over 100.0 insyd thirteen games during de season, wey dey include twelve games in a row (both records), den a passer rating of 110.0 anaa higher insyd twelve games, wey dey include eleven in a row (sanso be records). Rodgers sanso win de league ein MVP award, receiving 48 of de 50 votes (de oda two dey go to [[Drew Brees]]). He sanso fini second, behind Brees, for de AP Offensive Player of de Year award.<ref>{{Cite web |date=February 4, 2012 |title=Saints' Brees wins AP Offensive Player of the Year award |url=https://www.nfl.com/news/saints-brees-wins-ap-offensive-player-of-the-year-award-09000d5d8269e4fe |url-status=live |archive-url=https://web.archive.org/web/20161208145625/http://www.nfl.com/news/story/09000d5d8269e4fe/article/saints-brees-wins-ap-offensive-player-of-the-year-award |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League |agency=Associated Press}}</ref> Rodgers ein 2011 season later be ranked as de third greatest passing season of all time by ESPN insyd 2013, wey na he be regarded as de most efficient.<ref name="Efficient QBS">{{Cite web |last=Seifert |first=Kevin |date=October 3, 2013 |title=Top 10 greatest quarterback seasons |url=https://www.espn.com/blog/nflnation/post/_/id/90974/ |url-status=live |archive-url=https://web.archive.org/web/20141103072453/http://espn.go.com/blog/nflnation/post/_/id/90974/ |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref>
Na de Packers be upset by de eventual Super Bowl champion New York Giants insyd de Divisional Round by de score of 37–20. De Packers dema receiving corps drop six passes insyd de loss wey Rodgers fini de game plus 264 passing yards, two touchdown passes, den an interception on ein last pass attempt.<ref>{{Cite news|last=Wang|first=Gene|date=January 15, 2012|title=NFL playoffs 2012: New York Giants stun Green Bay Packers, 37–20|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|url-status=live|access-date=December 8, 2019|archive-url=https://web.archive.org/web/20180906090329/https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|archive-date=September 6, 2018}}</ref> De 2011 Packers cam be de only team insyd NFL history to go 15–1 wey dem no win a playoff game, as well as dem be de fourth consecutive team to win at least 15 games wey dem no win de Super Bowl.<ref>{{Cite web |last=Emery |first=Mark |date=January 26, 2016 |title=As Carolina Panthers prepare for Super Bowl 50, a look at the fates of six previous teams that won at least 15 in regular season |url=http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |url-status=live |archive-url=https://web.archive.org/web/20161214152104/http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |archive-date=December 14, 2016 |access-date=December 12, 2016 |website=Daily News |location=New York}}</ref> Na dem name Rodgers to de Pro Bowl for ein 2011 season to go along plus a First-team All-Pro honor.<ref>{{Cite web |title=2011 NFL All-Pros |url=https://www.pro-football-reference.com/years/2011/allpro.htm |url-status=live |archive-url=https://web.archive.org/web/20180830185703/https://www.pro-football-reference.com/years/2011/allpro.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2011/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180830174119/https://www.pro-football-reference.com/years/2011/probowl.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> He be voted by ein fellow players as de best player insyd de league on de ''NFL Top 100'' Players of 2012.<ref>{{Cite web |title=2012 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190322201849/https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |archive-date=March 22, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2012 ====
Rodgers den de Packers start off de 2012 season plus a 30–22 loss to de 49ers.<ref>{{Cite web |last=Jenkins |first=Chris |date=September 10, 2012 |title=49ers stop Rodgers' rally, beat Packers 30–22 |url=https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025344/https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Plus de loss, Rodgers loose ein bet plus de music group Boyz II Men, wey he for wear an Alex Smith jersey during de next week of practice.<ref name="boyz">{{Cite web |last=Hanzus |first=Dan |date=September 8, 2012 |title=Aaron Rodgers' head-scratching bet with Boyz II Men |url=https://www.nfl.com/news/aaron-rodgers-head-scratching-bet-with-boyz-ii-men-0ap1000000059772 |url-status=live |archive-url=https://web.archive.org/web/20161220224204/http://www.nfl.com/news/story/0ap1000000059772/article/aaron-rodgers-headscratching-bet-with-boyz-ii-men |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Had de Packers win de game, Boyz II Men go sing de national anthem during dema next home game at Lambeau.<ref name="boyz" />
Insyd Week 4, a 28–27 victory over de Saints, Rodgers get 319 passing yards, four touchdowns, den one interception to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 28, 2012 |title=Rodgers throws late TD, Packers beat Saints 28–27 |url=https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |url-status=live |archive-url=https://web.archive.org/web/20191208025349/https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Twin Cities Pioneer Press}}</ref><ref>{{Cite web |title=2012 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020203/https://www.pro-football-reference.com/years/2012/week_4.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de undefeated Houston Texans, he tie de franchise record by throwing six touchdown passes, insyd a 42–24 victory, to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Houston Texans – October 14th, 2012 |url=https://www.pro-football-reference.com/boxscores/201210140htx.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081312/https://www.pro-football-reference.com/boxscores/201210140htx.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2012 NFL Week 6 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_6.htm |url-status=live |archive-url=https://web.archive.org/web/20210308120125/https://www.pro-football-reference.com/years/2012/week_6.htm |archive-date=March 8, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> De Texans allow only six total touchdown passes during de season up to dat point.<ref>{{Cite web |title=2012 Houston Texans, opponent TD log |url=https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |url-status=live |archive-url=https://web.archive.org/web/20180724093239/https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |archive-date=July 24, 2018 |access-date=December 31, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dis spark a five-game winning streak wich Rodgers plete 65.7% of ein passes for 1,320 yards, 17 touchdowns, two interceptions, den a passer rating of 119.1.<ref>{{Cite web |title=Rodgers, 2012, games 6–10 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227055845/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> During dat stretch, na dem name Rodgers NFC Offensive Player of de Month for October.<ref>{{Cite web |date=March 27, 2015 |title=Packers QB Rodgers leads group of NFC's best for October |url=https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |url-status=live |archive-url=https://web.archive.org/web/20200724202413/https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |archive-date=July 24, 2020 |access-date=September 13, 2019 |publisher=Fox News}}</ref> Insyd Week 15, Rodgers throw for 291 yards den three touchdowns to lead de Packers past de Bears, 21–13, making dem NFC North champions for de second consecutive year.<ref>{{Cite web |date=December 16, 2012 |title=Packers bounce Bears to clinch NFC North |url=https://www.wtsp.com/article/sports/nfl/packers-bounce-bears-to-clinch-nfc-north/67-376020825 |access-date=December 8, 2019 |publisher=WTSP}}</ref> Insyd de season finale, despite Rodgers go 28 of 40 for 365 yards, four touchdowns, no interceptions den a passer rating of 131.8, de Packers loose 37–34 against de Vikings.<ref>{{Cite web |date=December 30, 2012 |title=Vikings beat Packers 37–34, earn playoff berth |url=https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |url-status=live |archive-url=https://web.archive.org/web/20191208025350/https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=HeraldNet.com |agency=Associated Press}}</ref> Dis end de Packers dema twelve-game winning streak against NFC North opponents.
De Packers fini plus an 11–5 record, first insyd de NFC North, wey dem clinch de #3-seed insyd de NFC playoffs.<ref>{{Cite web |title=2012 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2012 |url-status=live |archive-url=https://web.archive.org/web/20180127072019/https://www.pro-football-reference.com/years/2012/ |archive-date=January 27, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers lead de league for de second straight year insyd passer rating (108.0) touchdowns passing % (7.1%), den touchdown-to-interception ratio (4.875), while finishing second insyd touchdown passes (39), third insyd completion percentage (67.2%), fifth insyd yards per attempt (7.78), den eighth insyd passing yards (4,295).<ref>{{Cite web |title=Aaron Rodgers 2012 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |url-status=live |archive-url=https://web.archive.org/web/20180101135930/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd de playoffs, de Packers defeat de Minnesota Vikings 24–10 insyd de Wild Card Round. Rodgers plete 23 of 33 passes to ten different players for 274 yards den a touchdown.<ref>{{Cite web |date=January 5, 2013 |title=Ponder-less Vikings fall to Packers in wild-card game |url=https://www.nfl.com/news/ponder-less-vikings-fall-to-packers-in-wild-card-game-0ap1000000122612 |url-status=live |archive-url=https://web.archive.org/web/20191208025349/http://www.nfl.com/news/story/0ap1000000122612/printable/ponderless-vikings-fall-to-packers-in-wildcard-game |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=NFL.com}}</ref> De 49ers beat dema 45–31 insyd de Divisional Round.<ref>{{Cite web |last=Farmer |first=Sam |date=January 13, 2013 |title=NFC playoffs: 49ers topple Packers 45–31 |url=https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025348/https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Chicago Tribune}}</ref> Rodgers plete 26 of 39 passes for 257 yards, two touchdowns, den an interception, while sanso dey rush for 28 yards, insyd de losing effort. He earn ein third career Pro Bowl nomination for ein performance insyd de 2012 season.<ref>{{Cite web |title=2012 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2012/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180316023449/https://www.pro-football-reference.com/years/2012/probowl.htm |archive-date=March 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2013.<ref>{{Cite web |title=2013 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200406154219/https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |archive-date=April 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2013 ====
On April 26, 2013, de Packers den Rodgers agree to a 5-year, $110 million contract extension wey dey make am de highest paid player insyd NFL history.<ref>{{Cite web |last1=Schefter |first1=Adam |last2=Mortensen |first2=Chris |date=April 26, 2013 |title=Source: Rodgers agrees to $110M extension |url=https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |url-status=live |archive-url=https://web.archive.org/web/20210414204446/https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |archive-date=April 14, 2021 |access-date=April 14, 2021 |website=[[ESPN.com]] |agency=Associated Press}}</ref> De Packers begin dema 2013 season against de reigning NFC champions, de 49ers, de team wey sanso end dema playoff run de previous season. Rodgers go 21 for 37 insyd completions, 333 yards, three touchdowns den an interception insyd de 34–28 loss.<ref>{{Cite web |title=Green Bay Packers at San Francisco 49ers – September 8th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309080sfo.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080800/https://www.pro-football-reference.com/boxscores/201309080sfo.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers get a career-high 480 passing yards to tie de franchise record insyd de 38–20 home-opener win against de Washington Redskins. He earn NFC Offensive Player of de Week for ein effort against de Redskins.<ref>{{Cite web |title=Washington Redskins at Green Bay Packers – September 15th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309150gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081525/https://www.pro-football-reference.com/boxscores/201309150gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2013 NFL Week 2 Leaders & Scores |url=https://www.pro-football-reference.com/years/2013/week_2.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020211/https://www.pro-football-reference.com/years/2013/week_2.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 335 passing yards insyd de first half set a club record.<ref name="w930">{{cite web |last=Huber |first=Bill |date=September 15, 2013 |title=Monster Half Propels Rodgers to Record Day |url=https://247sports.com/nfl/green-bay-packers/Article/monster-half-propels-rodgers-to-record-day-105030089/ |access-date=October 23, 2024 |website=247Sports}}</ref> He sanso cam be de first quarterback since [[Y. A. Tittle]] insyd 1962 to throw for at least 480 yards, four touchdowns den no interceptions insyd a game.<ref>{{Cite web |title=480+ passing yards, 4+ passing touchdowns, no interceptions, NFL history |url=http://pfref.com/tiny/rQ3Cc |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=rQ3Cc |archive-date=December 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers see ein NFL record of 41 consecutive games widout throwing multiple interceptions come to an end insyd a loss to de Cincinnati Bengals by de score of 34–30.<ref>{{Cite web |last=White |first=Scott |date=September 22, 2013 |title=Aaron Rodgers doesn't play usual mistake-free football |url=https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |url-status=live |archive-url=https://web.archive.org/web/20201025173245/https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |archive-date=October 25, 2020 |access-date=September 13, 2019 |website=CBS Sports}}</ref><ref>{{Cite web |title=Green Bay Packers at Cincinnati Bengals – September 22nd, 2013 |url=https://www.pro-football-reference.com/boxscores/201309220cin.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081320/https://www.pro-football-reference.com/boxscores/201309220cin.htm |archive-date=August 29, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
After de loss to de Bengals, de Packers start rolling, winning dema next four games. Against de Ravens, de Packers loose two receivers: [[Randall Cobb (American football)|Randall Cobb]] den [[James Jones (wide receiver)|James Jones]]. Na Cobb be sidelined plus a broken leg den Jones plus a sprained PCL.<ref>{{Cite web |title=Green Bay Packers' Randall Cobb, James Jones injured |url=https://www.nfl.com/news/green-bay-packers-randall-cobb-james-jones-injured-0ap2000000261308 |url-status=live |archive-url=https://web.archive.org/web/20170722195052/http://www.nfl.com/news/story/0ap2000000261308/article/green-bay-packers-randall-cobb-james-jones-injured |archive-date=July 22, 2017 |access-date=September 13, 2019 |publisher=National Football League}}</ref> Against de Cleveland Browns, na dem cart tight end [[Jermichael Finley]] off de field plus a bruised spinal cord, leaving Rodgers widout three of ein top four offensive weapons.<ref>{{Cite web |last=Lee |first=Caroline |date=October 21, 2013 |title=Jermichael Finley, Packers tight end, in ICU with neck injury |url=https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |url-status=live |archive-url=https://web.archive.org/web/20190203150423/https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |archive-date=February 3, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref> De next week against de Vikings, Rodgers plete 24 of 29 passes insyd a 44–31 victory.<ref>{{Cite web |title=Green Bay Packers at Minnesota Vikings – October 27th, 2013 |url=https://www.pro-football-reference.com/boxscores/201310270min.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080251/https://www.pro-football-reference.com/boxscores/201310270min.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
At home against de Bears insyd Week 9, na Rodgers be sacked by [[Shea McClellin]]. He fracture ein left clavicle insyd de process, den de speculation for ein return dem range from a few weeks to an indefinite timetable wey cam be a weekly spectacle of whether anaa wen he fi be cleared to san play.<ref>{{Cite web |date=November 5, 2013 |title=Aaron Rodgers has fractured collarbone, could miss a month |url=http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |url-status=live |archive-url=https://web.archive.org/web/20131111030547/http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |archive-date=November 11, 2013 |access-date=November 6, 2013 |website=[[The Denver Post]] |agency=Associated Press}}</ref><ref name="Aaron Rodgers wasn">{{Cite web |last=Mortensen |first=Chris |author-link=Chris Mortensen |date=December 22, 2013 |title=Aaron Rodgers wasn't close to return |url=https://www.espn.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |url-status=live |archive-url=https://web.archive.org/web/20141103072203/http://espn.go.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref><ref name="Rodgers not ready to play">{{Cite web |last=Dougherty |first=Pete |date=December 19, 2013 |title=Packers' Aaron Rodgers 'looks ready to play' but probably won't |url=https://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |url-status=live |archive-url=https://web.archive.org/web/20150805151227/http://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |archive-date=August 5, 2015 |access-date=November 3, 2014 |website=USA Today}}</ref> Before Rodgers break ein collarbone, de Packers win four straight games to climb to de top of de NFC North division plus a 5–2 record. Plus Rodgers injured den unable to play, de Packers go winless over de next five weeks to fall to 5–6–1 on de season.<ref>{{Cite web |title=Green Bay Packers 2013 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2013/gamelog/ |access-date=October 23, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
After rallying insyd December behind re-acquired backup quarterback Matt Flynn,<ref name="Backup Flynn">{{Cite web |last=Dunne |first=Tyler |date=December 16, 2013 |title=Stoic Matt Flynn delivers Packers win |url=http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |url-status=live |archive-url=https://web.archive.org/web/20141103071905/http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=web |publisher=Milwaukee-Wisconsin Journal Sentinel}}</ref> de Packers fight dema way back to a 7–7–1 record going into de final week of de season. On December 26, Packers head coach Mike McCarthy announce Rodgers go return den start insyd de season-finale showdown against de Chicago Bears at Soldier Field for de NFC North championship.<ref>{{Cite news|last=Breech|first=John|date=December 26, 2013|title=Packers make it official: QB Aaron Rodgers will start vs. Bears|work=CBS Sports|url=http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|url-status=live|access-date=December 27, 2013|archive-url=https://web.archive.org/web/20131227003701/http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|archive-date=December 27, 2013}}</ref> Returning from de injury, Rodgers throw for 318 yards, two touchdowns, den two interceptions insyd de regular season finale against de Bears.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – December 29th, 2013 |url=https://www.pro-football-reference.com/boxscores/201312290chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081317/https://www.pro-football-reference.com/boxscores/201312290chi.htm |archive-date=August 29, 2017 |access-date=May 5, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Trailing 27–28 plus under a minute to go insyd de game den facing de third 4th down of de drive, a 4th & 8 from de 48-yard line, Rodgers connect plus Cobb, wey sanso dey return for ein first game since breaking ein leg insyd Week 6, for a 48-yard game-winning touchdown to clinch de NFC North den earn de right to host a home playoff game against de San Francisco 49ers as de fourth seed.<ref>{{Cite magazine|last=Bedard|first=Greg A.|date=December 30, 2013|title=Answered Prayers|url=https://www.si.com/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|url-status=live|archive-url=https://web.archive.org/web/20211201192432/https://www.si.com/nfl/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|archive-date=December 1, 2021|access-date=September 13, 2019|magazine=Sports Illustrated}}</ref> Rodgers win de 2013 GMC Never Say Never Award for de come-from-behind, division-winning touchdown pass. Rodgers fini fifth insyd de league insyd passer rating (104.9), completion percentage (66.6%), den yards per game (282) while he sanso fini second insyd yards per attempt (8.75).<ref>{{Cite web |title=2013 NFL Passing |url=https://www.pro-football-reference.com/years/2013/passing.htm |access-date=July 17, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
Rodgers san lead de Packers to de playoffs, dis time plus an 8–7–1 record wey na dem be up against de team wey eliminate dem last year insyd de Divisional Round of de playoffs, de 49ers.<ref>{{Cite web |title=2013 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2013.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030637/https://www.pro-football-reference.com/teams/gnb/2013.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de 49ers for de fourth consecutive time, 23–20 on a last second field goal at Lambeau Field, insyd de Wild Card Round. Rodgers record only 177 yards passing, ein lowest insyd a playoff game, den one touchdown pass.<ref>{{Cite web |title=Wild Card – San Francisco 49ers at Green Bay Packers – January 5th, 2014 |url=https://www.pro-football-reference.com/boxscores/201401050gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170821043340/https://www.pro-football-reference.com/boxscores/201401050gnb.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> He sanso be ranked No. 11 by ein fellow players on de ''NFL Top 100'' Players of 2014.<ref>{{Cite web |title=2014 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112164602/https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2014: Second MVP ====
[[File:Aaron_rodgers_2014.jpg|right|thumb|Rodgers insyd 2014]]
De Packers dema 2014 regular season debut cam against de defending Super Bowl champion Seahawks—a game insyd wich dem go go on to loose 36–16.<ref>{{Cite web |title=Green Bay Packers at Seattle Seahawks – September 4th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409040sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182750/https://www.pro-football-reference.com/boxscores/201409040sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 2, de team begin de game plus a 21–3 deficit against de Jets, bug dem cam back wey dem win 31–24.<ref>{{Cite web |title=New York Jets at Green Bay Packers – September 14th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409140gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829120234/https://www.pro-football-reference.com/boxscores/201409140gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De 18-point comeback mark de biggest comeback insyd Rodgers ein career.<ref>{{Cite web |last=Imig |first=Paul |date=September 14, 2014 |title=Rodgers overcomes 'nerves' to complete biggest comeback of career |url=http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |url-status=live |archive-url=https://web.archive.org/web/20140918022944/http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |archive-date=September 18, 2014 |access-date=September 13, 2019 |work=Fox Sports}}</ref> Insyd de third week of de season, de Packers offense be shut down by de Lions dema defense, 19–7.<ref>{{Cite web |title=Green Bay Packers at Detroit Lions – September 21st, 2014 |url=https://www.pro-football-reference.com/boxscores/201409210det.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211151/https://www.pro-football-reference.com/boxscores/201409210det.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Na de Packers dema 7 points be de fewest points dem allow insyd a game Rodgers fini; na de 223 yards of total Packer offense be de lowest since Rodgers take over at quarterback den ein 162 passing yards sanso be a career low. For de third consecutive season, na de Packers be off to a 1–2 start. Insyd those three games, Rodgers throw five touchdowns den one interception combined, plus a passer rating of 95.1. Amid widespread concern, Rodgers telll de fans den de media, "''R-E-L-A-X. Relax. We're going to be OK."''<ref>{{Cite web |last=Wilde |first=Jason |date=September 23, 2014 |title=R-E-L-A-X (ESPN Wisconsin) |url=http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |url-status=dead |archive-url=https://web.archive.org/web/20151101051643/http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |archive-date=2015-11-01 |access-date=December 7, 2014}}</ref>
After dema loss to de Lions, de Packers go on a four-game win streak, during wich, Rodgers throw 13 touchdowns plus no interceptions.<ref>{{Cite web |title=Aaron Rodgers 2014 Game Log (Weeks 4–7) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231025726/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |archive-date=December 31, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> Insyd Week 4, a 38–17 victory over de Bears, he get 302 passing yards den four touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – September 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409280chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081419/https://www.pro-football-reference.com/boxscores/201409280chi.htm |archive-date=August 29, 2017 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180321130559/https://www.pro-football-reference.com/years/2014/week_4.htm |archive-date=March 21, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de Miami Dolphins, Rodgers lead de Packers to a game-winning drive plus less dan two minutes remaining. He plete a 4th & 10 pass to wide receiver Jordy Nelson wey he mimick [[Dan Marino]] ein famous fake spike play by completing a pass to wide receiver [[Davante Adams]] to get to within four yards of de endzone later insyd de drive.<ref>{{Cite web |last=Sherman |first=Rodger |date=October 12, 2014 |title=Packers use fake spike to beat Dolphins |url=https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |archive-date=March 30, 2019 |access-date=March 7, 2019 |website=SBNation.com}}</ref> Rodgers then plete a touchdown pass to tight end [[Andrew Quarless]] to win de game 27–24.<ref name="gmc">{{Cite web |title=2014 GMC Never Say Never Moment |url=http://www.nfl.com/voting/never-say-never/2014/REG/6 |url-status=live |archive-url=https://web.archive.org/web/20161220230141/http://www.nfl.com/voting/never-say-never/2014/REG/6 |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Dis play go later win Rodgers de GMC Never Say Never Moment of de Year Award.<ref name="gmc" /> Insyd Week 7, a 38–17 victory over de Carolina Panthers, na he be 19-of-22 for 255 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Carolina Panthers at Green Bay Packers – October 19th, 2014 |url=https://www.pro-football-reference.com/boxscores/201410190gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002513/https://www.pro-football-reference.com/boxscores/201410190gnb.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 7 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_7.htm |url-status=live |archive-url=https://web.archive.org/web/20210928154945/https://www.pro-football-reference.com/years/2014/week_7.htm |archive-date=September 28, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd a Week 8 loss against de Saints, Rodgers fini 28 of 39 for 418 yards, plus one touchdown pass den two interceptions, ending ein 212 consecutive attempts widout an interception streak<ref name="packsaintsoct">{{Cite web |last=Imig |first=Paul |date=October 27, 2014 |title=5 things we learned: Packers at Saints |url=http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |url-status=live |archive-url=https://web.archive.org/web/20170105180746/http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |archive-date=January 5, 2017 |access-date=January 5, 2017 |work=Fox Sports}}</ref>—de second longest insyd team history. Insyd de game, Rodgers injure ein hamstring wich appear to get an effect on ein play for de remainder of de game.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 27, 2014 |title=Aaron Rodgers of Green Bay Packers injures hamstring in loss |url=https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |url-status=live |archive-url=https://web.archive.org/web/20200818134022/https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |archive-date=August 18, 2020 |access-date=September 13, 2019 |website=[[ESPN.com]]}}</ref>
[[File:Rodgers_handing_off_2014.jpg|left|thumb|Rodgers handing de ball off to running back [[Eddie Lacy]] insyd 2014]]
Insyd Week 10, against de Chicago Bears, Rodgers cam be de second player insyd NFL history den de first since [[Daryle Lamonica]] insyd 1969 to throw six touchdown passes insyd de first half.<ref>{{Cite news|last=Armas|first=Genaro C.|date=November 10, 2014|title=Aaron Rodgers Throws 6 TD Passes in 1st Half As Packers Crush Bears 55–14|work=[[HuffPost]]|url=http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|url-status=live|access-date=November 27, 2014|archive-url=https://web.archive.org/web/20141112143148/http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|archive-date=November 12, 2014}}</ref> Rodgers fini 18 of 27 for 315 yards den six touchdowns despite only playing one drive insyd de second half to earn NFC Offensive Player of de Week.<ref name="nbcchi" /><ref>{{Cite web |title=2014 NFL Week 10 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_10.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020149/https://www.pro-football-reference.com/years/2014/week_10.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers set multiple records during de game: most touchdown passes of 70 anaa more yards plus 16—breaking de record dem wey Brett Favre den [[Peyton Manning]] hold, most consecutive touchdown passes widout an interception at home—he sanso break de record wey Favre den Manning, wey he cam be de first quarterback to ever have 10 touchdown passes against de same team insyd a season.<ref name="nbcchi">{{Cite web |last=Neveau |first=James |date=November 12, 2014 |title=Aaron Rodgers Suffered Back Injury vs. Bears |url=http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |url-status=live |archive-url=https://web.archive.org/web/20170105180011/http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=NBC Chicago}}</ref> De 55–14 victory tie de Packers dema 55–7 win vs. De Titans insyd 2009 for de most points wey a Rodgers-led offense score.
Insyd a Week 11 game against de 7–2 Eagles, Rodgers set a record for most consecutive attempts at home widout an interception, breaking [[Tom Brady]] ein record of 288 consecutive attempts.<ref>{{Cite web |last=Massey |first=Evan |date=November 16, 2014 |title=Packers' Aaron Rodgers Breaks Tom Brady's Record |url=https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |url-status=live |archive-url=https://web.archive.org/web/20200724201538/https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |archive-date=July 24, 2020 |access-date=September 12, 2019 |website=FanSided}}</ref> Insyd de 53–20 victory, he fini dey go 22 of 36, plus 341 passing yards, three touchdown passes den no interceptions.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – November 16th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829074637/https://www.pro-football-reference.com/boxscores/201411160gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De 8–3 Packers meet de 9–2 Patriots insyd Week 13, at [[Lambeau Field]] insyd na wat be Brady den Rodgers' first time playing against each oda as starters.<ref>{{Cite web |last=Imig |first=Paul |date=November 30, 2014 |title=Rodgers outduels Brady for win in first-ever matchup of elite QBs |url=https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |url-status=live |archive-url=https://web.archive.org/web/20190102094626/https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |archive-date=January 2, 2019 |access-date=January 1, 2019 |work=Fox Sports}}</ref> Rodgers fini dey go 24 of 38, plus 368 passing yards den two passing touchdowns insyd de 26–21 Packers victory.<ref>{{Cite web |title=New England Patriots at Green Bay Packers – November 30th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411300gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171228171554/https://www.pro-football-reference.com/boxscores/201411300gnb.htm |archive-date=December 28, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> For ein efforts insyd de month of November, he earn NFC Offensive Player of de Month.<ref>{{Cite web |date=December 4, 2014 |title=Aaron Rodgers among NFC's best for November |url=https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |url-status=live |archive-url=https://web.archive.org/web/20190812115629/https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |archive-date=August 12, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref>
Rodgers suffer a calf injury insyd Week 16, against de Buccaneers, secof severe dehydration he endure from flu-like symptoms he suffer during de week.<ref name="flu">{{Cite web |last=Demovsky |first=Rob |date=December 22, 2014 |title=Aaron Rodgers played with pulled calf |url=https://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |url-status=live |archive-url=https://web.archive.org/web/20170105180655/http://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=[[ESPN.com]]}}</ref>
Insyd de Week 17 game against de Lions, Rodgers re-injure ein left calf while extending a play den throwing a touchdown pass to [[Randall Cobb (American football)|Randall Cobb]], then na e help off de field, wey dem cart am off to de locker room. After missing a series, Rodgers re-enter de game plus de score dem tie 14–14. Despite he be less mobile plus de injury, Rodgers plete 13 of 15 passes for 129 yards den two scores against de league ein second-ranked defense. De Packers win 30–20, winning dema fourth straight NFC North title. Rodgers fini 17 of 22 for 226 yards, two touchdown passes, no interceptions, a 139.6 passer rating, den a rushing touchdown to earn ein fourth NFC Offensive Player of de Week honor for de 2014 season.<ref>{{Cite web |title=Detroit Lions at Green Bay Packers – December 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201412280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20190330032513/https://www.pro-football-reference.com/boxscores/201412280gnb.htm |archive-date=March 30, 2019 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 17 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_17.htm |url-status=live |archive-url=https://web.archive.org/web/20180226175215/https://www.pro-football-reference.com/years/2014/week_17.htm |archive-date=February 26, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers secure de second seed insyd de NFC, rewarding dem plus a playoff bye den a week off wich help Rodgers rest den rehabilitate ein injured left calf.<ref>{{Cite web |title=2014 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2014 |url-status=live |archive-url=https://web.archive.org/web/20211011053552/https://www.pro-football-reference.com/years/2014/ |archive-date=October 11, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round, na de Packers be scheduled to play de 13–4 Cowboys, wich mark de first time insyd NFL playoff history wen a team wich go undefeated at home (Packers) play against a team wich go undefeated away (Cowboys).<ref>{{Cite web |last=Imig |first=Paul |date=January 9, 2015 |title=Something has to give: Packers unbeaten at home; Cowboys 8–0 on road |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |url-status=live |archive-url=https://web.archive.org/web/20170101091540/http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |archive-date=January 1, 2017 |access-date=December 31, 2016 |work=Fox Sports}}</ref> Rodgers help secure a 26–21 victory by finishing 24 of 35 for 316 yards, three touchdowns, no interceptions, den a 125.4 passer rating.<ref>{{Cite web |title=Divisional Round – Dallas Cowboys at Green Bay Packers – January 11th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501110gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171114040923/https://www.pro-football-reference.com/boxscores/201501110gnb.htm |archive-date=November 14, 2017 |access-date=December 15, 2017 |website=[[Pro Football Reference]]}}</ref>
De Packers then travel go Seattle to face de top-seeded Seahawks insyd a rematch of de regular season opener.<ref>{{Cite web |last=Pittman |first=Travis |date=January 11, 2015 |title=Seahawks vs. Packers rematch for NFC Championship |url=https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |archive-date=July 24, 2020 |access-date=September 12, 2019 |publisher=KING}}</ref> Insyd de NFC Championship Game, na de Packers dey lead 19–7 plus just over five minutes to go, buh na de home team ein offense finally wake up den, plus de assistance of a crucial Packers special teams gaffe on an onside kick, de Seahawks lead 22–19, plus 44 seconds remaining. Rodgers quickly drive downfield to set up a tying field goal, only to watch from de sidelines as de Seahawks win de coin toss insyd overtime wey he proceed to score de game-winning touchdown on dema first possession. Rodgers be 19-for-34 for 178 yards den a touchdown, plus two interceptions insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Seattle Seahawks – January 18th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501180sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182804/https://www.pro-football-reference.com/boxscores/201501180sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de regular season first insyd touchdown-to-interception ratio (7.6), lowest interception percentage (1.0%), second insyd passer rating (112.2), yards per attempt (8.4), den touchdown passing percentage (7.1%), third insyd touchdown passes (38), seventh insyd passing yards (4,381), den ninth insyd completion percentage (65.6%).<ref>{{Cite web |title=2014 NFL Leaders and Leaderboards |url=https://www.pro-football-reference.com/years/2014/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20190915221740/https://www.pro-football-reference.com/years/2014/leaders.htm |archive-date=September 15, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> He set an NFL record for most consecutive pass attempts (512) at home widout an interception, den touchdown passes (41).
Na dem vote Rodgers de AP NFL Most Valuable Player for de 2014 season, receiving 31 votes,<ref>{{Cite web |last=Demovsky |first=Rob |date=January 31, 2015 |title=Aaron Rodgers named NFL MVP |url=https://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20161217162150/http://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |archive-date=December 17, 2016 |access-date=December 12, 2016 |publisher=[[ESPN]]}}</ref> wey dem name am NFC Offensive Player of de Year by de Kansas City Committee of 101<ref name="KC101off">{{Cite web |title=Past NFC Offensive Honorees |url=http://www.101awards.com/awards/past_nfc_offensive_honorees |url-status=dead |archive-url=https://web.archive.org/web/20161220130101/http://www.101awards.com/awards/past_nfc_offensive_honorees |archive-date=December 20, 2016 |access-date=December 13, 2016 |website=101awards.com}}</ref> den Fed-Ex Air NFL Player of de Year.<ref>{{Cite web |date=January 31, 2015 |title=2015 'NFL Honors' complete list of winners |url=https://www.nfl.com/news/2015-nfl-honors-complete-list-of-winners-0ap3000000466415 |url-status=live |archive-url=https://web.archive.org/web/20161018132754/http://www.nfl.com/news/story/0ap3000000466415/article/2015-nfl-honors-complete-list-of-winners |archive-date=October 18, 2016 |access-date=December 12, 2016 |publisher=National Football League}}</ref> He sanso be named to de AP All-Pro team as de first quarterback, receiving 44 votes while runner-up [[Tony Romo]] receive three.<ref>{{Cite web |last=Wesseling |first=Chris |date=January 2, 2015 |title=2014 All-Pro Teams: Analysis of the full rosters |url=https://www.nfl.com/news/2014-all-pro-teams-analysis-of-the-full-rosters-0ap3000000452986 |url-status=live |archive-url=https://web.archive.org/web/20140104005331/http://pro32.ap.org/article/2013-all-pro-team |archive-date=January 4, 2014 |access-date=February 4, 2015 |publisher=National Football League}}</ref> Na dem name am to de Pro Bowl for de 2014 season.<ref>{{Cite web |title=2014 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2014/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180816061701/https://www.pro-football-reference.com/years/2014/probowl.htm |archive-date=August 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am as de second best player insyd de league among ein fellow players on de ''NFL Top 100'' Players of 2015.<ref>{{Cite web |title=2015 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200508061426/https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |archive-date=May 8, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2015 ====
Insyd 2015, Rodgers get a down year by ein standards. He throw for a career low 3,821 yards insyd wich he play for at least 15 games, although he get 31 touchdowns to just eight interceptions.<ref>{{Cite web |last=Hirschhorn |first=Jason B. |date=July 6, 2016 |title=NFL Top 100: Packers' Aaron Rodgers lands at No. 6 in 2016 |url=https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |url-status=live |archive-url=https://web.archive.org/web/20211115204818/https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=ACME Packing Company |language=en}}</ref> Rodgers plete 60.7 of ein passes per, averaged only 6.7 yards per attempt wey he fini plus a passer rating of 92.7, all career lows. Na Pro Bowl wide receiver Jordy Nelson ein absence secof injury for de season be considered a contributing factor insyd Rodgers ein statistical drop dem compare to previous seasons.<ref>{{Cite web |last=Kelly |first=Danny |date=November 15, 2015 |title=Aaron Rodgers and the Packers miss Jordy Nelson more than we thought they would |url=https://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |url-status=live |archive-url=https://web.archive.org/web/20161226145804/http://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=sbnation.com}}</ref><ref>{{Cite web |date=January 19, 2016 |title=Packers hope Nelson's return will revitalize offense |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |url-status=live |archive-url=https://web.archive.org/web/20161226145654/http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |archive-date=December 26, 2016 |access-date=December 25, 2016 |work=Fox Sports}}</ref><ref>{{Cite web |last=Spofford |first=Mike |date=December 30, 2015 |title=Stats don't matter to Aaron Rodgers |url=http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |url-status=dead |archive-url=https://web.archive.org/web/20161226145201/http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=packers.com}}</ref>
Insyd Week 3, a 38–28 victory over de Chiefs, Rodgers get 333 passing yards den five touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Kansas City Chiefs at Green Bay Packers – September 28th, 2015 |url=https://www.pro-football-reference.com/boxscores/201509280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20220218210924/https://www.pro-football-reference.com/boxscores/201509280gnb.htm |archive-date=February 18, 2022 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2015 NFL Week 3 Leaders & Scores |url=https://www.pro-football-reference.com/years/2015/week_3.htm |url-status=live |archive-url=https://web.archive.org/web/20180330172357/https://www.pro-football-reference.com/years/2015/week_3.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> During Week 9 against de Panthers, he fini plus 369 passing yards, four touchdowns, den one interception. De interception cam plus only 1:47 left insyd de fourth quarter, den following de interception, Rodgers express frustration by throwing down a Microsoft Surface tablet.<ref>{{Cite web |last=Davis |first=Scott |date=November 9, 2015 |title=Aaron Rodgers angrily threw a Microsoft Surface tablet after throwing a crucial interception |url=https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |archive-date=March 30, 2019 |access-date=September 13, 2019 |website=Business Insider}}</ref> De Packers end up losing de game 29–37.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – November 8th, 2015 |url=https://www.pro-football-reference.com/boxscores/201511080car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211145/https://www.pro-football-reference.com/boxscores/201511080car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
On December 3, 2015, insyd a Week 13 match-up against de Lions, Rodgers throw a Hail Mary pass wey [[Richard Rodgers (tight end)|Richard Rodgers]] catch for 61 yards plus 0:00 left to beat de Lions 27–23, after dem extend de game secof a facemask penalty dem call on Detroit.<ref name="2015mary">{{Cite web |last=Rosenthal |first=Gregg |date=December 3, 2015 |title=Packers stun Lions on Aaron Rodgers' Hail Mary TD |url=https://www.nfl.com/news/packers-stun-lions-on-aaron-rodgers-hail-mary-td-0ap3000000593884 |url-status=live |archive-url=https://web.archive.org/web/20180408144543/http://www.nfl.com/news/story/0ap3000000593884/article/packers-stun-lions-on-miracle-td-throw-by-rodgers |archive-date=April 8, 2018 |access-date=December 25, 2016 |publisher=National Football League}}</ref> Na de play quickly be dubbed as "The Miracle in Motown."<ref>{{Cite news|last=Bennett|first=Colin|date=December 9, 2015|title=Getaway winner witnesses Motown Miracle|publisher=WTMJ|url=https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|url-status=dead|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20180312083608/https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|archive-date=March 12, 2018}}</ref><ref>{{Cite book |last=Aretha |first=David |url=https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |title=Aaron Rodgers: Champion Football Star |date=July 15, 2017 |publisher=Enslow Publishing, LLC |isbn=9780766087170 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203181206/https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |archive-date=February 3, 2021 |url-status=live}}</ref>
De Packers make de playoffs as de fifth seed insyd de NFC plus a 10–6 record.<ref>{{Cite web |title=2015 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2015.htm |url-status=live |archive-url=https://web.archive.org/web/20171010004706/https://www.pro-football-reference.com/teams/gnb/2015.htm |archive-date=October 10, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Dem defeat de Redskins 35–18 on de road insyd de Wild Card Round of de playoffs. Rodgers fini de game plus 210 yards den two passing touchdowns.<ref>{{Cite web |title=Wild Card – Green Bay Packers at Washington Redskins – January 10th, 2016 |url=https://www.pro-football-reference.com/boxscores/201601100was.htm |url-status=live |archive-url=https://web.archive.org/web/20180308042317/https://www.pro-football-reference.com/boxscores/201601100was.htm |archive-date=March 8, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round against de Cardinals, Rodgers throw a 41-yard Hail Mary touchdown pass to [[Jeff Janis]] as time expire to send de game into overtime. However, de Packers loos3 26–20 insyd overtime. Rodgers fini de game 24 for 44 for 261 yards plus two touchdowns den an interception.<ref>{{Cite web |last=Wilde |first=Jason |date=January 17, 2016 |title=Jeff Janis forces OT with Hail Mary catch, but celebration short-lived |url=https://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |url-status=live |archive-url=https://web.archive.org/web/20161213200125/http://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=[[ESPN.com]]}}</ref> Dem name am to ein fifth Pro Bowl wey na dem rank am as de sixth best player by ein peers on de ''NFL Top 100'' Players of 2016.<ref>{{Cite web |title=2015 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2015/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180308103829/https://www.pro-football-reference.com/years/2015/probowl.htm |archive-date=March 8, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2016 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190404010429/https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |archive-date=April 4, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2016 ====
[[File:Aaron_Rodgers,_Redskins_v_Packers,_Jan_2016.jpg|right|thumb|Rodgers insyd 2016]]
Thru out de first five games of de 2016 season, Rodgers ein struggles from de 2015 season appear to continue.<ref name="pff2016" /> Thru those games, he plete 60.2% of ein passes, dem average 6.5 yards per attempt, wey he post a passer rating of 88.4—all of wich na be similar to ein 2015 numbers.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log (Games 1–5) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/#127-131-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227180403/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016#127-131-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]]}}</ref> He sanso fumble five times, wey he loose two. Ein lackluster performance thru those games cause much speculation about de causes of ein problems.<ref>{{Cite web |last=Florio |first=Mike |author-link=Mike Florio |date=October 20, 2016 |title=What's wrong with Aaron Rodgers? |url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/whats-wrong-with-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20161226215024/http://profootballtalk.nbcsports.com/2016/10/20/whats-wrong-with-aaron-rodgers/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=NBC Sports |language=en-US}}</ref><ref name="pff2016">{{Cite web |last=Monson |first=Sam |date=October 17, 2016 |title=What's wrong with Aaron Rodgers and the Packers' offense? |url=https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |url-status=live |archive-url=https://web.archive.org/web/20161226214838/https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=profootballfocus.com}}</ref><ref>{{Cite web |last=Gonzalez |first=Jason |date=October 17, 2016 |title=What's wrong with the Packers? All signs point to Aaron Rodgers |url=http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |url-status=live |archive-url=https://web.archive.org/web/20161226145502/http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=Star Tribune}}</ref><ref>{{Cite web |last=Demovsky |first=Rob |date=October 20, 2016 |title=Experts weigh in on Aaron Rodgers: 'No easy fix' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |url-status=live |archive-url=https://web.archive.org/web/20161226150119/http://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=[[ESPN.com]]}}</ref>
[[File:Pro_Football_Hall_of_Fame_(23945585187).jpg|thumb|Rodgers ein uniform dem exhibit at de Pro Football Hall of Fame]]
Insyd a Week 7 ''Thursday Night Football'' game against de Bears, Rodgers rebound by recording a franchise record den career-high 39 completions, breaking Brett Favre ein previous record of 36 insyd 1993, sanso be against de Bears.<ref>{{Cite web |date=October 21, 2016 |title=Aaron Rodgers sets Green Bay Packers completion record in win over Chicago Bears |url=http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |url-status=live |archive-url=https://web.archive.org/web/20161213015800/http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=United Press International}}</ref> Rodgers record 326 passing yards for ein first 300-yard passing game since Week 10 of de 2015 season insyd de 26–10 win.<ref name="pfr gamelog" /> De following week against de Atlanta Falcons, Rodgers record a career regular season high of 60 rushing yards,<ref name="pfr gamelog">{{Cite web |title=Aaron Rodgers Career Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/ |url-status=dead |archive-url=https://web.archive.org/web/20111219211828/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog |archive-date=December 19, 2011 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> wey he fini plus four touchdown passes den a 125.5 passer rating.<ref>{{Cite web |last=Dubin |first=Jared |date=October 30, 2016 |title=Packers vs. Falcons highlights, score: Matt Ryan Aaron Rodgers trade lasers all day |url=http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |url-status=live |archive-url=https://web.archive.org/web/20161226215154/http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=CBS Sports}}</ref>
After a Week 11 loss to de Redskins—de Packers dema fourth in a row, putting dem at 4–6—Rodgers be optimistic about de remainder of de season, saying, "I feel like we fi run de table, I really do."<ref name="runtable1">{{Cite web |last=Demovsky |first=Rob |date=November 23, 2016 |title=Aaron Rodgers: Packers, at 4–6, can close with 6 straight wins |url=https://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |url-status=live |archive-url=https://web.archive.org/web/20170105180337/http://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref> Despite widespread doubt over de likelihood of such a run,<ref name="runtable2">{{Cite web |last=Demovsky |first=Rob |date=January 2, 2016 |title=Aaron Rodgers' magic carries Packers into playoffs on a run-the-table roll |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |url-status=live |archive-url=https://web.archive.org/web/20170103184508/http://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |archive-date=January 3, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Sipple |first=George |date=January 2, 2017 |title=Packers QB Aaron Rodgers makes good on 'run the table' prediction |url=http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |url-status=live |archive-url=https://web.archive.org/web/20170105175931/http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=Detroit Free Press}}</ref><ref>{{Cite web |last=Gantt |first=Darin |date=November 24, 2016 |title=Aaron Rodgers: "I feel we can run the table" |url=http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |url-status=live |archive-url=https://web.archive.org/web/20170105180803/http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=profootballtalk.nbcsports.com}}</ref> de Packers go go on to finish de season plus six straight wins—as Rodgers say dem go fi.
Insyd a Week 12 ''Monday Night Football'' game Rodgers appeare to injure ein hamstring on a scrambling play against de Eagles.<ref name="packnews">{{Cite web |last=Silverstein |first=Tom |date=November 29, 2016 |title=Hamstring injury sends Rodgers to tent |url=http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |url-status=live |archive-url=https://web.archive.org/web/20161129161247/http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |archive-date=November 29, 2016 |access-date=December 13, 2016 |website=Milwaukee Journal Sentinel}}</ref> After de play, Rodgers go into an injury tent on de sideline to get ein leg taped up.<ref name="packnews" /> Na Rodgers, however, no miss any snaps insyd de game wey he fini 30 out of 39 for 313 yards plus no sacks anaa interceptions.<ref name="2016eagles" /> Ein 300-yard performance be ein fourth of de season den de first wey de Eagles dema defense allow all season.<ref name="2016eagles">{{Cite web |last=Jackson |first=Zac |date=November 28, 2016 |title=Rodgers, defense step up as Packers snap losing streak |url=http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |url-status=live |archive-url=https://web.archive.org/web/20161213165321/http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |archive-date=December 13, 2016 |access-date=December 13, 2016}}</ref> De Packers win, 27–13, snapping dema four-game losing streak.
Insyd a 38–10 victory over de Seahawks insyd a Week 14 game, Rodgers den de Packers continue dema recent offensive den defensive success.<ref name="38-10" /><ref name="38-102">{{Cite web |last=Pelissero |first=Tom |date=December 12, 2016 |title=After rout of Seattle, Packers re-emerge as team no one wants to see in January |url=https://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |url-status=live |archive-url=https://web.archive.org/web/20161213014329/http://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=USA Today Sports}}</ref> Rodgers fini plus 246 passing yards, three touchdown passes den a 150.8 passer rating. De 150.8 passer rating be de best recorded against Seattle ein defense since head coach [[Pete Carroll]] take over insyd 2010.<ref name="38-10">{{Cite web |last=Wesseling |first=Chris |date=December 11, 2016 |title=Aaron Rodgers, Packers dismantle Seahawks |url=https://www.nfl.com/news/aaron-rodgers-packers-dismantle-seahawks-0ap3000000755388 |url-status=live |archive-url=https://web.archive.org/web/20161213001101/http://www.nfl.com/news/story/0ap3000000755388/article/mvp-candidate-rodgers-packers-dismantle-seahawks |archive-date=December 13, 2016 |access-date=December 13, 2016 |publisher=National Football League}}</ref> Rodgers do dis despite suffering a calf injury early insyd de game.<ref name="38-10" /> Na dem name am NFC Offensive Player of de Week for ein performance against de Seahawks.<ref>{{Cite web |last=Lam |first=Quang M. |date=December 14, 2016 |title=Le'Veon Bell, Rodgers among NFL Players of the Week |url=http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |url-status=dead |archive-url=https://web.archive.org/web/20190330021109/http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |archive-date=March 30, 2019 |access-date=November 12, 2019 |publisher=National Football League}}</ref>
On December 20, 2016, na Rodgers be selected to ein third consecutive Pro Bowl den ein sixth overall insyd ein career.<ref name="probowl2016">{{Cite web |date=December 20, 2016 |title=NFL announces 2017 Pro Bowl rosters |url=https://www.nfl.com/news/nfl-announces-2017-pro-bowl-rosters-0ap3000000760503 |url-status=live |archive-url=https://web.archive.org/web/20181117075658/http://www.nfl.com/news/story/0ap3000000760503/article/nfl-announces-2017-pro-bowl-rosters |archive-date=November 17, 2018 |access-date=December 24, 2016 |publisher=National Football League}}</ref>
During Week 16, Rodgers den [[Drew Brees]] tie de NFL record for most seasons plus at least 35 touchdown passes plus four—a record he share plus Peyton Manning den Tom Brady.<ref name="35tdpass">{{Cite web |title=Most seasons with at least 35 passing touchdowns, career |url=http://pfref.com/tiny/ww1Iz |url-status=live |archive-url=https://web.archive.org/web/20220209214231/https://stathead.com/tools/tiny.fcgi?id=ww1Iz |archive-date=February 9, 2022 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref><ref name="mosttdpass">{{Cite web |title=NFL Single-Season Passing Touchdowns Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20210201232241/https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |archive-date=February 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> Insyd de game against de Vikings, Rodgers fini 28 of 38 for 347 yards, four touchdown passes den a rushing touchdown to earn NFC Offensive Player of de Week.<ref name="espnvik2016">{{Cite web |last=Demovsky |first=Rob |date=December 24, 2016 |title=Aaron Rodgers for MVP: Packers QB makes case in win over Vikings |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |url-status=live |archive-url=https://web.archive.org/web/20161225084224/http://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |archive-date=December 25, 2016 |access-date=December 25, 2016 |publisher=[[ESPN]]}}</ref><ref>{{Cite web |title=2016 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2016/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231416/https://www.pro-football-reference.com/years/2016/week_16.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 300-yard performance be de first allowed by de Vikings dema defense all season.<ref name="espnvik2016" /> He sanso set Packer regular season records for most 4,000-yard passing seasons (6), most completions insyd a season (374), den—plus Jordy Nelson—most touchdowns by a quarterback/wide receiver combination plus (59).<ref name="espnvik2016" /> Na dem name Rodgers NFC Offensive Player of de Month for December.<ref>{{Cite web |date=January 5, 2017 |title=Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |url-status=live |archive-url=https://web.archive.org/web/20200724202520/https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |archive-date=July 24, 2020 |access-date=September 13, 2019 |website=packers.com}}</ref>
Rodgers help lead de Packers to a NFC North title den a playoff berth insyd 2016.<ref>{{Cite web |title=2016 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2016 |url-status=live |archive-url=https://web.archive.org/web/20180329001215/https://www.pro-football-reference.com/years/2016/ |archive-date=March 29, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers defeat de Giants insyd de Wild Card Round. Rodgers plete 25 of 40 passes for 364 yards den four touchdowns insyd de victory. Dem defeat de #1-seed Cowboys insyd de Divisional Round. Plua de game tied at 31 plus only 18 seconds remaining plus de ball on dema own 32-yard line, Rodgers throw a 36-yard completion to tight end [[Jared Cook]] to put de Packers insyd Mason Crosby ein field goal range. Crosby convert de 51-yard attempt as time expire to win de game.<ref>{{Cite web |last=Steele |first=David |date=January 15, 2017 |title=Aaron Rodgers-to-Jared-Cook joins list of legendary clutch NFL playoff catches |url=https://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |url-status=live |archive-url=https://web.archive.org/web/20190415003703/http://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |archive-date=April 15, 2019 |access-date=September 13, 2019 |website=Sporting News}}</ref> Overall, Rodgers plete 28 of 43 passes for 355 yards, two touchdowns den an interception insyd de victory.<ref>{{Cite web |title=Wild Card – New York Giants at Green Bay Packers – January 8th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701080gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171011073327/https://www.pro-football-reference.com/boxscores/201701080gnb.htm |archive-date=October 11, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=Divisional Round – Green Bay Packers at Dallas Cowboys – January 15th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701150dal.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030639/https://www.pro-football-reference.com/boxscores/201701150dal.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de Falcons insyd de NFC Championship insyd de final game at de Georgia Dome. Rodgers plete 27 of ein 45 passing attempts for 287 yards plus three touchdowns den an interception insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Atlanta Falcons – January 22nd, 2017 |url=https://www.pro-football-reference.com/boxscores/201701220atl.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003240/https://www.pro-football-reference.com/boxscores/201701220atl.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd 2016, Rodgers fini plus 401 completions den 610 attempts (both career highs), a 65.7% completion percentage, 4,428 passing yards, 40 touchdown passes, seven interceptions, a passer rating of 104.2, 369 rushing yards (career-high), den four rushing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |url-status=live |archive-url=https://web.archive.org/web/20211115205043/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Plus ein 40 touchdown passes, he lead de league insyd de statistic for de first time insyd ein career<ref>{{Cite web |last=Borek |first=Jesse |date=January 1, 2017 |title=Packers' Aaron Rodgers leads NFL in TD passes |url=http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |url-status=dead |archive-url=https://web.archive.org/web/20170104172003/http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |archive-date=January 4, 2017 |access-date=January 4, 2017 |website=fanrangsports.com |publisher=Nafstrops Media, LLC}}</ref> wey he cam be one of only four quarterbacks to pass for at least 40 touchdowns insyd multiple seasons.<ref name="40td">{{Cite web |title=Most seasons with at least 40 passing touchdowns, career |url=http://pfref.com/tiny/6BiBx |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=6BiBx |archive-date=December 1, 2021 |access-date=January 5, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Rodgers sanso fini fourth insyd passing yards, completions, attempts, den passer rating.<ref name="2016leaderspfr">{{Cite web |title=2016 NFL Leaders |url=https://www.pro-football-reference.com/years/2016/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20210108041718/https://www.pro-football-reference.com/years/2016/leaders.htm |archive-date=January 8, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Among quarterbacks, he fini third insyd rushing yards den fifth insyd rushing touchdowns.<ref name="2016qbrush">{{Cite web |title=2016 QB rushing leaders |url=http://pfref.com/tiny/698kQ |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=698kQ |archive-date=December 1, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2017.<ref>{{Cite web |title=2017 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201106081444/https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |archive-date=November 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2017 ====
Insyd a Week 1 victory over de Seahawks, Rodgers get ein 50th career game plus at least 300 passing yards. He fini de game plus 311, buh ein streak of 251 consecutive passes widout an interception cam to an end wen defensive tackle [[Nazair Jones]] pick am off insyd de first quarter.<ref>{{Cite news|date=September 10, 2017|title=Rodgers, Packers' defense spark season-opener win over Seahawks|work=Fox Sports|agency=Associated Press|url=http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|url-status=live|access-date=September 10, 2017|archive-url=https://web.archive.org/web/20170912011719/http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|archive-date=September 12, 2017}}</ref> Insyd a Week 2 loss of 34–23 to de Falcons, he get 343 passing yards, two touchdowns, den an interception insyd de first game insyd de new Mercedes-Benz Stadium insyd Atlanta.<ref>{{Cite web |title=Green Bay Packers at Atlanta Falcons – September 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201709170atl.htm |url-status=live |archive-url=https://web.archive.org/web/20171008080102/https://www.pro-football-reference.com/boxscores/201709170atl.htm |archive-date=October 8, 2017 |access-date=October 13, 2017 |website=[[Pro Football Reference]]}}</ref> Insyd Week 5, down by 28–31 against de Cowboys plus less dan two minutes on de clock, Rodgers lead a nine-play, 75-yard touchdown drive insyd de 35–31 victory, earning am NFC Offensive Player of de Week.<ref>{{Cite web |last=Lewis |first=Edward |date=October 11, 2017 |title=Aaron Rodgers, Earl Thomas among Players of Week |url=https://www.nfl.com/news/aaron-rodgers-earl-thomas-among-players-of-week-0ap3000000859999 |url-status=live |archive-url=https://web.archive.org/web/20190504022932/http://www.nfl.com/news/story/0ap3000000859999/article/aaron-rodgers-earl-thomas-among-players-of-week |archive-date=May 4, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref>
During Week 6 against de Vikings, na dem take Rodgers off de field by ein coaches den medical personnel after suffering a shoulder injury on a hit from [[Anthony Barr (American football)|Anthony Barr]]. Shortly thereafter, na dem reveal say Rodgers suffer a fractured right collarbone.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 15, 2017 |title=Aaron Rodgers has broken collarbone, could miss season |url=https://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |url-status=live |archive-url=https://web.archive.org/web/20190504114010/http://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |archive-date=May 4, 2019 |access-date=October 15, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Wesseling |first=Chris |date=October 15, 2017 |title=Aaron Rodgers suffers broken collarbone vs. Vikings |url=https://www.nfl.com/news/aaron-rodgers-suffers-broken-collarbone-vs-vikings-0ap3000000861006 |url-status=live |archive-url=https://web.archive.org/web/20171015222153/http://www.nfl.com/news/story/0ap3000000861006/article/aaron-rodgers-suffers-broken-collarbone-vs-vikings |archive-date=October 15, 2017 |access-date=October 15, 2017 |website=NFL.com |publisher=National Football League}}</ref> De next day, on October 16, na dem announce say Rodgers go get surgery on ein broken collarbone.<ref>{{Cite web |last=Patra |first=Kevin |date=October 16, 2017 |title=Aaron Rodgers will have surgery on broken collarbone |url=https://www.nfl.com/news/aaron-rodgers-will-have-surgery-on-broken-collarbone-0ap3000000862438 |url-status=live |archive-url=https://web.archive.org/web/20171016214737/http://www.nfl.com/news/story/0ap3000000862438/article/aaron-rodgers-will-have-surgery-on-broken-collarbone |archive-date=October 16, 2017 |access-date=October 16, 2017 |website=NFL.com |publisher=National Football League}}</ref> On October 19, he undergo surgery on ein collarbone, wey na he be officially placed on injured reserve de next day.<ref>{{Cite web |date=October 19, 2017 |title=Aaron Rodgers has surgery on collarbone |url=https://www.nfl.com/news/packers-aaron-rodgers-has-surgery-on-collarbone-0ap3000000864021 |url-status=live |archive-url=https://web.archive.org/web/20171020135141/http://www.nfl.com/news/story/0ap3000000864021/article/packers-aaron-rodgers-has-surgery-on-collarbone |archive-date=October 20, 2017 |access-date=October 19, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |date=October 20, 2017 |title=Packers place QB Rodgers on injured reserve |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |url-status=dead |archive-url=https://web.archive.org/web/20171021061030/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |archive-date=October 21, 2017 |access-date=October 20, 2017 |website=Packers.com}}</ref> Na dem insert a total of 13 screws to stabilize ein collarbone.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 26, 2017 |title=Injury roundup: Rodgers has '13 screws' in collarbone |url=https://www.nfl.com/news/injuries-aaron-rodgers-has-13-screws-in-collarbone-0ap3000000867422 |url-status=live |archive-url=https://web.archive.org/web/20171026222152/http://www.nfl.com/news/story/0ap3000000867422/article/injury-roundup-rodgers-has-13-screws-in-collarbone |archive-date=October 26, 2017 |access-date=October 26, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Knoblauch |first=Austin |date=November 3, 2017 |title=Aaron Rodgers focusing on his health, not return date |url=https://www.nfl.com/news/aaron-rodgers-focusing-on-his-health-not-return-date-0ap3000000871634 |url-status=live |archive-url=https://web.archive.org/web/20171104033909/http://www.nfl.com/news/story/0ap3000000871634/article/aaron-rodgers-focusing-on-his-health-not-return-date |archive-date=November 4, 2017 |access-date=November 3, 2017 |website=NFL.com |publisher=National Football League}}</ref>
Rodgers return to practice on December 2, wey dey make am eligible to play insyd de upcoming Week 15 game.<ref>{{Cite web |last=Bergman |first=Jeremy |date=December 2, 2017 |title=Aaron Rodgers returns to Packers practice Saturday |url=https://www.nfl.com/news/aaron-rodgers-returns-to-packers-practice-saturday-0ap3000000885977 |url-status=live |archive-url=https://web.archive.org/web/20191202121449/http://www.nfl.com/news/story/0ap3000000885977/article/aaron-rodgers-returns-to-packers-practice-saturday |archive-date=December 2, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> On December 12, na dem announce say Rodgers be medically cleared by doctors wey he be set to start de next game against de Panthers.<ref>{{Cite web |last=Lewis |first=Edward |date=December 12, 2017 |title=Aaron Rodgers cleared to return, to start vs. Panthers |url=http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |url-status=dead |archive-url=https://web.archive.org/web/20191109071351/http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |archive-date=November 9, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> He be officially activated on December 16.<ref>{{Cite web |date=December 16, 2017 |title=Aaron Rodgers activated from injured reserve |url=https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |url-status=live |archive-url=https://web.archive.org/web/20190413105005/https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |archive-date=April 13, 2019 |access-date=September 12, 2019 |website=Packers.com}}</ref> As dem plan, Rodgers return insyd Week 15 against de Panthers, wer he fini plus 290 passing yards, three touchdowns, den three interceptions as de Packers loose 24–31.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – December 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201712170car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101135719/https://www.pro-football-reference.com/boxscores/201712170car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> However, on December 19, na dem place Rodgers back on injured reserve after de Packers be eliminated from playoff contention.<ref>{{Cite web |date=December 19, 2017 |title=Packers place QB Aaron Rodgers on IR |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |url-status=dead |archive-url=https://web.archive.org/web/20180326030719/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |archive-date=March 26, 2018 |website=Packers.com}}</ref><ref>{{Cite web |last=Patra |first=Kevin |date=December 19, 2017 |title=Packers place Aaron Rodgers back on injured reserve |url=https://www.nfl.com/news/packers-place-aaron-rodgers-back-on-injured-reserve-0ap3000000895650 |url-status=live |archive-url=https://web.archive.org/web/20190920235723/http://www.nfl.com/news/story/0ap3000000895650/article/packers-place-aaron-rodgers-back-on-injured-reserve |archive-date=September 20, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Rapoport |first=Ian |author-link=Ian Rapoport |date=December 17, 2017 |title=Aaron Rodgers' collarbone still not completely healed |url=https://www.nfl.com/news/aaron-rodgers-collarbone-still-not-completely-healed-0ap3000000893627 |url-status=live |archive-url=https://web.archive.org/web/20171223065547/http://www.nfl.com/news/story/0ap3000000893627/article/aaron-rodgers-collarbone-still-not-completely-healed |archive-date=December 23, 2017 |access-date=December 23, 2017 |website=NFL.com |publisher=National Football League}}</ref> He be ranked No. 10 by ein fellow players on de ''NFL Top 100'' Players of 2018.<ref>{{Cite web |title=2018 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201104205316/https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |archive-date=November 4, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2018 ====
[[File:Rodgersthrowing2018redskins.jpg|thumb|Rodgers dey throw a pass insyd 2018]]
On August 29, 2018, Rodgers sign a four-year extension plus de Packers worth $134 million featuring a $57.5 million signing bonus.<ref>{{Cite web |last=Siegle |first=Evan |date=August 29, 2018 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |url-status=live |archive-url=https://web.archive.org/web/20180830044455/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |archive-date=August 30, 2018 |access-date=August 29, 2018 |website=packers.com}}</ref><ref>{{Cite web |last=Teope |first=Herbie |date=August 29, 2018 |title=Aaron Rodgers agrees to 4-year, $134M extension |url=http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |url-status=dead |archive-url=https://web.archive.org/web/20180830005310/http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |archive-date=August 30, 2018 |access-date=August 29, 2018 |publisher=National Football League}}</ref>
During ''Sunday Night Football'' against de Bears insyd Week 1, Rodgers lef de game plus a knee injury buh he return insyd de third quarter. Down by 20 points, Rodgers fini plus 286 passing yards den three touchdowns, leading de Packers rally to a 24–23 win.<ref>{{Cite web |last=Bergman |first=Jeremy |date=September 9, 2018 |title=Rodgers helps Packers rally against Bears |url=https://www.nfl.com/news/aaron-rodgers-rallies-packers-to-improbable-win-0ap3000000960283 |url-status=live |archive-url=https://web.archive.org/web/20180910164829/http://www.nfl.com/news/story/0ap3000000960283/article/aaron-rodgers-rallies-packers-to-improbable-win |archive-date=September 10, 2018 |access-date=September 10, 2018 |publisher=National Football League}}</ref> Despite a nagging knee injury, Rodgers get at least 40 pass attempts insyd each of de next three games. Insyd de last of these, he throw ein first interception insyd 150 attempts.<ref>{{Cite web |date=September 30, 2018 |title=GAME RECAP: Bills fall on the road in Green Bay |url=https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |url-status=live |archive-url=https://web.archive.org/web/20181008214257/https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |archive-date=October 8, 2018 |access-date=December 17, 2018 |website=buffalobills.com}}</ref> Insyd Week 5, Rodgers pass for 442 yards (de second-best of ein career) den three touchdowns, buh sanso two fumbles, insyd a 31–23 loss to de Lions.<ref>{{Cite web |last=Owczarski |first=Jim |date=October 7, 2018 |title=Packers doomed by slow start, Mason Crosby's misses in loss to Lions |url=https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |url-status=live |archive-url=https://web.archive.org/web/20201109032148/https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |archive-date=November 9, 2020 |access-date=December 17, 2018 |website=USA Today}}</ref> Insyd de following game, a 33–30 victory over de 49ers, he get 425 passing yards den two passing touchdowns.<ref>{{Cite web |date=October 16, 2018 |title=Bloodied Aaron Rodgers leads Packers and Crosby to redemption over 49ers |url=https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |url-status=live |archive-url=https://web.archive.org/web/20181030035759/https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |archive-date=October 30, 2018 |access-date=October 29, 2018 |website=The Guardian |agency=Associated Press}}</ref>
Following de bye-week, despite a continuing knee injury,<ref>{{Cite news|last=Maske|first=Mark|date=October 16, 2018|title=Aaron Rodgers's knee isn't quite right. But he's still good enough to carry the Packers|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|url-status=live|access-date=December 6, 2019|archive-url=https://web.archive.org/web/20191207093807/https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|archive-date=December 7, 2019}}</ref> Rodgers get ein third consecutive week plus a 100+ quarterback rating,<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log (Games 5, 6, and 8) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231012655/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |archive-date=December 31, 2019 |access-date=December 5, 2019 |website=[[Pro Football Reference]]}}</ref> wich include 286 yards passing, no interceptions, den a go-ahead 40-yard touchdown pass to [[Marquez Valdes-Scantling]] insyd a 29–27 loss to de Los Angeles Rams.<ref>{{Cite web |last=Beacham |first=Greg |date=October 29, 2018 |title=Late fumble keeps Rams unbeaten with 29–27 win over Packers |url=https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |url-status=live |archive-url=https://web.archive.org/web/20181217202249/https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref>
Insyd Week 14, against de Falcons, Rodgers set an NFL record by converting ein 359th consecutive pass widout an interception, breaking Tom Brady ein previous record.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 9, 2018 |title=No picks for Packer: Rodgers sets no-INT mark |url=https://www.espn.com/nfl/story/_/id/25491996 |url-status=live |archive-url=https://web.archive.org/web/20181210123157/http://www.espn.com/nfl/story/_/id/25491996 |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=[[ESPN.com]]}}</ref> Insyd Week 15, against de Chicago Bears, Rodgers throw for 274 yards den an interception insyd a 24–17 loss. Rodgers ein record streak widout an interception end plus 402 pass attempts after he be intercepted by free safety [[Eddie Jackson (safety)|Eddie Jackson]].<ref>{{Cite web |last=Cohen |first=Jay |date=December 16, 2018 |title=Rodgers throws interception as Packers lose 24–17 to Bears |url=https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |url-status=live |archive-url=https://web.archive.org/web/20181217145036/https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref> During Week 16 against de Jets, Rodgers fini plus 442 passing yards, two passing touchdowns, den two rushing touchdowns. Trailing at one point by 15 points, Rodgers den de Packers win 44–38 insyd overtime.<ref>{{Cite web |date=December 23, 2018 |title=Rodgers leads Packers to wild 44–38 overtime win over Jets |url=https://www.espn.com/nfl/recap?gameId=401030870 |url-status=live |archive-url=https://web.archive.org/web/20190101002910/http://www.espn.com/nfl/recap?gameId=401030870 |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> He match ein own feat of achieving at least 400 passing yards, two passing touchdowns, deb two rushing touchdowns insyd a single game. De only oda time insyd NFL history wey na e occur be wen Rodgers accomplish am insyd 2011 against de Denver Broncos.<ref>{{Cite web |last=Kruse |first=Zach |date=December 24, 2018 |title=Packers QB Aaron Rodgers matches his own rare feat vs. Jets |url=https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |url-status=live |archive-url=https://web.archive.org/web/20190123071358/https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Packers Wire}}</ref>
On December 18, 2018, na dem name Rodgers to ein seventh Pro Bowl.<ref>{{Cite web |date=December 18, 2018 |title=NFL reveals rosters for 2019 Pro Bowl in Orlando |url=https://www.nfl.com/news/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando-0ap3000001001792 |url-status=live |archive-url=https://web.archive.org/web/20190108220211/http://www.nfl.com/news/story/0ap3000001001792/article/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando |archive-date=January 8, 2019 |access-date=January 1, 2019 |publisher=National Football League}}</ref> He decline de appearance secof injury wey na he be replaced by [[Russell Wilson]].<ref>{{Cite web |last=Fentress |first=Aaron |date=January 9, 2019 |title=Russell Wilson replaces Aaron Rodgers on NFC Pro Bowl team |url=https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |url-status=live |archive-url=https://web.archive.org/web/20190626144630/https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |archive-date=June 26, 2019 |access-date=June 26, 2019 |website=NBC Sports Northwest}}</ref>
Insyd de regular season finale against de Detroit Lions, Rodgers suffer a concussion early insyd de game wey he no go return.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 30, 2018 |title=Aaron Rodgers suffers concussion in Packers' regular season finale |url=https://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |url-status=live |archive-url=https://web.archive.org/web/20190101005826/http://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]]}}</ref> Na den then send am to de hospital to test for concussion symptoms.<ref name="2018conc">{{Cite web |last=Jones |first=Brian |date=December 31, 2018 |title=Aaron Rodgers sent to hospital after suffering concussion |url=https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |url-status=live |archive-url=https://web.archive.org/web/20220427185549/https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |archive-date=April 27, 2022 |access-date=January 1, 2019 |website=247 SPORTS}}</ref> Secof na de Packers already be eliminated from playoff contention, Rodgers answer questions about whether he for be playing, for fear of injury, by saying: "''That's just not the way I lead, and I'm super-competitive, and I want to be out there with the guys and I look forward to being out there."''<ref name="2018conc" /> Na dem later spot Rodgers at de Packers dema facility after de game.<ref name="2018conc" />
Rodgers fini de season plus 372 completions, 597 attempts, 4,442 passing yards, 25 passing touchdowns, two interceptions den a passer rating of 97.6.<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/ |access-date=January 8, 2026 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to setting de record for consecutive passes widout an interception during de season, Rodgers set NFL records for interception percentage for a season, plus only 0.335% of ein passes be intercepted, den for de amount of thrown away passes.<ref name="passintpfr">{{Cite web |title=NFL Pass Interception % Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20190102050903/https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |archive-date=January 2, 2019 |access-date=January 1, 2019 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |last=Smith |first=Michael David |date=December 3, 2018 |title=Aaron Rodgers avoids interceptions by throwing the ball away at a record rate |url=https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |url-status=live |archive-url=https://web.archive.org/web/20190807024232/https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |archive-date=August 7, 2019 |access-date=November 12, 2019 |website=ProFootballTalk}}</ref> Na dem rank am eighth by ein fellow players on de ''NFL Top 100'' Players of 2019.<ref>{{Cite web |title=2019 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112140727/https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2019 ====
[[File:Aaron_Rodgers_2019.jpg|right|thumb|Rodgers insyd a game against de Washington Redskins ]]
Rodgers start de 2019 season plus a new head coach insyd [[Matt LaFleur]] following de departure of Mike McCarthy.<ref>{{Cite web |last=Wilde |first=Jason |date=September 17, 2019 |title=Believing offensive success is 'close,' Matt LaFleur and Aaron Rodgers focus on making more plays |url=https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |url-status=live |archive-url=https://web.archive.org/web/20190927192039/https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=madison.com}}</ref> De Packers offense rely less on Rodgers ein trademark passes den more on heavy formations den play-action throws to take advantage of running back [[Aaron Jones (running back)|Aaron Jones]].<ref>{{Cite web |last=Mays |first=Robert |date=January 17, 2020 |title=The Incalculable Legacy of Aaron Rodgers |url=https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |url-status=live |archive-url=https://web.archive.org/web/20200409091343/https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |archive-date=April 9, 2020 |access-date=April 7, 2020 |website=The Ringer |language=en}}</ref>
Rodgers help lead de Packers to a 3–0 start plus victories over de Bears, Vikings, den Broncos.<ref>{{Cite web |last=Wilner |first=Barry |date=September 6, 2019 |title=Packers' D, Aaron Rodgers beat Bears 10–3 in opener |url=https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |url-status=live |archive-url=https://web.archive.org/web/20190927192201/https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref><ref>{{Cite web |date=September 15, 2019 |title=Packers ride Rodgers' hot start to 21–16 win over Vikings |url=https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |url-status=dead |archive-url=https://web.archive.org/web/20190927192237/https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |publisher=WBAY |agency=Associated Press}}</ref><ref>{{Cite web |last=Jenkins |first=Keith |date=September 22, 2019 |title=Packers remain unbeaten with 27–16 win over Broncos |url=https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |url-status=live |archive-url=https://web.archive.org/web/20190927193720/https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref> Insyd Week 4, against de Eagles on ''Thursday Night Football'', he get 422 passing yards den two passing touchdowns, buh he sanso throw de game-ending interception as de Packers be handed dema first loss of de season by a score of 34–27.<ref>{{Cite web |date=September 27, 2019 |title=Eagles pick off Aaron Rodgers' late pass to beat Packers |url=https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |url-status=live |archive-url=https://web.archive.org/web/20190927063930/https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=Los Angeles Times |agency=Associated Press}}</ref> Insyd Week 7, against de Raiders, Rodgers post ein first-ever game plus a perfect passer rating of 158.3, de first quarterback insyd team history to do so.<ref>{{Cite web |last=Joseph |first=Andrew |date=October 20, 2019 |title=The Packers players were so pumped to find out Aaron Rodgers had a perfect passer rating |url=https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |url-status=live |archive-url=https://web.archive.org/web/20191021004107/https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |archive-date=October 21, 2019 |access-date=October 20, 2019 |website=USA Today}}</ref> He plete 25-of-31 passes for 429 yards den five touchdowns insyd de 42–24 victory.<ref>{{Cite web |last=Kruse |first=Zach |date=October 20, 2019 |title=Perfection: Aaron Rodgers finishes with perfect passer rating vs. Raiders |url=https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |url-status=live |archive-url=https://web.archive.org/web/20191020214833/https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |archive-date=October 20, 2019 |access-date=October 20, 2019 |website=PackersWire}}</ref> Na dem name am de NFC Offensive Player of de Week for ein performance.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 23, 2019 |title=Aaron Rodgers, Jacoby Brissett among Players of the Week |url=https://www.nfl.com/news/aaron-rodgers-jacoby-brissett-among-players-of-the-week-0ap3000001068643 |url-status=live |archive-url=https://web.archive.org/web/20191023124430/http://www.nfl.com/news/story/0ap3000001068643/article/aaron-rodgers-jacoby-brissett-among-players-of-the-week |archive-date=October 23, 2019 |access-date=October 23, 2019 |publisher=National Football League}}</ref> Insyd Week 17, against de Lions, Rodgers help lead de team to a 23–20 comeback win. As a result of de victory, de Packers secure a first round bye insyd de playoffs.<ref>{{Cite web |date=December 29, 2019 |title=Packers barely beat Lions 23–20 to earn first-round bye |url=https://www.espn.com/nfl/recap?gameId=401127983 |url-status=live |archive-url=https://web.archive.org/web/20220415135127/https://www.espn.com/nfl/recap?gameId=401127983 |archive-date=April 15, 2022 |access-date=December 29, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers fini de 2019 season plus 4,002 passing yards, 26 passing touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2019 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |url-status=live |archive-url=https://web.archive.org/web/20191231012649/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |archive-date=December 31, 2019 |access-date=December 31, 2019 |website=[[Pro Football Reference]]}}</ref>
Insyd de Divisional Round of de playoffs against de Seahawks, Rodgers plete 16 passes on 27 attempts wey he throw for 243 yards den two touchdowns during de 28–23 win.<ref>{{Cite web |date=January 12, 2020 |title=Packers hold off Seahawks 28–23 to reach NFC title game |url=https://www.espn.com/nfl/recap?gameId=401131042 |url-status=live |archive-url=https://web.archive.org/web/20200417042143/https://www.espn.com/nfl/recap?gameId=401131042 |archive-date=April 17, 2020 |access-date=January 13, 2020 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd de NFC Championship Game against de 49ers, Rodgers plete 31 passes on 39 attempts wey he throw for 326 yards den two touchdowns, buh he sanso throw two interceptions, wey dey include one to [[Richard Sherman (American football)|Richard Sherman]] insyd de final two minutes of de game as de Packers loose 37–20.<ref>{{Cite web |last=Wagner-McGough |first=Sean |date=January 19, 2020 |title=Packers suffer system-wide failure in ugly NFC Championship loss as clock ticks on the Aaron Rodgers era |url=https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |url-status=live |archive-url=https://web.archive.org/web/20200121163627/https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |archive-date=January 21, 2020 |access-date=January 20, 2020 |website=CBS Sports}}</ref> De loss mark Rodgers ein third consecutive NFC Championship loss (a streak wey go extend to four de following season).<ref name="Clunker">{{Cite web |last=Reischel |first=Rob |date=January 19, 2020 |title=Green Bay Packers' Aaron Rodgers Has Another NFC Championship Game Clunker |url=https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |url-status=live |archive-url=https://web.archive.org/web/20200120124354/https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |archive-date=January 20, 2020 |access-date=January 22, 2020 |website=Forbes}}</ref> Na dem rank am 16th by ein fellow players on de ''NFL Top 100'' Players of 2020.<ref>{{Cite web |title=2020 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200015/https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2020: Third MVP ====
Prior to a Week 5 bye, Rodgers help lead de Packers to a four-game winning streak to start de 2020 season.<ref>{{Cite web |date=October 7, 2020 |title=Packers head into their Week 5 bye |url=https://www.packers.com/news/packers-head-into-their-week-5-bye |url-status=live |archive-url=https://web.archive.org/web/20211115190601/https://www.packers.com/news/packers-head-into-their-week-5-bye |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=packers.com |language=en-US}}</ref> That winning streak go end insyd Week 6 against de Buccaneers, insyd wich Rodgers throw for 160 yards den two interceptions, wey dey include a pick-six (de third of ein professional career), during de 38–10 loss.<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – October 18th, 2020 |url=https://www.pro-football-reference.com/boxscores/202010180tam.htm |url-status=live |archive-url=https://web.archive.org/web/20201019130703/https://www.pro-football-reference.com/boxscores/202010180tam.htm |archive-date=October 19, 2020 |access-date=October 22, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> After a 3–2 stretch give de team, Rodgers throw for 211 yards den four touchdowns insyd a 41–25 victory over de Bears insyd Week 12. During de game, he cam be de 11th player insyd NFL history to eclipse 50,000 career passing yards, achieving de milestone on a 39-yard touchdown pass to tight end [[Robert Tonyan]] midway thru de third quarter.<ref>{{Cite magazine|last=Huber|first=Bill|date=November 29, 2020|title=Rodgers Makes History with 50,000-Yard Milestone|url=https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|url-status=live|archive-url=https://web.archive.org/web/20201130035319/https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|archive-date=November 30, 2020|access-date=November 30, 2020|magazine=Sports Illustrated}}</ref> In Week 13 against de Eagles, Rodgers throw for 295 yards den three touchdowns during de 30–16 win. Rodgers ein third touchdown pass of de game be to wide receiver [[Davante Adams]] wey na e be ein 400th career touchdown pass.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – December 6th, 2020 |url=https://www.pro-football-reference.com/boxscores/202012060gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20201125163729/https://www.pro-football-reference.com/boxscores/202012060gnb.htm |archive-date=November 25, 2020 |access-date=December 8, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Na dem name Rodgers de NFC Offensive Player of de Week for ein performance insyd Week 13.<ref>{{Cite web |last=Gordon |first=Grant |date=December 9, 2020 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |url-status=live |archive-url=https://web.archive.org/web/20201209165050/https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |archive-date=December 9, 2020 |access-date=December 10, 2020 |publisher=National Football League |language=en-US}}</ref> On December 21, 2020, na dem select am for de 2021 Pro Bowl.<ref>{{Cite web |date=December 21, 2020 |title=NFL reveals complete AFC, NFC rosters for 2021 Pro Bowl |url=https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |url-status=live |archive-url=https://web.archive.org/web/20201222000525/https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |archive-date=December 22, 2020 |access-date=December 21, 2020 |publisher=National Football League}}</ref> N dem name Rodgers de NFC Offensive Player of de Month for ein performance insyd December after passing for 15 touchdowns den one interception insyd five victories for de Packers.<ref>{{Cite web |last=Gordon |first=Grant |date=January 7, 2021 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen among Players of the Month |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20210107133506/https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |archive-date=January 7, 2021 |access-date=January 7, 2021 |publisher=National Football League}}</ref>
Overall, Rodgers fini de 2020 regular season plus 4,299 passing yards, 48 passing touchdowns, den five interceptions. Ein passing touchdowns total set a new franchise record.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> He get seven total games plus four passing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2020 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |url-status=live |archive-url=https://web.archive.org/web/20210109144744/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |archive-date=January 9, 2021 |access-date=January 7, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> He lead de league insyd numerous statistical categories, wey dey include completion percentage, touchdown passes, den passer rating.<ref>{{Cite web |last=Kruse |first=Zach |date=January 4, 2021 |title=Packers QB Aaron Rodgers led NFL in all these statistical categories in 2020 |url=https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |url-status=live |archive-url=https://web.archive.org/web/20210104150141/https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |archive-date=January 4, 2021 |access-date=January 7, 2021 |website=Packers Wire |language=en-US}}</ref> On January 8, 2021, he make de 2020 All-Pro Team first-team.<ref>{{Cite web |date=January 8, 2021 |title=2020 NFL All-Pro Team Roster |url=https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |url-status=live |archive-url=https://web.archive.org/web/20210108171953/https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |archive-date=January 8, 2021 |access-date=January 8, 2021 |work=Associated Press News}}</ref> De Pro Football Writers of America name am de NFL MVP.<ref>{{Cite web |last=Werner |first=Barry |date=January 21, 2021 |title=Aaron Rodgers earns PFWA NFL MVP honors |url=https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |url-status=live |archive-url=https://web.archive.org/web/20210131171403/https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |archive-date=January 31, 2021 |access-date=January 24, 2021 |website=Yahoo! Sports}}</ref>
De Packers fini plus a 13–3 record, dem win de NFC North, wey dem earn a first-round bye for de NFC playoffs.<ref>{{Cite web |title=2020 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2020/index.htm |url-status=live |archive-url=https://web.archive.org/web/20211115190600/https://www.pro-football-reference.com/years/2020/index.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de Divisional Round of de playoffs against de Rams, Rodgers throw for 296 yards den two touchdowns wey he sanso rush for anoda touchdown during de 32–18 win.<ref>{{Cite web |title=Divisional Round – Los Angeles Rams at Green Bay Packers – January 16th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210118220025/https://www.pro-football-reference.com/boxscores/202101160gnb.htm |archive-date=January 18, 2021 |access-date=January 20, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de NFC Championship against de Buccaneers, Rodgers throw for 346 yards den three touchdowns, buh he sanso throw an interception wey na he be sacked five times while he be constantly pressured during de 31–26 loss.<ref name="mcatee_01242021">{{Cite news|last=McAtee|first=Riley|date=January 24, 2021|title=The Packers' Championship-Game Curse Continues. Will It Cost Them Aaron Rodgers?|work=The Ringer|url=https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125040540/https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|archive-date=January 25, 2021}}</ref><ref>{{Cite news|last=Hoffman|first=Benjamin|date=January 24, 2021|title=What We Learned From the N.F.L.'s Conference Championships|work=The New York Times|url=https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125041821/https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|archive-date=January 25, 2021}}</ref><ref name="demovsky_01242021">{{Cite web |last=Demovsky |first=Rob |date=January 24, 2021 |title=Aaron Rodgers uncertain about future with Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20210125195535/https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |archive-date=January 25, 2021 |access-date=January 25, 2021 |website=[[ESPN.com]]}}</ref> Rodgers fall to 1–4 insyd conference championship games, becoming de first quarterback insyd NFL history to loose four in a row.<ref name="mcatee_01242021" /><ref name="demovsky_01242021" /><ref>{{Cite web |title=NFC Championship – Tampa Bay Buccaneers at Green Bay Packers – January 24th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101240gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210129001224/https://www.pro-football-reference.com/boxscores/202101240gnb.htm |archive-date=January 29, 2021 |access-date=January 31, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> After de season, he win de AP Most Valuable Player Award<ref>{{Cite web |last=Shook |first=Nick |date=February 6, 2021 |title=Packers QB Aaron Rodgers named 2020 AP NFL Most Valuable Player |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |url-status=live |archive-url=https://web.archive.org/web/20210207034518/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |archive-date=February 7, 2021 |access-date=February 6, 2021 |publisher=National Football League}}</ref> as well as de FedEx Air Player of de Year.<ref>{{Cite web |title=FedEx Air and Ground Players of the Year |url=https://www.nfl.com/voting/air-and-ground/player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20210125192004/https://www.nfl.com/voting/air-and-ground/player-of-the-year |archive-date=January 25, 2021 |access-date=January 25, 2021 |publisher=National Football League}}</ref> Na dem rank am 3rd by ein fellow players on de ''NFL Top 100'' Players of 2021.<ref>{{Cite web |title=2021 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200023/https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2021: Fourth MVP ====
[[File:Aaron_Rodgers_Packers_OCT2021_(cropped).jpg|right|thumb|Rodgers insyd 2021]]
Rodgers ein 2021 season get a rough start, as he plete 15 of 28 passes for 133 yards den two interceptions as Green Bay loose 38–3 to de Saints at TIAA Bank Field.<ref>{{Cite web |last=Benjamin |first=Cody |date=September 12, 2021 |title=Packers bench Aaron Rodgers for Jordan Love as Jameis Winston torches Green Bay in Week 1 |url=https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |url-status=live |archive-url=https://web.archive.org/web/20210913012242/https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |archive-date=September 13, 2021 |access-date=September 13, 2021 |website=CBS Sports |language=en}}</ref> Na dem pull am insyd de fourth quarter for [[Jordan Love]] as na ein chance of a comeback be all buh eliminated.<ref>{{Cite web |last=Polacek |first=Scott |date=September 12, 2021 |title=Packers' Aaron Rodgers Pulled for Jordan Love amid Blowout by Jameis Winston, Saints |url=https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |url-status=live |archive-url=https://web.archive.org/web/20211021021121/https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |archive-date=October 21, 2021 |access-date=October 21, 2021 |website=Bleacher Report |language=en}}</ref> However, Rodgers dem de Packers recover, going on a seven-game winning streak following de loss to New Orleans.<ref>{{Cite web |last1=Hodkiewicz |first1=Wes |last2=Spofford |first2=Mike |date=October 28, 2021 |title=Late interception wins it for Packers, 24–21 over Cardinals |url=https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |url-status=live |archive-url=https://web.archive.org/web/20211030160810/https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |archive-date=October 30, 2021 |access-date=October 30, 2021 |website=packers.com |language=en-US}}</ref>
Insyd Week 6, Rodgers seal a 24–14 victory against de Bears plus a six-yard touchdown run with 4:34 to go insyd de fourth quarter. During ein celebration, he yell at de Chicago crowd, "''All my f***ing life I own you! I still own you!"''<ref>{{cite web |last1=Demovsky |first1=Rob |date=October 17, 2021 |title=Packers QB Aaron Rodgers taunts jeering Bears fans after game-clinching TD run: 'I still own you' |url=https://www.espn.com/nfl/story/_/id/32419669/packers-qb-aaron-rodgers-taunts-jeering-bears-fans-game-clinching-td-run-own-you |access-date=September 3, 2025 |website=ESPN.com |publisher=ESPN}}</ref> Na de utterance be heavily discussed insyd ein aftermath, den two months later- wen Rodgers play de second game against Chicago- he state say na he get no regrets for making de comment.<ref>{{cite web |last1=Goodbread |first1=Chase |date=December 9, 2021 |title=Packers QB Aaron Rodgers has no regrets for saying 'I own you' to Bears fan |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-has-no-regrets-for-saying-i-own-you-to-bears-fan |access-date=September 3, 2025 |website=NFL.com |publisher=NFL}}</ref>
Following a positive test for [[COVID-19]], na dem place Rodgers on de COVID-19 reserve list on November 3.<ref>{{Cite web |date=November 3, 2021 |title=Packers place QB Aaron Rodgers on reserve/COVID-19 list |url=https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211107032353/https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |archive-date=November 7, 2021 |access-date=November 15, 2021 |website=Packers.com}}</ref> He miss 10 days per de league ein COVID-19 policies for unvaccinated players, wey dey include a game against de Chiefs.<ref>{{Cite web |last=Shook |first=Nick |date=November 3, 2021 |title=Packers QB Aaron Rodgers tests positive for COVID-19, will not play in Week 9 versus Chiefs |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |url-status=live |archive-url=https://web.archive.org/web/20211103152721/https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |archive-date=November 3, 2021 |access-date=November 3, 2021 |publisher=National Football League}}</ref> Despite answering "''Yeah, I'm immunized''" wen dem biz am during de preseason if na he be vaccinated against COVID-19, na he no actually receive a vaccination. Instead, he receive homeopathic treatment from ein personal doctor. While unvaccinated, he commit multiple violations of NFL COVID-19 protocols for unvaccinated players, wey dey include attending parties plus teammates while he no dey use PPE den dey appear unmasked at multiple postgame press conferences.<ref>{{Cite news|last=Jenkins|first=Sally|date=November 4, 2021|title=Aaron Rodgers is entitled to stay unvaccinated. He's not entitled to lie about it|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211105053620/https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|archive-date=November 5, 2021}}</ref><ref>{{Cite web |last=Shpigel |first=Ben |date=November 3, 2021 |title=Aaron Rodgers Out After Positive Coronavirus Test |url=https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |url-status=live |archive-url=https://web.archive.org/web/20211105230713/https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |archive-date=November 5, 2021 |access-date=November 6, 2021 |website=[[The New York Times]]}}</ref><ref>{{Cite news|last=Maske|first=Mark|date=November 3, 2021|title=Aaron Rodgers tests positive for coronavirus, is considered unvaccinated under NFL rules|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211103182339/https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|archive-date=November 3, 2021}}</ref><ref name="Paras">{{Cite web |last=Paras |first=Matthew |date=November 8, 2021 |title=State Farm backs Rodgers despite vaccine controversy |url=https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |url-status=live |archive-url=https://web.archive.org/web/20211110054603/https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=The Washington Times |language=en-US}}</ref><ref>{{Cite web |last=Florio |first=Mike |date=November 6, 2021 |title=Aaron Rodgers consulted with Joe Rogan, has taken Ivermectin |url=https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |url-status=live |archive-url=https://web.archive.org/web/20211110054606/https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=ProFootballTalk |language=en-US}}</ref> After a review, na dem fine am $14,650 for violations of de agreed protocols wey na ein team be fined $300,000.<ref name="demosky1">{{Cite web |last=Demovsky |first=Rob |date=November 10, 2021 |title=Green Bay Packers, Aaron Rodgers, Allen Lazard fined for COVID-19 protocol violations, source says |url=https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |url-status=live |archive-url=https://web.archive.org/web/20220417022230/https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |archive-date=April 17, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]]}}</ref><ref name="gordon1">{{Cite web |last=Gordon |first=Grant |date=November 9, 2021 |title=Packers fined $300K, Aaron Rodgers, Allen Lazard fined $14K for violation of COVID protocols |url=https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |url-status=live |archive-url=https://web.archive.org/web/20220415084129/https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |archive-date=April 15, 2022 |access-date=January 23, 2022 |publisher=National Football League}}</ref>
Na Rodgers be activated off de reserve/COVID-19 list on November 13, wey he return to play de next day against de Seahawks, a game de Packers win 17–0.<ref>{{Cite web |date=November 13, 2021 |title=Packers activate QB Aaron Rodgers off reserve/COVID-19 list |url=https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211113210134/https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |archive-date=November 13, 2021 |access-date=November 13, 2021 |website=Packers.com}}</ref> Insyd Week 15, Rodgers throw for 268 yards den three touchdowns insyd a 31–30 win over de Ravens, wich clinch de NFC North title give de Packers for a third consecutive season wey e earn am NFC Offensive Player of de Week honors.<ref>{{Cite web |last=Gordon |first=Grant |date=December 22, 2021 |title=Packers QB Aaron Rodgers, Chiefs TE Travis Kelce lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |url-status=live |archive-url=https://web.archive.org/web/20220113012121/https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |archive-date=January 13, 2022 |access-date=January 17, 2022 |publisher=National Football League}}</ref> On December 23, 2021, na dem name Rodgers to ein tenth Pro Bowl.<ref>{{Cite web |date=December 22, 2021 |title=2022 NFL Pro Bowl rosters for AFC, NFC: Bucs' Tom Brady gets record 15th selection |url=https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |url-status=live |archive-url=https://web.archive.org/web/20211228200849/https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |archive-date=December 28, 2021 |access-date=December 24, 2021 |website=[[ESPN.com]]}}</ref>
Insyd a Week 16 victory over de Browns, Rodgers throw ein 443rd career touchdown pass, passing Brett Favre for de most all-time career touchdown passes insyd Packers history.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 25, 2021 |title=Rodgers tops Favre's Pack record for TD passes |url=https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |url-status=live |archive-url=https://web.archive.org/web/20211227221346/https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |archive-date=December 27, 2021 |access-date=January 17, 2022 |website=[[ESPN.com]] |language=en}}</ref> For ein play insyd de month of December, Rodgers earn NFC Offensive Player of de Month honors.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=December 30, 2021 |title=For 10th time, Packers QB Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20220104191144/https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month#:~:text=GREEN%2520BAY%2520%25E2%2580%2593%2520Following%2520a%2520dominant,10th%2520time%2520in%2520his%2520career |archive-date=January 4, 2022 |access-date=January 17, 2022 |website=Packers.com |language=en-US}}</ref> He fini de 2021 season plus 4,115 passing yards, 37 touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2021 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2021/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> On January 14, 2022, Rodgers earn ein fourth career first-team All-Pro selection.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=January 14, 2022 |title=Three Packers players named first-team All-Pro |url=https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |url-status=live |archive-url=https://web.archive.org/web/20220116105423/https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |archive-date=January 16, 2022 |access-date=January 14, 2022 |website=packers.com}}</ref>
Insyd de Divisional Round against de 49ers, Rodgers throw for 225 yards, buh a poor performance by de special teams unit haunt de Packers, dem loose 13–10. Na e be Rodgers ein fourth loss insyd as many games to de 49ers insyd de postseason den Rodgers ein second home divisional loss.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> He sanso fail to notice a wide–open Allen Lazard (den [[Equanimeous St. Brown]]) on ein last throw of de game, instead targeting Davante Adams insyd double coverage for a Hail Mary attempt.<ref>{{Cite web |last=Farrar |first=Doug |title=What Aaron Rodgers missed on the play that could have saved the Packers' season |url=https://touchdownwire.usatoday.com/story/sports/nfl/touchdown/2022/01/23/aaron-rodgers-davante-adams-allen-lazard-2021-nfl-playoffs/80662791007/ |access-date=2026-08-06 |website=Touchdown Wire |language=en-US}}</ref> After de season, Rodgers win de AP NFL Most Valuable Player Award for de second consecutive season den de fourth time overall.<ref>{{Cite web |last=Shook |first=Nick |date=February 10, 2022 |title=Packers QB Aaron Rodgers named 2021 AP NFL MVP |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20220425153314/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |archive-date=April 25, 2022 |access-date=February 11, 2022 |publisher=National Football League}}</ref> Rodgers cam be de fifth player to win consecutive MVPs den first since Peyton Manning between 2008 den 2009.<ref>{{Cite web |last=Sutelan |first=Edward |date=February 10, 2022 |title=NFL MVP back-to-back winners: Aaron Rodgers set to join rare company in NFL history |url=https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |url-status=live |archive-url=https://web.archive.org/web/20220413074439/https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |archive-date=April 13, 2022 |access-date=February 20, 2022 |website=sportingnews.com |language=en}}</ref> Rodgers join Manning as de only players insyd NFL history to win at least four MVPs.<ref>{{Cite web |last=Spofford |first=Mike |date=February 10, 2022 |title=Packers QB Aaron Rodgers wins fourth NFL MVP award |url=https://www.packers.com/news/packers-qb-aaron-rodgers-wins-fourth-nfl-mvp-award |access-date=January 19, 2023 |website=packers.com |language=en-US}}</ref> Na dem rank am third by ein fellow players on de ''NFL Top 100'' Players of 2022.<ref>{{Cite web |title=2022 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2022-nfl-top-100.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2022 ====
[[File:Aaron_Rodgers_OCT2022_(cropped).jpg|thumb|Rodgers insyd 2022]]
[[File:Aaron_Rodgers_Packers_vs_Commanders_OCT2022.jpg|left|thumb|Rodgers dey play against de Washington Commanders insyd 2022]]
On March 8, Rodgers confirm say he go return den play give de Packers for de 2022 season after speculations dat Rodgers go fi retire anaa demand a trade to anoda team.<ref>{{Cite web |last=Demovsky |first=Rob |date=March 8, 2021 |title=QB Aaron Rodgers returning to play for Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220411070329/https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |archive-date=April 11, 2022 |access-date=March 9, 2021 |website=[[ESPN.com]]}}</ref> Na der be reports say Rodgers den de Packers agree to terms on a 4-year, $200 million contract extension wey go make am de highest-paid player insyd NFL history, buh Rodgers deny those reports on Twitter, wey he state say de numbers on de proposed contract be inaccurate, den dat he be yet to sign such a contract. He confirm, however, say he go return to play ein 18th NFL season plus de Packers.<ref>{{Cite tweet|number=1501282463632568322|user=AaronRodgers12|title=Hey everyone, just wanted to clear some things up; YES I will be playing with the @packers next year, however, reports about me signing a contract are inaccurate, as are the supposed terms of the contract I 'signed'.|date=March 8, 2022|first=Aaron|last=Rodgers}}</ref><ref>{{Cite web |date=March 15, 2022 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |url-status=live |archive-url=https://web.archive.org/web/20220404205504/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |archive-date=April 4, 2022 |access-date=April 27, 2022 |website=Packers.com}}</ref>
On March 16, he officially sign ein contract extension. Na de final terms of de contract be a 3-year contract (wich replace de final year of ein existing contract) worth $150.8 million, plus $101.5 million guaranteed. De new contract make am de highest paid player insyd North American sports history on an annual basis, surpassing de NBA ein [[Damian Lillard]] ein $49 million per annum contract.<ref>{{Cite web |last=Roscher |first=Liz |date=March 15, 2022 |title=Aaron Rodgers' Packers contract is reportedly official, and the numbers are staggering |url=https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |url-status=live |archive-url=https://web.archive.org/web/20220427025539/https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |archive-date=April 27, 2022 |access-date=March 17, 2022 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd de season opener against de Vikings, Rodgers throw for 195 yards den an interception insyd de 23–7 loss.<ref>{{Cite web |last=Demovsky |first=Rob |date=September 12, 2022 |title=Following loss to Minnesota Vikings, QB Aaron Rodgers says Green Bay Packers 'hurting ourselves' with 'too many mental mistakes' |url=https://www.espn.com/nfl/story/_/id/34575984/following-loss-minnesota-vikings-qb-aaron-rodgers-says-green-bay-packers-hurting-ourselves-too-many-mental-mistakes |access-date=September 12, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{cite web |last=Huber |first=Bill |date=September 12, 2022 |title=Mental Mistakes Frustrate Rodgers in Packers' Loss at Vikings |url=https://www.si.com/nfl/packers/gameday/mental-mistakes-frustrate-rodgers-in-packers-loss-at-vikings |access-date=July 1, 2025 |website=SI.com}}</ref> Insyd Week 4 against de Patriots, Rodgers throw for 251 yards den two touchdowns, buh he sanso throw ein fourth career pick-six to [[Jack Jones (American football)|Jack Jones]] insyd de 27–24 overtime win.<ref>{{Cite web |last=Patra |first=Kevin |date=October 3, 2022 |title=Aaron Rodgers on Packers' OT win over Patriots: 'This way of winning, I don't think, is sustainable' |url=https://www.nfl.com/news/aaron-rodgers-packers-patriots-this-way-of-winning-not-sustainable |access-date=October 13, 2022 |publisher=National Football League}}</ref> Insyd Week 5 at London, Rodgers throw for 222 yards den two touchdowns insyd an upset loss against de Giants.<ref>{{Cite news|last=Larrison|first=Ryan|date=October 9, 2022|title=Aaron Rodgers threw two touchdowns in a loss at London|url=https://www.rotoballer.com/player-news/aaron-rodgers-throws-two-touchdowns-during-loss-in-london/1079701|access-date=October 10, 2022|website=rotoballer.com}}</ref> Insyd Week 8 against de Buffalo Bills on Sunday Night Football, Rodgers throw for 203 yards, two touchdowns den one interception as de Packers loose dema fourth consecutive game insyd de 27–17 defeat.<ref>{{Cite web |last=Patra |first=Kevin |date=October 31, 2022 |title=Aaron Rodgers on the Packers' 3–5 start |url=https://www.nfl.com/news/aaron-rodgers-packers-3-5-start-nobody-feels-sorry-for-us-bills |access-date=November 5, 2022 |publisher=National Football League |language=en-US}}</ref> De next week against de Lions, Rodgers throw for 291 yards, a touchdown, den three interceptions insyd de 15–9 loss. Na e be de first time since Week 15 of de 2017 season wey Rodgers throw three interceptions insyd a game.<ref>{{Cite web |date=November 6, 2022 |title=Aaron Rodgers throws 3 INTs, lets Lions beat Packers 15–9 |url=https://www.cbssports.com/nfl/news/aaron-rodgers-throws-3-ints-lets-lions-beat-packers-15-9/ |access-date=November 6, 2022 |website=CBSSports.com |language=en |agency=Associated Press}}</ref> Rodgers bounce back de following week against de Cowboys, completing 14-of-20 passes for 224 yards den three touchdowns insyd 31–28 overtime victory.<ref>{{Cite web |last=Bubel |first=Jennifer |date=November 13, 2022 |title=Dallas Cowboys vs. Green Bay Packers: Stats, Scores, Highlights |url=https://en.as.com/nfl/dallas-cowboys-vs-green-bay-packers-live-online-stats-scores-and-highlights-nfl-week-10-n/ |access-date=November 15, 2022 |website=AS USA |language=en-us}}</ref><ref>{{Cite web |date=November 13, 2022 |title=Rodgers rallies Packers past McCarthy's Cowboys 31–28 in OT |url=https://www.espn.com/nfl/recap/_/gameId/401437131 |access-date=November 15, 2022 |website=[[ESPN.com]] |language=en-us |agency=Associated Press}}</ref> Following a Week 11 loss to de Titans, Rodgers confirm na he dey play plus a broken thumb on ein throwing hand he suffer insyd Week 5.<ref>{{Cite web |last=Alper |first=Josh |date=November 23, 2022 |title=Aaron Rodgers says he's been playing with a broken thumb |url=https://profootballtalk.nbcsports.com/2022/11/23/aaron-rodgers-says-hes-been-playing-with-a-broken-thumb/ |access-date=December 2, 2022 |website=ProFootballTalk |language=en-US}}</ref><ref>{{Cite web |last=Thompson |first=Scott |date=November 23, 2022 |title=Packers' Aaron Rodgers admits playing through broken thumb since Week 5 |url=https://www.foxnews.com/sports/packers-aaron-rodgers-admits-playing-through-broken-thumb-since-week-5 |access-date=November 24, 2022 |publisher=Fox News}}</ref> A Week 12 loss to de Eagles lef de Packers plus a 4–8 record, buh na de team rally off four consecutive wins to get to 8–8 before de regular season finale.<ref>{{Cite web |title=Green Bay Packers 2022 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2022/gamelog/ |access-date=January 20, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> De Packers fini plus an 8–9 record wey he miss de postseason following a Week 18 loss to de Detroit Lions insyd a win-and-in scenario for Green Bay.<ref>{{Cite web |title=2022 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2022/index.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |date=January 9, 2023 |title=How the Lions beat the Packers: Detroit eliminates rival Green Bay from playoff contention, Seahawks clinch final spot |url=https://www.nytimes.com/athletic/live-blogs/lions-packers-playoff-picture-seeding/Vj6r382oO6N1/ |access-date=January 20, 2023 |website=The Athletic |language=en}}</ref> After de game, Rodgers put ein arm around long-time teammate Cobb, wey he look solemnly around Lambeau Field before de two walked down de tunnel togeda. Sam suspected say dis indicate say Rodgers play ein last game give de Packers.<ref>{{Cite web |last=McKenna |first=Henry |date=January 9, 2023 |title=Has Packers legend Aaron Rodgers walked off Lambeau Field for the last time? |url=https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |url-status=live |archive-url=https://web.archive.org/web/20230109203158/https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |archive-date=January 9, 2023 |access-date=April 5, 2026 |website=[[Fox Sports]] |publisher=[[Fox Corporation]]}}</ref>
Rodgers fini de 2022 season plus 3,695 passing yards, 26 touchdowns, den 12 interceptions, wich mark de most for Rodgers insyd a single season since 2008.<ref>{{Cite web |title=Aaron Rodgers 2022 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2022/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |last=Kruse |first=Zach |date=January 9, 2023 |title=Aaron Rodgers throws interception on final pass of disappointing 2022 season |url=https://news.yahoo.com/aaron-rodgers-throws-interception-final-144926791.html |access-date=January 19, 2023 |publisher=Yahoo! News |language=en-US}}</ref> Na dem rank am 51st by ein fellow players on de ''NFL Top 100'' Players of 2023.<ref>{{Cite web |title=2023 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2023-nfl-top-100.htm |access-date=January 20, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
=== New York Jets ===
==== 2023: Achilles injury ====
[[File:Rodgers_vs_Bills_2.jpg|right|thumb|Rodgers (white, #8) dey take a snap against de Bills, shortly before ein injury.]]
On April 26, 2023, Rodgers be traded to de Jets, along plus de Packers dema first den fifth-round selections insyd de 2023 NFL draft, in exchange for de Jets dema first, second (via Cleveland) den sixth-round selections insyd de 2023 draft den a conditional second-round selection (wich na go convert to a first if Rodgers play 65% of de offensive snaps insyd 2023, buh na e it no happen) insyd de 2024 NFL draft.<ref>{{Cite web |last=Allen |first=Eric |date=April 26, 2023 |title=OFFICIAL Jets Acquire QB Aaron Rodgers From Green Bay Packers |url=https://www.newyorkjets.com/news/jets-acquire-qb-aaron-rodgers-from-green-bay-packers |access-date=July 28, 2023 |website=NewYorkJets.com}}</ref> De move echo de career path of ein predecessor Brett Favre, wey similarly spend over fifteen years as quarterback of de Packers before he be traded to de Jets.<ref>{{Cite web |last=Kerr |first=Jeff |date=April 24, 2023 |title=Aaron Rodgers traded to Jets: Ex-Packers QB taking eerily similar path as Brett Favre in journey to New York |url=https://www.cbssports.com/nfl/news/aaron-rodgers-traded-to-jets-ex-packers-qb-taking-eerily-similar-path-as-brett-favre-in-journey-to-new-york/ |access-date=May 1, 2023 |website=CBS Sports}}</ref> Although [[Joe Namath]] grant Rodgers permission to wear ein retired No. 12 jersey, Rodgers announce say he go return to wearing de No. 8 jersey, wich na he wear thru out ein college career plus de California Golden Bears.<ref>{{Cite web |last=Riccette |first=Billy |date=April 26, 2023 |title=Aaron Rodgers on number change: 'To me, No. 12 is Broadway Joe' |url=https://sports.yahoo.com/aaron-rodgers-number-change-no-185505111.html |access-date=July 19, 2023 |website=Yahoo! Sports}}</ref> On July 26, 2023, Rodgers take a pay cut wey he agree to a rework contract plus de Jets.<ref>{{cite web |last1=Cimini |first1=Rich |date=July 26, 2023 |title=Aaron Rodgers signs reworked contract with Jets |url=https://www.espn.com/nfl/story/_/id/38075863/aaron-rodgers-agrees-reworked-contract-jets |access-date=July 26, 2023 |website=[[ESPN.com]]}}</ref>
Making ein Jets debut insyd Week 1 on ''Monday Night Football'' against de Bills at MetLife Stadium, Rodgers injure ein left ankle on just ein fourth offensive snap after he be sacked by Bills dema defensive end [[Leonard Floyd]]. Na dem help Rodgers off de field wey dem later cart am to de locker room for further evaluation.<ref>{{Cite web |last=Cimini |first=Rich |date=September 12, 2023 |title=Jets fear QB Aaron Rodgers suffered serious Achilles injury |url=https://www.espn.com/nfl/story/_/id/38381823/qb-aaron-rodgers-injures-ankle-opening-drive-new-york-jets-debut |access-date=September 12, 2023 |website=[[ESPN.com]] |language=en}}</ref> Rodgers ein backup [[Zach Wilson]] go on to lead de Jets to a 22–16 win insyd overtime.<ref>{{Cite web |last=Kownack |first=Bobby |date=September 11, 2023 |title=Jets QB Aaron Rodgers exits Monday's overtime win against Bills on first drive; ankle X-rays negative |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-ankle-questionable-to-return-to-monday-s-game-against-bill |access-date=September 12, 2023 |website=NFL.com |language=en-US}}</ref> De next day, na dem diagnose Rodgers plus an Achilles tendon rupture wey na dem later place am on injured reserve.<ref>{{Cite web |last=Dajani |first=Jordan |date=September 12, 2023 |title=Aaron Rodgers injury update: MRI reveals Jets QB suffered a complete tear of Achilles tendon |url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-update-mri-reveals-jets-qb-suffered-a-complete-tear-of-achilles-tendon/ |access-date=September 12, 2023 |website=CBS Sports |language=en}}</ref><ref>{{Cite web |last=Sullivan |first=Phil |date=September 12, 2023 |title=Jets Place Aaron Rodgers on Injured Reserve; Saleh Commits To Zach Wilson |url=https://www.jetnation.com/2023/09/13/jets-place-aaron-rodgers-on-injured-reserve-saleh-commits-to-zach-wilson/ |access-date=September 14, 2023 |website=JetNation.com}}</ref> Rodgers undergo surgery on September 13, plus Dr. [[Neal ElAttrache]] placing an internal brace insyd ein left Achilles plus de goal of a mid-January return at de earliest.<ref>{{Cite web |last1=Rapoport |first1=Ian |author-link1=Ian Rapoport |last2=Pelissero |first2=Tom |author-link2=Tom Pelissero |date=September 16, 2023 |title=Jets QB Aaron Rodgers aims for potential playoff return after innovative surgery on torn Achilles |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-aims-for-potential-playoff-return-after-innovative-surgery |access-date=September 17, 2023 |website=NFL.com}}</ref> On November 29, de New York Jets open de 21-day practice window for Rodgers. Limited insyd practice, na Rodgers be cleared for functional activity buh no contact.<ref>{{Cite web |last=Patra |first=Kevin |date=November 29, 2023 |title=Jets opening QB Aaron Rodgers' 21-day practice window |url=https://www.nfl.com/news/jets-opening-qb-aaron-rodgers-21-day-practice-window |access-date=November 30, 2023 |website=NFL.com |language=en-US}}</ref> He be activated off injured reserve on December 20, buh de Jets announce he no go san play dis season after dema Week 15 loss to de Dolphins dem mathematically eliminate dem from playoff contention.<ref>{{Cite web |last=Shook |first=Nick |date=December 20, 2023 |title=Jets to activate Aaron Rodgers off IR to allow QB to continue to practice with team |url=https://www.nfl.com/news/jets-to-activate-aaron-rodgers-off-ir-to-allow-qb-to-continue-to-practice-with-t |access-date=December 20, 2023 |website=NFL.com}}</ref><ref>{{cite web |last=Reyes |first=Lorenzo |date=December 20, 2023 |title=Aaron Rodgers' season is over, so why are the Jets activating him? |url=https://www.usatoday.com/story/sports/nfl/jets/2023/12/20/aaron-rodgers-comeback-jets-shut-down-achilles-tear/71825680007/ |access-date=July 24, 2024 |website=USA TODAY}}</ref> Despite missing most of de season, he be ranked 92nd by ein fellow players on de NFL Top 100 Players of 2024.<ref>{{cite web |last=Hetherington |first=Krissy |date=July 23, 2024 |title=Top 100 Players of 2024, Nos. 100–91: Aaron Rodgers falls to lowest ranking in his career |url=https://www.nfl.com/news/top-100-players-of-2024-nos-100-91-aaron-rodgers-trevor-lawrence |access-date=July 6, 2025 |website=NFL.com}}</ref>
==== 2024 ====
[[File:Aaron_Rodgers_Jets_vs_Titans_SEPT2024.png|thumb|Rodgers dey play against de Tennessee Titans at Nissan Stadium insyd 2024]]
After playing just four offensive snaps insyd ein first season plus de Jets secof an Achilles injury, Rodgers make ein return on ''Monday Night Football'' insyd Week 1 to kick off de 2024 campaign. Insyd ein highly anticipated return, Rodgers plete 13 of 21 passes for 167 yards, one touchdown den one interception insyd a 32–19 loss to de defending NFC champion San Francisco 49ers.<ref>{{Cite web |last=Patra |first=Kevin |date=September 9, 2024 |title=Aaron Rodgers on Jets' loss to 49ers: 'I can play better' |url=https://www.nfl.com/news/aaron-rodgers-on-jets-loss-to-49ers-i-can-play-better |access-date=September 10, 2024 |website=[[NFL.com]] |language=en}}</ref> Insyd de Jets dema home opener against de New England Patriots, Rodgers plete 27 of 35 passes for 281 yards den two touchdowns as de Jets cruise to a 24–3 victory.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=September 19, 2024 |title='Thursday Night Football' highlights: Aaron Rodgers, Jets dominate Patriots |url=https://www.nbcnews.com/news/sports/live-blog/patriots-vs-jets-live-updates-jacoby-brissett-takes-aaron-rodgers-new-rcna171577 |access-date=September 22, 2024 |website=NBC News}}</ref> Insyd Week 5 insyd London, Rodgers cam be de ninth quarterback insyd NFL history to reach 60,000 passing yards buh he tie ein career-high plus three interceptions, wey dey include a game-sealing pick plus under a minute left as de Jets loose 23–17 to de Vikings.<ref>{{Cite web |last=Cimini |first=Rich |date=October 6, 2024 |title=Aaron Rodgers 9th QB to pass for 60K yards, but 3 INTs doom Jets |url=https://www.espn.com/nfl/story/_/id/41642251/jets-aaron-rodgers-becomes-9th-qb-pass-60000-yards |access-date=October 6, 2024 |website=ESPN.com}}</ref> Jets head coach [[Robert Saleh]] unexpectedly be fired after de London loss, plus sam analysts dey perceive say na he no get along plus Rodgers.<ref>{{Cite web |last1=Li |first1=David K. |last2=Abdelkader |first2=Rima |date=October 8, 2024 |title=New York Jets fire coach Robert Saleh after 2–3 start and apparent tension with Aaron Rodgers |url=https://www.nbcnews.com/sports/nfl/jets-robert-saleh-fired-rcna174473 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref> Wen dem biz am about am on ''The Pat McAfee Show'', de quarterback firmly deny accusations say he get a role insyd Saleh ein termination.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=October 9, 2024 |title=Aaron Rodgers on accusations he wanted Jets coach Robert Saleh fired: 'Patently false' |url=https://www.nbcnews.com/sports/nfl/aaron-rodgers-robert-saleh-fired-rcna174701 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref>
Insyd Week 6, de Jets dema first game after Saleh ein termination, Rodgers throw for 294 yards den two touchdowns, wey dey include a 52-yard Hail Mary pass to [[Allen Lazard]] to close out de first half, ein fourth career such pass completion.<ref>{{Cite news|last=Waszak Jr.|first=Dennis|date=October 14, 2024|title=Jets' Aaron Rodgers throws a 52-yard Hail Mary to Allen Lazard to end the first half vs. Bills|url=https://apnews.com/article/jets-rodgers-hail-mary-lazard-49f7dbe5569749c60e9878cc7ea5d606|access-date=October 20, 2024|work=AP News}}</ref> However, anoda interception on de Jets dema final drive doomed dem as dem loose 23–20 to de Buffalo Bills.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=After 'weird' week, Rodgers and Jets can't overcome mistakes and missed chances in loss to Bills|url=https://apnews.com/article/jets-bills-rodgers-ulbrich-0a14afca36a55c2cbb0f9aa35c3a7855|access-date=October 15, 2024|work=AP News|date=October 14, 2024}}</ref> Following de loss, se Jets trade for [[Davante Adams]], plus whom Rodgers previously combine for over 600 receptions den 68 touchdowns during dema eight seasons togeda insyd Green Bay.<ref>{{Cite news|last1=Cimini|first1=Rich|last2=Fowler|first2=Jeremy|last3=Walder|first3=Seth|last4=Reid|first4=Jordan|last5=Gutierrez|first5=Paul|last6=Karabell|first6=Eric|date=October 15, 2024|title=How Davante Adams affects the Jets, Aaron Rodgers' playoff hopes|url=https://www.espn.com/nfl/story/_/id/41809450/new-york-jets-future-davante-adams-trade-las-vegas-raiders|access-date=October 15, 2024|work=ESPN}}</ref> However, de Jets continue to struggle, as Rodgers throw two interceptions wey he lead de offense to zero points insyd de second half of dema Week 7 matchup against de Steelers, losing dema fourth consecutive game.<ref>{{cite news|last=Cimini|first=Rich|title=Aaron Rodgers, Davante Adams reunion fails to spark Jets|url=https://www.espn.com/nfl/story/_/id/41917779/aaron-rodgers-davante-adams-reunion-fails-spark-jets-drop-4th-straight-vs-steelers|access-date=October 21, 2024|work=ESPN|date=October 21, 2024}}</ref> After a loss to de Patriots, Rodgers help de Jets snap dema five-game losing streak insyd Week 9 against de Houston Texans, throwing for 179 yards den three touchdowns insyd de second half after he be shutout insyd de first half as de Jets win 21–13.<ref>{{cite news|last=Fried|first=Justin|title=Aaron Rodgers saves NY Jets' season with vintage performance amidst fan revolt|url=https://thejetpress.com/aaron-rodgers-saves-ny-jets-season-vintage-performance-fan-revolt-01jbjvhkx6k7|access-date=October 31, 2024|work=The Jet Press|date=October 31, 2024}}</ref>
Insyd Week 11 against de Colts, Rodgers throw two touchdowns wey he lead de Jets to a season-high insyd points, buh na dem fall short insyd a 28–27 loss, dropping to 3–7.<ref>{{Cite web |last=Miller |first=Colin |date=November 19, 2024 |title=Jets' Aaron Rodgers Not a Fan of Reporter's 'Buzzword' After Another Loss |url=https://athlonsports.com/nfl/new-york-jets-aaron-rodgers-familiar-response-loss-indianapolis-colts-recap-shock-buzz-word |access-date=November 26, 2024 |website=Athlon Sports |language=en}}</ref> During dema bye week, na dem reveal say na Rodgers dey play thru hamstring, knee, den ankle injuries buh na he refuse to get scans done in fear of how severe dem go be.<ref>{{Cite web |last=McCarriston |first=Shanna |date=November 24, 2024 |title=Jets' Aaron Rodgers played through multiple injuries this season, resisted getting scans, per report |url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-played-through-multiple-injuries-this-season-resisted-getting-scans-per-report/ |access-date=November 26, 2024 |website=CBSSports.com |language=en}}</ref> Despite dis, he remain de starter following de bye week.<ref>{{cite news|last=Cimini|first=Rich|title=Jeff Ulbrich says Aaron Rodgers to remain Jets' starting QB|url=https://www.espn.com/nfl/story/_/id/42738131/jeff-ulbrich-says-aaron-rodgers-remain-jets-starting-qb|access-date=December 9, 2024|work=ESPN|date=December 2, 2024}}</ref> Entering Week 14, Rodgers hold an NFL-record 34-game drought widout a 300-yard passing performance, wich he break on December 8 against de Dolphins.<ref>{{cite news|last=Benjamin|first=Cody|title=Jets' Aaron Rodgers halts historic drought of 300-yard passing games in Week 14 loss to Dolphins|url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-halts-historic-drought-of-300-yard-passing-games-in-week-14-loss-to-dolphins/|access-date=December 9, 2024|work=CBS Sports|date=December 8, 2024}}</ref> Despite recording ein first 300-yard game insyd three years, de Jets fall 32–26 insyd overtime, eliminating dem from playoff contention.<ref>{{cite news|last=Cimini|first=Rich|title=Jets collapse again, extend postseason drought to 14 seasons|url=https://www.espn.com/nfl/story/_/id/42862200/jets-collapse-again-extend-postseason-drought-14-seasons|access-date=December 9, 2024|work=ESPN|date=December 8, 2024}}</ref> On January 5, 2025, Rodgers plete ein 500th touchdown pass to [[Tyler Conklin]] at MetLife Stadium against de Dolphins, becoming de fifth quarterback insyd NFL history plus 500 touchdown passes.<ref>{{cite news|last=Cimini|first=Rich|title=Jets QB Aaron Rodgers joins prestigious 500 touchdown club|url=https://www.espn.com/nfl/story/_/id/43300286/jets-qb-aaron-rodgers-joins-prestigious-500-touchdown-club|access-date=January 5, 2025|work=ESPN|date=January 5, 2025}}</ref> He fini de final game of de season plus 274 yards, a season-high four touchdowns, den an interception as de Jets win 32–20, finishing plus a record of 5–12.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=Rodgers throws a season-high 4 touchdown passes in possible final game as Jets top Dolphins 32–20|url=https://apnews.com/article/dolphins-jets-score-rodgers-8013b4de0ea591a84d721f5c4dd17111|access-date=January 5, 2025|work=Associated Press|date=January 5, 2025}}</ref> He fini de 2024 season plus 3,897 yards, 28 touchdowns, den 11 interceptions.<ref>{{Cite web |title=Aaron Rodgers 2024 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2024/ |access-date=January 15, 2025 |website=[[Pro Football Reference]] |language=en}}</ref>
On February 13, 2025, na de Jets announce dema intention to part ways plus Rodgers after two seasons.<ref>{{Cite web |last=Allen |first=Eric |date=February 13, 2025 |title=Jets to move on from Aaron Rodgers |url=https://www.newyorkjets.com/news/jets-moving-on-from-aaron-rodgers |access-date=February 13, 2025 |website=NewYorkJets.com |language=en-US}}</ref> Na Rodgers be released as a post-June 1 designation, allowing de Jets to split ein salary cap charges ($49 million) over two years. De Jets therefore keep am on de roster til March 12, de start of de 2025 NFL year, wen na dem officially released am.<ref>{{cite web |last=Cimini |first=Rich |date=February 13, 2025 |title=Jets announce split with Aaron Rodgers, wish him success |url=https://www.espn.com/nfl/story/_/id/43826969/jets-announce-split-aaron-rodgers-wish-success |accessdate=February 25, 2025}}</ref>
=== Pittsburgh Steelers ===
[[File:McCormickRodgersFrazier.jpg|thumb|Rodgers (middle) at Steelers training camp insyd 2025]]
==== 2025 ====
On June 6, 2025, de Pittsburgh Steelers agree to terms plus Rodgers on a one-year deal.<ref>{{Cite web |last=Varley |first=Teresa |date=June 5, 2025 |title=Steelers agree to terms with Rodgers |url=https://www.steelers.com/news/steelers-agree-to-terms-with-rodgers |access-date=June 6, 2025 |website=Steelers.com |language=en-US}}</ref> De following day, he officially sign ein one-year, $13.65 million contract, wich dey include $10 million guaranteed wey fi be worth up to $19.5 million plus incentives.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Sources: QB Rodgers with Steelers, signs one-year, $13.65M deal|url=https://www.espn.com/nfl/story/_/id/45470407/sources-qb-rodgers-steelers-signs-one-year-1365m-deal|access-date=June 7, 2025|work=ESPN|date=June 7, 2025}}</ref> De team subsequently announce say Rodgers go continue to wear ein number 8 from Cal den de Jets, since ein number 12 plus de Packers unofficially be retired for [[Terry Bradshaw]]; neither de Steelers nor Bradshaw sign off on allowing Rodgers to wear number 12.<ref>{{cite web |last1=Goldstein |first1=Jeremy |date=June 7, 2025 |title=Aaron Rodgers suffers early Steelers setback thanks to Terry Bradshaw |url=https://www.themirror.com/sport/american-football/aaron-rodgers-terry-bradshaw-steelers-1194927 |website=[[Daily Mirror]]}}</ref>
Na Rodgers ein months-long courtship den subsequent signing be met plus mixed to negative reaction among Steeler fans as well as ex-Steelers Bradshaw den [[Ryan Clark (American football)|Ryan Clark]] secof ein polarizing attitude,<ref>{{cite web |last=Sayer |first=Ricky |date=June 5, 2025 |title=Aaron Rodgers signing brings mixed reactions from Steelers fans |url=https://www.cbsnews.com/pittsburgh/news/steelers-fans-aaron-rodgers-signing-reaction/ |access-date=June 10, 2025 |work=CBS News}}</ref><ref>{{cite web |last=Gamba-Ellis |first=Thomas |date=June 6, 2025 |title=Aaron Rodgers signing is 'worst-case scenario' for Steelers: Ryan Clark |url=https://nypost.com/2025/06/06/sports/aaron-rodgers-signing-is-worst-case-scenario-for-the-steelers-ryan-clark/ |access-date=June 10, 2025 |work=New York Post}}</ref><ref>{{cite web |last=Baca |first=Michael |date=May 28, 2025 |title=Steelers legend Terry Bradshaw calls Pittsburgh's interest in QB Aaron Rodgers 'a joke' |url=https://www.nfl.com/news/steelers-legend-terry-bradshaw-calls-pittsburgh-interest-aaron-rodgers-a-joke |access-date=September 25, 2025 |website=NFL.com}}</ref> wey sam fans feeling like he no fit Western Pennsylvania dema traditional blue collar base.<ref>{{cite web |last1=Cioppa |first1=Jordan |date=June 5, 2025 |title=Steelers fans react to Aaron Rodgers coming to Pittsburgh |url=https://www.wtae.com/article/steelers-fans-reaction-aaron-rodgers-pittsburgh-quarterback/64985539 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> Sam speculate say Rodgers fi be swayed to sign plus de Steelers by ein friendship plus former Indianapolis Colts punter den Pittsburgh-area native [[Pat McAfee]].<ref>{{cite web |last1=Ciampi |first1=Raquel |date=April 17, 2025 |title=Aaron Rodgers talks sneaking into Pittsburgh for first visit with Steelers on McAfee Show |url=https://www.wtae.com/article/steelers-aaron-rodgers-mcafee-show/64514048 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> On June 23, 2025, Rodgers flow McAfee on ein show say he go likely retire after de 2025 season.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Steelers' Aaron Rodgers 'pretty sure' this will be final season|url=https://www.espn.com/nfl/story/_/id/45575766/steelers-aaron-rodgers-pretty-sure-final-season|access-date=June 29, 2025|work=ESPN|date=June 29, 2025}}</ref>
On September 7, Rodgers make ein Steelers debut against ein former team, de New York Jets. During ein first outing plus Pittsburgh, he plete 22 of 30 pass attempts for 244 yards den four touchdowns while committing no turnovers. De game end plus a 34–32 Steelers victory.<ref>{{cite web |last=Maaddi |first=Rob |date=September 9, 2025 |title=Aaron Rodgers showed he has plenty left to help the Steelers |url=https://sports.yahoo.com/article/aaron-rodgers-showed-plenty-left-191014645.html |access-date=September 25, 2025 |website=Yahoo! Sports}}</ref> Later dat month, Rodgers surpasse [[Brett Favre]], ein former Packers teammate, insyd career touchdown passes wen he throw a scoring pass to [[D.K. Metcalf]] insyd a win over de New England Patriots. Dis move Rodgers into fourth place for most career touchdown passes (509), only behind [[Peyton Manning]], [[Drew Brees]] den [[Tom Brady]].<ref name="u989">{{cite web |last=Gordon |first=Grant |date=September 21, 2025 |title=Aaron Rodgers moves past former teammate Brett Favre with 509th career touchdown pass |url=https://www.nfl.com/news/aaron-rodgers-moves-past-brett-favre-509-career-touchdown-pass |access-date=October 14, 2025 |website=NFL.com}}</ref>
During de second quarter of de Steelers dema Week 11 victory over de Cincinnati Bengals, Rodgers suffer a small fracture insyd ein left wrist.<ref>{{cite news|last=DeArdo|first=Bryan|url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-steelers-qb-hand-injury/|title=Aaron Rodgers has small fracture in wrist, Steelers QB reportedly pushing to play this week|website=[[CBSSports.com]]|publisher=[[CBS Sports]]|date=November 17, 2025|access-date=November 30, 2025}}</ref> De injury prevent am from playing de following game against de Bears, wich [[Mason Rudolph (American football)|Mason Rudolph]] start insyd ein place.<ref>{{cite news|last=Cohen|first=Jay|url=https://www.kare11.com/article/syndication/associatedpress/steelers-qb-aaron-rodgers-misses-game-against-bears-because-of-a-broken-left-wrist/616-e94370ae-9cda-4db9-891f-56092ba44dd1|title=With Aaron Rodgers sidelined, Mason Rudolph and the Steelers fall short in Chicago|agency=[[Associated Press|AP]]|publisher=[[KARE (TV)]]|date=November 23, 2025|access-date=November 30, 2025}}</ref> Rodgers return for Week 13 insyd Buffalo.<ref>{{cite news|last=Guise|first=Michael|url=https://www.cbsnews.com/pittsburgh/news/is-aaron-rodgers-playing-steelers-bills-nfl-news/|title=Is Aaron Rodgers playing against the Bills? Steelers give update on starting quarterback.|publisher=[[CBS News]]|date=November 28, 2025|access-date=November 30, 2025}}</ref>
Rodgers lead de Steelers to an AFC North title den a playoff berth following a Week 18 win over de Baltimore Ravens.<ref>{{Cite web |last=Pryor |first=Brooke |date=January 5, 2026 |title=Steelers take AFC North as Ravens FG sails wide |url=https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-url=https://web.archive.org/web/20260105045214/https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-date=January 5, 2026 |access-date=January 5, 2026 |website=ESPN.com |language=en}}</ref> He fini de 2025 season throwing for 3,322 yards, 24 touchdowns, den seven interceptions, den rushing for a touchdown.<ref>{{Cite web |title=Aaron Rodgers 2025 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2025/ |access-date=January 8, 2026 |website=Pro-Football-Reference.com |language=en}}</ref>
Insyd de Steelers dema playoff loss to de Houston Texans, Rodgers play poorly, completing 17 passes out of 33 attempts for 146 yards, getting sacked 4 times for 36 yards, den throwing a pick-six.<ref>{{cite news|last1=Heyen|first1=Billy|title=Texans defense made Steelers' Aaron Rodgers play the worst playoff game by a QB in a dozen years|url=https://sports.yahoo.com/articles/texans-defense-made-steelers-aaron-131529479.html?guccounter=1|access-date=January 13, 2026|work=Yahoo Sports|date=January 13, 2026}}</ref> Rodgers sanso fumble on one of de sacks, wich dem return for a Texans touchdown.<ref>{{cite news|last1=Brinkerhoff|first1=Nick|title=Aaron Rodgers crushed on strip-sack, leads to critical Texans score|url=https://www.usatoday.com/story/sports/nfl/playoffs/2026/01/12/aaron-rodgers-strip-sack-crushed-texans-packers/88153423007/|access-date=January 13, 2026|work=USA Today|date=January 12, 2026}}</ref>
==== 2026 ====
[[File:RodgersandMcCarthy.jpg|thumb|Rodgers plus [[Mike McCarthy]] during training camp insyd 2026]]
On May 16, 2026, Rodgers return to de Steelers for ein 22nd season, signing a one-year deal worth up to $25 million.<ref>{{Cite web |last=Pryor |first=Brooke |date=May 16, 2026 |title=Sources: Aaron Rodgers to sign 1-year deal with Steelers |url=https://www.espn.com/nfl/story/_/id/48791130/aaron-rodgers-sign-1-year-deal-steelers |access-date=May 16, 2026 |website=ESPN}}</ref> De signing reunite am plus head coach Mike McCarthy.<ref>{{Cite web |last=Middlehurst-Schwartz |first=Michael |date=May 16, 2026 |title=Aaron Rodgers to re-sign with Steelers, reunite with coach Mike McCarthy |url=https://www.usatoday.com/story/sports/nfl/steelers/2026/05/16/aaron-rodgers-contract-pittsburgh-steelers-mike-mccarthy/88698339007/ |access-date=May 16, 2026 |website=USA Today}}</ref> Rodgers later announce say de 2026 season go be ein final season insyd de NFL.<ref>{{Cite web |last=Ulrich |first=Logan |date=2026-05-20 |title=Aaron Rodgers Says 2026 Will Be His Final Season |url=https://nfltraderumors.co/aaron-rodgers-says-2026-will-be-his-final-season/ |access-date=2026-05-20 |website=NFLTradeRumors.co |language=en-US}}</ref>
== Touchdown celebration ==
Since becoming an NFL starter insyd 2008, Rodgers cam be known for ein unique touchdown celebration, wich he den ein teammates dub de "Championship Belt." After a scoring play, Rodgers dey celebrate by making a motion as if he dey put an invisible championship belt on around ein waist.<ref>{{Cite web |last=Sayler |first=Ryan |date=January 10, 2011 |title=The Evolution of Aaron Rodgers' Weird "Belt Dance" |url=http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120416003749/http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |archive-date=April 16, 2012 |access-date=May 10, 2012 |website=Real Fantasy}}</ref><ref>{{Cite web |date=January 16, 2011 |title=Aaron Rodgers | Championship Belt Celebration |url=http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |url-status=live |archive-url=https://web.archive.org/web/20120322064628/http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |archive-date=March 22, 2012 |access-date=May 10, 2012 |website=SportsGrid}}</ref> Teammate Greg Jennings say of de celebration: "''It's just something fun that he does. We get excited when we see it cause we know that he's made a play or we've made a play as offense."''<ref name="youtube1">{{Cite web |date=January 25, 2011 |title=Aaron Rodgers Championship Belt Special on ESPN |url=https://www.youtube.com/watch?v=mcwa2EvQ61Y |url-status=live |archive-url=https://web.archive.org/web/20111225110056/http://www.youtube.com/watch?v=mcwa2EvQ61Y |archive-date=December 25, 2011 |access-date=May 10, 2012 |publisher=ESPN |via=YouTube}}</ref> De gesture draw de praise of WWE wrestler Triple H wey e cam be common for Green Bay fans to mimic during games.<ref>{{Cite web |last=Anderson |first=Kyle |date=February 7, 2011 |title=Aaron Rodgers Wins Super Bowl MVP, Celebrates With Championship Belt |url=http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |url-status=dead |archive-url=https://web.archive.org/web/20191206042749/http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |archive-date=December 6, 2019 |access-date=December 6, 2019 |publisher=MTV}}</ref> Na he sanso celebrate by doing de shoryuken, a jumping uppercut move from de ''Street Fighter'' series.<ref>{{Cite web |last=Kunnath |first=Avinash |date=February 17, 2011 |title=Aaron Rodgers Best Touchdown Celebration: Championship Belt, Super Mario Jump, Or Shoryuken? |url=https://bayarea.sbnation.com/california-golden-bears/2011/2/17/1998750/aaron-rodgers-best-touchdown-celebration-championship-belt-super-mario-jump-shoryuken |access-date=January 19, 2023 |website=SB Nation Bay Area |language=en}}</ref>
== Alternative medicine advocacy ==
Rodgers be vocal about ein use of alternative medicine,<ref>{{Cite web |last=Mole |first=Beth |date=February 23, 2022 |title=Aaron Rodgers' go-to cleanse could involve oily enemas, bloodletting, vomiting |url=https://arstechnica.com/science/2022/02/everything-you-didnt-need-to-know-about-aaron-rodgers-oily-enema-cleanse/ |access-date=August 8, 2022 |website=[[Ars Technica]] |language=en}}</ref><ref>{{Cite web |last=McLaughlin |first=Kelly |date=November 3, 2021 |title=Aaron Rodgers reportedly petitioned the NFL to have an alternative treatment count as being vaccinated against COVID-19 |url=https://sports.yahoo.com/aaron-rodgers-reportedly-petitioned-nfl-163711629.html |access-date=August 8, 2022 |website=[[Yahoo! Sports]] |language=en}}</ref> wey he be a proponent of de legalization of psychedelic drugs.<ref>{{cite magazine|last=Chavkin|first=Daniel|date=June 23, 2023|title=Aaron Rodgers Touts Legalization of Psychedelics at Conference|url=https://www.si.com/extra-mustard/2023/06/23/new-york-jets-aaron-rodgers-touts-psychedelics-legalization|access-date=June 23, 2023|magazine=[[Sports Illustrated]]|language=en}}</ref> He reveal insyd 2022 say na he previously make offseason trips to Peru, wer he consume ayahuasca.<ref>{{Cite web |last=Demovsky |first=Rob |date=August 8, 2022 |title=NFL says Green Bay Packers QB Aaron Rodgers' use of ayahuasca didn't violate drug policy |url=https://www.espn.com/nfl/story/_/id/34371733/nfl-says-green-bay-packers-qb-aaron-rodgers-use-ayahuasca-violate-drug-policy |access-date=August 8, 2022 |website=[[ESPN.com]] |language=en |agency=[[Associated Press]]}}</ref>
=== Views on COVID-19 ===
Rodgers be one of de most prominent American athletes to choose he no go get vaccinated against de [[COVID-19]] virus,<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref> wey na he be critical of de NFL dema health den safety protocols during de COVID-19 pandemic.<ref>{{Cite web |last=Wood |first=Ryan |date=November 5, 2021 |title=Packers quarterback Aaron Rodgers blasts 'woke mob' over COVID-19 news on Pat McAfee show, rips NFL's 'draconian' protocols |url=https://www.jsonline.com/story/sports/nfl/packers/2021/11/05/packers-quarterback-aaron-rodgers-talks-covid-19-sounds-off-nfl-protocols/6280790001/ |access-date=January 5, 2024 |website=[[Milwaukee Journal Sentinel]] |language=en}}</ref> Ein stances on de COVID-19 vaccine be criticized by scientists, health officials, den sam former players den commentators, secof concerns say na Rodgers dey spread vaccine misinformation wey he dey potentially risk de health of ein teammates.<ref>{{Cite web |last1=Belson |first1=Ken |last2=Anthes |first2=Emily |date=November 8, 2021 |title=Scientists Fight a New Source of Vaccine Misinformation: Aaron Rodgers |url=https://www.nytimes.com/2021/11/08/sports/football/aaron-rodgers-vaccine.html |access-date=January 5, 2024 |work=[[The New York Times]] |language=en}}</ref>
During de NFL season, Rodgers frequently appear on ''The Pat McAfee Show''.<ref>{{Cite magazine|last=Hladik|first=Matt|date=January 26, 2021|title=Aaron Rodgers Explains Why He Appears on the Pat McAfee Show|url=https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|url-status=live|archive-url=https://web.archive.org/web/20210924043905/https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|archive-date=September 24, 2021|access-date=December 1, 2021|magazine=The Spun by [[Sports Illustrated]]}}</ref> One such interview insyd 2021 make headlines after Rodgers make several false den misleading statements about COVID-19,<ref name="Rosenberg">{{Cite magazine|last=Rosenberg|first=Michael|date=November 5, 2021|title=The Problem Is Aaron Rodgers Thinks He Has All the Answers|url=https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|url-status=live|archive-url=https://web.archive.org/web/20211108000052/https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|archive-date=November 8, 2021|access-date=November 8, 2021|magazine=[[Sports Illustrated]]|language=en-us}}</ref><ref>{{Cite news|last=Kornfield|first=Meryl|date=November 5, 2021|title=Aaron Rodgers said he did the research on covid vaccines. Here's how he was wrong, according to experts|url=https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|url-status=live|archive-url=https://web.archive.org/web/20211109160437/https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|archive-date=November 9, 2021|access-date=November 15, 2021|newspaper=[[The Washington Post]]}}</ref> wey dey imply say na unvaccinated people no be de group most affected by de pandemic den dat [[ivermectin]] be beneficial for people plus COVID-19.<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |last=Schad |first=Tom |date=November 5, 2021 |title=Fact check: 6 of Aaron Rodgers' false and misleading claims about COVID-19 vaccine |url=https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |url-status=live |archive-url=https://web.archive.org/web/20211108002751/https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=[[USA Today]] |language=en-US}}</ref><ref>{{Cite web |last=Sutelan |first=Edward |date=November 14, 2021 |title=Fact-checking Aaron Rodgers' bizarre COVID beliefs and 'woke mob' claim made on Pat McAfee Show |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |url-status=live |archive-url=https://web.archive.org/web/20211108035450/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=Sporting News |language=en}}</ref><ref>{{Cite web |last=Reinwald |first=Caroline |date=November 6, 2021 |title=Aaron Rodgers vaccine fact check: Doctor responds to quarterback's concerns |url=https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |url-status=live |archive-url=https://web.archive.org/web/20211108035459/https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |archive-date=November 8, 2021 |access-date=November 8, 2021 |publisher=[[WISN-TV]] |language=en}}</ref> Dese den similar claims lead sam reporters to describe Rodgers as a conspiracy theorist.<ref name="Rosenberg" /><ref>{{Cite web |last=Jones |first=Ja'han |date=November 9, 2021 |title=Aaron Rodgers should keep Martin Luther King Jr. out of his foolish Covid claims |url=https://www.msnbc.com/the-reidout/reidout-blog/aaron-rodgers-martin-luther-king-jr-covid-vaccine-rcna4872 |access-date=November 13, 2021 |publisher=MSNBC |language=en}}</ref>
== Political den social commentary ==
Rodgers voice support give [[Robert F. Kennedy Jr.]] den ein presidential campaign of 2024.<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref> Kennedy reportedly include Rodgers on ein "short list" of possible vice presidential running mates, along plus odas, wey dey include [[Jesse Ventura]] den [[Nicole Shanahan]].<ref name=":0">{{Cite news|last=O’Brien|first=Rebecca Davis|date=March 12, 2024|title=Aaron Rodgers and Jesse Ventura Top R.F.K. Jr.'s List for Running Mate|url=https://www.nytimes.com/2024/03/12/us/politics/rfk-jr-aaron-rodgers-jesse-ventura.html|access-date=March 13, 2024|work=The New York Times|language=en-US|issn=0362-4331}}</ref><ref name="OBrienMar172024">{{Cite news|last=O'Brien|first=Rebecca Davis|date=March 17, 2024|title=Nicole Shanahan Emerges as a Top Candidate to Be R.F.K. Jr.'s Running Mate|url=https://www.nytimes.com/2024/03/17/us/politics/nicole-shanahan-rfk-jr-running-mate.html|access-date=May 30, 2024|work=[[The New York Times]]}}</ref>
On [[Adam Breneman]] ein podcast insyd 2022, former Packers backup quarterback [[DeShone Kizer]] talk say Rodgers express interest insyd 9/11 conspiracy theories at one of de first meetings between de two quarterbacks. Kizer describe dema discussion of conspiracy theories as "a real thought experiment".<ref name="nypost-2022-11-29">{{cite news|last1=Hendricks|first1=Jaclyn|date=November 29, 2022|title=DeShone Kizer: Aaron Rodgers pressed me on 9/11 conspiracies|url=https://nypost.com/2022/11/29/deshone-kizer-aaron-rodgers-pressed-me-on-9-11-conspiracies/|access-date=January 8, 2023|work=[[The New York Post]]}}</ref><ref name="si-2022-11-29">{{cite magazine|last1=Salvador|first1=Joseph|date=November 29, 2022|title=Former Packers QB Says Aaron Rodgers Once Asked Him Whether He Believes in 9/11|url=https://www.si.com/nfl/2022/11/29/packers-deshone-kizer-aaron-rodgers-once-asked-him-if-he-believes-in-9-11-conspiracy-theories|access-date=January 8, 2022|magazine=[[Sports Illustrated]]|language=en-us}}</ref> Rodgers sanso promote de Tartarian architecture conspiracy theory.<ref name="tart">{{Cite web |last=Silverman |first=Robert |date=March 8, 2024 |title=Aaron Rodgers Dabbles in the 'QAnon of Architecture' |url=https://www.yahoo.com/entertainment/aaron-rodgers-dabbles-qanon-architecture-234934271.html |access-date=January 15, 2025 |website=Yahoo! Entertainment}}</ref>
Insyd a January 2024 appearance on ''The Pat McAfee Show'', Rodgers, widout evidence, imply say na comedian [[Jimmy Kimmel]] be an acquaintance of disgraced financier den sex offender [[Jeffrey Epstein]], den dat Kimmel ein name go possibly appear in soon to be released court documents listing Epstein ein associates.<ref>{{Cite web |last=Simonetti |first=Isabella |date=January 9, 2024 |title=ESPN's Pat McAfee Said He Doesn't 'Take Back Anything' After Skewering Colleague |url=https://www.wsj.com/business/media/pat-mcafee-show-espn-aaron-rodgers-ede1d63b |access-date=January 9, 2024 |website=WSJ |language=en-US}}</ref> Kimmel deny de allegations den threatened to sue Rodgers for defamation if he repeat de claim.<ref>{{Cite web |last=Kimmel |first=Jimmy |author-link=Jimmy Kimmel |date=January 2, 2024 |title=X Post |url=https://twitter.com/jimmykimmel/status/1742324477323833546 |access-date=January 9, 2024 |website=X}}</ref> Insyd a follow-up appearance on McAfee ein show de following week, Rodgers state say: "''I'm glad that Jimmy is not on the list. I really am. I don't think he's the P-word [pedophile]."''<ref>{{Cite web |last=France |first=Lisa |date=January 9, 2024 |title=Aaron Rodgers blames media in response to Jimmy Kimmel's comments about him |url=https://www.cnn.com/2024/01/09/entertainment/jimmy-kimmel-aaron-rodgers-monologue/index.html |access-date=January 9, 2024 |website=CNN |language=en}}</ref>
During a February 2024 appearance on de conspiracy-focused ''Look Into It'' podcast wey [[Eddie Bravo]] host, Rodgers espouse numerous conspiracy theories on medicine, immigration, den John F. Kennedy.<ref>{{Cite web |last=Keeley |first=Sean |date=March 14, 2024 |title=Here's all the dumb shit Aaron Rodgers recently said on a conspiracy theory podcast |url=https://awfulannouncing.com/nfl/aaron-rodgers-conspiracy-theory-podcast-tartaria-immigrants-trump-biden.html |access-date=April 17, 2024 |website=Awful Announcing |language=en}}</ref> Na ein claims include say na dem create [[HIV/AIDS|AIDS]] den COVID by de government for de sake of pharmaceutical industry profits (sanso spy discredited HIV/AIDS origins theories den Operation Denver).<ref>{{Cite web |last=Buzinski |first=Jim |date=April 17, 2024 |title=Aaron Rodgers says AIDS was created by the U.S. government in the 1980s |url=https://www.outsports.com/2024/4/17/24091797/aaron-rodgers-says-aids-was-created-by-the-u-s-government-in-the-1980s/ |access-date=April 17, 2024 |website=outsports.com |language=en}}</ref>
Insyd 2024, CNN reporter [[Pamela Brown (journalist)|Pamela Brown]] report say na Rodgers insyd 2013 share false conspiracy theories about de Sandy Hook massacre, wey dey claim say na de attack be an "inside job" perpetrated by de government. Na CNN simultaneously report an allegation by an anonymous source say na Rodgers for several years prior say "''Sandy Hook never happened....All those children never existed. They were all actors.''"<ref name="SandyHook1">{{Cite web |last1=Brown |first1=Pamela |last2=Tapper |first2=Jake |date=March 14, 2024 |title=RFK Jr.'s VP prospect Aaron Rodgers has shared false Sandy Hook conspiracy theories in private conversations |url=https://www.cnn.com/2024/03/13/politics/aaron-rodgers-sandy-hook-conspiracy-theories/index.html |access-date=March 17, 2024 |website=CNN.com |language=en}}</ref> In response, Rodgers say, "''I am not and have never been of the opinion that the events did not take place" but did not say whether he had ever believed the Sandy Hook massacre was an "inside job.''"<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref>
== Personal life ==
=== Family den relationships ===
Rodgers get two bros; de younger, [[Jordan Rodgers|Jordan]], play quarterback at Vanderbilt University wey he get a brief NFL career plus de Jacksonville Jaguars den Tampa Bay Buccaneers.<ref>{{Cite web |title=Jordan Rodgers Vanderbilt Bio |url=http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-url=https://web.archive.org/web/20111126203900/http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-date=November 26, 2011 |access-date=June 19, 2017 |website=VUCommodores.com}}</ref><ref>{{Cite web |last=Imig |first=Paul |date=April 27, 2013 |title=Rodgers' younger brother Jordan signs with Jacksonville |url=http://www.foxsportswisconsin.com/fox-sports-networks/story/Rodgers-brother-Jordan-signs-with-Jackso?blockID=896957 |url-status=live |archive-url=https://web.archive.org/web/20220310191855/https://www.foxsports.com/wisconsin/story/rodgers-younger-brother-jordan-signs-with-jacksonville-042713 |archive-date=March 10, 2022 |access-date=June 19, 2017 |work=Fox Sports}}</ref><ref>{{Cite web |last=Eisenband |first=Jeff |date=October 8, 2018 |title=Jordan Rodgers Remembers His 'Good Little' Football Career |url=http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |url-status=dead |archive-url=https://web.archive.org/web/20190308081753/http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |archive-date=March 8, 2019 |access-date=March 7, 2019 |website=ThePostGame.com}}</ref> Although na dem raise Rodgers den ein bros Christian, insyd an interview insyd 2017 he state say he no longer affiliate einself plus any organized religion.<ref>{{Cite web |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=Aaron Rodgers, unmasked |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |url-status=live |archive-url=https://web.archive.org/web/20211114183324/http://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |archive-date=November 14, 2021 |access-date=March 7, 2019 |website=[[ESPN.com]]}}</ref>
Rodgers be de godfather to Cade Cobb, de second son of ein long-time NFL teammate, [[Randall Cobb (American football)|Randall Cobb]].<ref>{{cite web |last=Demovsky |first=Rob |date=October 28, 2021 |title=The 'beautiful, chaotic mess' that brought Randall Cobb's family back to Green Bay |url=https://www.espn.com/blog/green-bay-packers/post/_/id/51394/the-beautiful-chaotic-mess-that-brought-randall-cobbs-family-back-to-green-bay |accessdate=September 1, 2023 |work=[[ESPN.com]]}}</ref>
Na Rodgers dey insyd a relationship plus actress [[Olivia Munn]] from 2014 to 2017 den plus former professional racing driver [[Danica Patrick]] from 2018 to 2020.<ref name="peoplemag">{{Cite web |last=Mizoguchi |first=Karen |date=April 7, 2017 |title=Olivia Munn and Aaron Rodgers Break Up |url=http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |url-status=live |archive-url=https://web.archive.org/web/20170408081606/http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |archive-date=April 8, 2017 |access-date=April 7, 2017 |website=[[People (magazine)|People]]}}</ref><ref name="AP">{{Cite web |date=January 15, 2018 |title=Danica Patrick finds love away from track with Aaron Rodgers |url=https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |url-status=live |archive-url=https://web.archive.org/web/20180219090141/https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |archive-date=February 19, 2018 |access-date=February 18, 2018 |work=[[Associated Press News]]}}</ref><ref>{{Cite web |date=July 16, 2020 |title=Danica, Rodgers call off two-year relationship |url=https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |url-status=live |archive-url=https://web.archive.org/web/20210203195658/https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |archive-date=February 3, 2021 |access-date=February 7, 2021 |website=[[ESPN.com]]}}</ref> He start dey date actress [[Shailene Woodley]] insyd de second half of 2020.<ref>{{Cite web |last=Weinberg |first=Lindsay |date=February 2, 2021 |title=Inside Shailene Woodley and Aaron Rodgers' "Private and Low Key" Romance |url=https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |url-status=live |archive-url=https://web.archive.org/web/20210207071957/https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |archive-date=February 7, 2021 |access-date=February 7, 2021 |website=[[E!]]}}</ref> Insyd an appearance on ''The Tonight Show Starring Jimmy Fallon'' insyd 2021, Woodley confirm say na she be engaged to Rodgers.<ref>{{Cite web |last=Kubota |first=Samantha |date=February 22, 2021 |title=Shailene Woodley engaged to Aaron Rodgers, says she's 'still learning' about football |url=https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |url-status=live |archive-url=https://web.archive.org/web/20210223055422/https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |archive-date=February 23, 2021 |access-date=February 23, 2021 |website=[[Today.com]]}}</ref> On February 16, 2022, na Rodgers den Woodley call off dema engagement.<ref>{{Cite web |last=Wang |first=Jessica |date=February 16, 2022 |title=Shailene Woodley and Aaron Rodgers split, call off engagement |url=https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |url-status=live |archive-url=https://web.archive.org/web/20220409131033/https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |archive-date=April 9, 2022 |access-date=February 16, 2022 |website=[[Yahoo!]] |language=en-US}}</ref>
Insyd December 2024, na Rodgers state say na he dey date a woman dem name Brittani. Insyd June 2025, Rodgers state say dem marry a few months prior.<ref>{{Cite web |last=Comiter |first=Jordana |date=June 10, 2025 |title=Who Is Aaron Rodgers' Wife, Brittani? All About Her Private Relationship with the NFL Quarterback |url=https://people.com/who-is-brittani-aaron-rodgers-11718036 |access-date=June 22, 2025 |website=People.com |language=en}}</ref><ref>{{cite web |last=Hooks |first=Kalan |date=June 10, 2025 |title=Aaron Rodgers announces marriage at Steelers minicamp |url=https://www.espn.com/nfl/story/_/id/45481936/aaron-rodgers-pittsburgh-steelers-announces-marriage |access-date=June 10, 2025 |website=[[ESPN]]}}</ref>
=== Honorary memberships den business ventures ===
Na dem initiate Rodgers as an honorary member of Tau Kappa Epsilon (TKE) on January 5, 2012, at de Sigma-Xi Chapter at St. Norbert College.<ref>{{Cite web |last=Zegers |first=Dan |date=January 6, 2012 |title=MEET FRATERS AARON RODGERS & GRAHAM HARRELL |url=https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |url-status=live |archive-url=https://web.archive.org/web/20221229085550/https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |archive-date=December 29, 2022 |access-date=December 29, 2022 |publisher=Tau Kappa Epsilon}}</ref>
Insyd April 2018, na dem annouce Rodgers as a limited partner insyd de Milwaukee Bucks ownership group, wey dey make am de first active NFL player plus an ownership stake insyd an NBA franchise.<ref>{{Cite web |last=Demovsky |first=Rob |date=April 20, 2018 |title=Aaron Rodgers buys minority stake in Bucks: 'A dream come true' |url=https://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |url-status=live |archive-url=https://web.archive.org/web/20180422052450/http://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |archive-date=April 22, 2018 |access-date=April 22, 2018 |website=[[ESPN.com]]}}</ref> De team later win de NBA Finals insyd 2021.<ref>{{Cite news|last=Deb|first=Sopan|date=July 21, 2021|title=The Milwaukee Bucks Win the N.B.A. Championship|url=https://www.nytimes.com/2021/07/20/sports/basketball/milwaukee-bucks-nba-finals-championship.html|access-date=February 12, 2026|work=The New York Times|language=en-US|issn=0362-4331}}</ref>
== Media appearances ==
Na Rodgers be a longtime spokesperson for State Farm Insurance wey na he frequently feature insyd dema commercials. Insyd de commercials, Rodgers often dey highlight ein "Championship Belt" touchdown celebration, wich State Farm rename as de "Discount Double Check".<ref>{{Cite web |title=State Farm® State of Imitation (Aaron Rodgers) |url=https://www.youtube.com/watch?v=j9Rv7czl9cU |url-status=live |archive-url=https://web.archive.org/web/20121017234148/http://www.youtube.com/watch?v=j9Rv7czl9cU |archive-date=October 17, 2012 |access-date=May 10, 2012 |publisher=State Farm |via=YouTube}}</ref> Rodgers sanso be featured insyd Pizza Hut advertisements,<ref>{{Cite web |last=Rovell |first=Darren |author-link=Darren Rovell |date=September 4, 2012 |title=Pizza Hut uses Aaron Rodgers in new ads |url=https://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |url-status=live |archive-url=https://web.archive.org/web/20161229100812/http://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=[[ESPN.com]]}}</ref> as well as numerous local Wisconsin-based advertisements.<ref name="milcomm">{{Cite web |last=Kirchen |first=Rich |date=August 20, 2015 |title=Aaron Rodgers' commercial work in Wisconsin appears to be dwindling |url=http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |url-status=live |archive-url=https://web.archive.org/web/20151008232237/http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |archive-date=October 8, 2015 |access-date=December 29, 2016 |website=Milwaukee Business Journal}}</ref>
Insyd May 2015, Rodgers appear as a contestant on ''Celebrity Jeopardy!''; he defeat ''Shark Tank'' investor [[Kevin O'Leary]] den astronaut den future United States Senator [[Mark Kelly]], winning $50,000 for ein charity. Insyd April 2021, Rodgers get a two-week stint as guest host on ''Jeopardy!'' from April 5–16.<ref>{{Cite web |last=Demovsky |first=Rob |date=January 12, 2021 |title=Green Bay Packers QB Aaron Rodgers says he'll be a 'Jeopardy!' guest host |url=https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |url-status=live |archive-url=https://web.archive.org/web/20210116152354/https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |archive-date=January 16, 2021 |access-date=January 16, 2021 |publisher=[[ESPN]]}}</ref><ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers sanso make numerous cameo appearances on television, wey dey include insyd a 2013 episode of ''The Office'', a 2019 episode of ''Game of Thrones'', den a 2015 episode of de sketch comedy television series ''Key & Peele''.<ref>{{Cite web |last=Zaldivar |first=Gabe |date=May 10, 2013 |title=Aaron Rodgers Judges Andy Bernard Breakdown on 'The Office' |url=https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |url-status=live |archive-url=https://web.archive.org/web/20210720173445/https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |archive-date=July 20, 2021 |access-date=July 20, 2021 |website=Bleacher Report}}</ref><ref>{{Cite web |date=May 13, 2019 |title=Video NFL star makes surprise cameo on 'Game of Thrones' |url=https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |url-status=live |archive-url=https://web.archive.org/web/20211018165222/https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |archive-date=October 18, 2021 |access-date=October 18, 2021 |website=ABC News |language=en}}</ref><ref>{{Cite web |last=Dubin |first=Jared |date=January 28, 2015 |title=WATCH: Key & Peele, Aaron Rodgers spoof player introductions |url=https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |url-status=live |archive-url=https://web.archive.org/web/20180831104426/https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |archive-date=August 31, 2018 |access-date=August 30, 2018 |website=CBS Sports}}</ref> He sanso tape a cameo as ''Jeopardy!'' host for an episode of ''The Conners''.<ref>{{Cite web |last=Cwik |first=Chris |date=May 8, 2021 |title=Aaron Rodgers guest starring as 'Jeopardy!' host on 'The Conners,' prompting speculation about future |url=https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |url-status=live |archive-url=https://web.archive.org/web/20210508190417/https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |archive-date=May 8, 2021 |access-date=May 8, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd 2021, Rodgers take part insyd ''The Match IV'', wich be de fourth installment insyd de exhibition match play golf series. Na he be paired plus professional golfer [[Bryson DeChambeau]]. De team go up against [[Phil Mickelson]] den Tom Brady.<ref>{{Cite web |last=Wells |first=Adam |date=May 26, 2021 |title=Mickelson, Tom Brady vs. DeChambeau, Aaron Rodgers Set for Capital One's 'The Match' |url=https://bleacherreport.com/articles/10003839-mickelson-tom-brady-vs-dechambeau-aaron-rodgers-set-for-capital-ones-the-match |access-date=May 26, 2021 |website=BleacherReport |publisher=Turner Broadcasting System, Inc.}}</ref> DeChambeau den Rodgers win de match 3 den 2.<ref>{{Cite web |last=VanHaaren |first=Tom |date=July 6, 2021 |title=Bryson DeChambeau, Aaron Rodgers beat Phil Mickelson, Tom Brady in 'The Match' |url=https://www.espn.co.uk/golf/story/_/id/31773982/bryson-dechambeau-aaron-rodgers-beat-phil-mickelson-tom-brady-match |access-date=May 26, 2022 |website=[[ESPN.com]]}}</ref> Rodgers sanso take part insyd de sixth edition of ''The Match'', wer na he team up plus Brady against fellow quarterbacks [[Josh Allen]] den [[Patrick Mahomes]].<ref>{{Cite web |date=April 18, 2022 |title=Tom Brady and Aaron Rodgers to Play Patrick Mahomes and Josh Allen in 'The Match' on June 1 |url=https://www.si.com/golf/news/tom-brady-aaron-rodgers-to-play-patrick-mahomes-josh-allen-in-the-match-june-1 |access-date=May 26, 2022 |website=Morning Read |language=en}}</ref> Rodgers den Brady defeat Mahomes den Allen 1 up.<ref>{{Cite web |last=Hamel |first=Riley |date=June 1, 2022 |title=Aaron Rodgers buries a birdie at the last, teams with Tom Brady to take down Patrick Mahomes, Josh Allen in Capital One's: The Match VI |url=https://golfweek.usatoday.com/lists/tracker-shot-to-shot-updates-of-the-match-vi-at-wynn-las-vegas/ |access-date=June 28, 2022 |website=Golfweek |language=en-US}}</ref>
tu0a7ne17nrobm05xhqjmuenytay111
111290
111286
2026-08-29T20:04:11Z
DaSupremo
9
Created by translating the section "Humanitarian and charitable efforts" from the page "[[:en:Special:Redirect/revision/1369618906|Aaron Rodgers]]"
111290
wikitext
text/x-wiki
'''Aaron Charles Rodgers''' (born December 2, 1983) be an American professional [[American football|football]] quarterback give de Pittsburgh Steelers of de National Football League (NFL). He play college football give de California Golden Bears, setting de school ein record for lowest single-season den career interception rates before he be selected by de Green Bay Packers insyd de first round of de 2005 NFL draft.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{cite web |date=April 23, 2005 |title=Aaron Rodgers Selected by Green Bay |url=https://calbears.com/sports/2005/4/23/207736054 |access-date=September 25, 2025 |website=California Golden Bears Athletics}}</ref> He be regarded as one of de greatest den most talented quarterbacks of all time.<ref name="GOAT"></ref>
After backing up [[Brett Favre]] for de first three years of ein NFL career, Rodgers cam be de Packers dema starting quarterback insyd 2008. Insyd de 2010 season, he lead dem to a victory insyd Super Bowl XLV, earning de Super Bowl MVP. Na dem name am Associated Press Athlete of de Year insyd 2011,<ref name="Male Athlete of the year">{{Cite news|date=December 21, 2011|title=Rodgers named Male Athlete of the Year|work=[[Fox Sports]]|agency=[[Associated Press]]|url=http://msn.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|url-status=dead|access-date=May 13, 2011|archive-url=https://web.archive.org/web/20190718082529/https://www.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|archive-date=July 18, 2019}}</ref> wey na dem vote am league MVP by de Associated Press for de 2011, 2014, 2020, den 2021 NFL seasons. Rodgers be de fifth player to win NFL MVP insyd consecutive seasons, joining [[Peyton Manning]], Favre, [[Joe Montana]] den [[Jim Brown]]. Rodgers lead de NFL six times insyd touchdown-to-interception ratio (2011, 2012, 2014, 2018, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Leaders – Passing Touchdown/Interception Ratio |url=https://www.footballdb.com/leaders/yearly-passing-tdintratio |url-status=live |archive-url=https://web.archive.org/web/20190407190912/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=April 7, 2019 |access-date=April 7, 2019 |website=FootballDB.com}}</ref> six times insyd lowest passing interception percentage (2009, 2014, 2018, 2019, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passing Interception Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-intpct |url-status=live |archive-url=https://web.archive.org/web/20200724202503/https://www.footballdb.com/leaders/yearly-passing-intpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> four times insyd passer rating (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passer Rating Leaders |url=https://www.footballdb.com/leaders/yearly-passing-rating |url-status=live |archive-url=https://web.archive.org/web/20200724211550/https://www.footballdb.com/leaders/yearly-passing-rating |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den four times insyd touchdown passing percentage (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Touchdown Pass Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-tdpct |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.footballdb.com/leaders/yearly-passing-tdpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> three times insyd total touchdowns (2011, 2016, 2020); twice insyd touchdown passes (2016, 2020)<ref>{{Cite web |title=NFL Yearly Touchdown Passes Leaders |url=https://www.footballdb.com/leaders/yearly-passing-touchdowns |url-status=live |archive-url=https://web.archive.org/web/20200724202559/https://www.footballdb.com/leaders/yearly-passing-touchdowns |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den once insyd yards per attempt (2011) den completion percentage (2020).<ref>{{Cite web |title=NFL Yearly Passing Yards per Attempt Leaders |url=https://www.footballdb.com/leaders/yearly-passing-ydsattempt |url-status=live |archive-url=https://web.archive.org/web/20200724202800/https://www.footballdb.com/leaders/yearly-passing-ydsattempt |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> Insyd 2023, na dem trade Rodgers to de New York Jets, wer he spend two seasons plus de team. Released by de Jets after de 2024 season, Rodgers sign plus de Steelers, whom he lead to a division title dat season.
Ranking first on de NFL ein all-time regular-season career passer rating list,<ref>{{Cite web |last=Brizuela |first=James |date=September 16, 2025 |title=Ravens' Lamar Jackson Has Surpassed Aaron Rodgers in Major NFL Career Stat |url=https://www.newsweek.com/sports/nfl/ravens-lamar-jackson-has-surpassed-aaron-rodgers-major-nfl-career-stat-2130770 |access-date=September 16, 2025 |website=[[Newsweek]]}}</ref> Rodgers be among de most efficient quarterbacks of all time. Apart from a regular-season career passer rating of over 100 (de first to ever have a career rating over 100), he sanso dey hold de best touchdown-to-interception ratio den de lowest passing interception percentage insyd NFL history while he sanso get de highest passer rating insyd NFL history thru out de entire 2010s decade. Insyd de postseason, he be second in both touchdown passes den touchdown-to-interception ratio, fourth insyd passing yards, den eighth insyd all-time passer rating. Insyd de regular season, he get de best touchdown-to-interception ratio insyd NFL history at 4.34,<ref name="Football DB">{{Cite web |title=NFL Career Leaders – Passing Touchdown/Interception Ratio |url=http://www.footballdb.com/leaders/career-passing-tdintratio |archive-url=https://web.archive.org/web/20200508102359/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=May 8, 2020 |access-date=November 3, 2014 |website=FootballDB.com}}</ref> he dey hold de league ein second lowest career interception percentage at 1.4 percent<ref name="a">{{Cite web |title=NFL Career Pass Interception % Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |url-status=live |archive-url=https://web.archive.org/web/20110815065956/http://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |archive-date=August 15, 2011 |access-date=September 24, 2015 |work=[[Pro Football Reference]]}}</ref> den de highest single-season passer rating record of 122.5.<ref>{{Cite web |last=Mayer |first=Larry |date=September 12, 2012 |title=Bears gearing up to battle Rodgers |url=http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |url-status=dead |archive-url=https://web.archive.org/web/20150925095614/http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |archive-date=September 25, 2015 |access-date=September 24, 2015 |publisher=[[Chicago Bears]]}}</ref> Rodgers sanso be a four-time winner of de Best NFL Player ESPY Award.
== Early life ==
Ba dem born Aaron Charles Rodgers on December 2, 1983, insyd Chico, California,<ref>{{Cite magazine|title=Aaron Rodgers – No. 12 – QB|url=http://sportsillustrated.cnn.com/football/nfl/players/7200|url-status=dead|archive-url=https://web.archive.org/web/20110719095151/http://sportsillustrated.cnn.com/football/nfl/players/7200/|archive-date=July 19, 2011|access-date=February 6, 2011|magazine=[[Sports Illustrated]]}}</ref> de son of Darla Leigh (née Pittman) den Edward Wesley Rodgers. Na ein poppie be a Texas-born chiropractor wey play football as an offensive lineman give de Chico State Wildcats from 1973 to 1976.<ref name="about1">{{Cite web |last=Powell |first=Kimberly |date=October 15, 2018 |title=Ancestry of Aaron Rodgers |url=https://www.thoughtco.com/family-tree-of-aaron-rodgers-1421929 |url-status=live |archive-url=https://web.archive.org/web/20111211212214/http://genealogy.about.com/od/famous_family_trees/ss/aaron-rodgers.htm |archive-date=December 11, 2011 |access-date=May 10, 2012 |website=ThoughtCo.com}}</ref><ref name="Jackel2005">{{Cite web |last=Jackel |first=Pete |date=October 6, 2005 |title=Focus on Football: Rodgers preparing for his moment |url=http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |url-status=live |archive-url=https://web.archive.org/web/20110127115346/http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |archive-date=January 27, 2011 |access-date=March 14, 2012 |website=RacineSportsZone.com |publisher=JournalTimes.com}}</ref> Rodgers be of English, Irish den German ancestry.<ref name="about1" /> De family move go Ukiah, California, wer he attend Oak Manor Elementary School.<ref name="FreeThrows">{{Cite news|date=January 3, 1993|title='Free throws' are his forte|url=https://newspaperarchive.com/ukiah-daily-journal/1993-01-03/|url-status=live|archive-url=https://web.archive.org/web/20211201192340/https://newspaperarchive.com/browse/us/ca/ukiah/ukiah-daily-journal/|archive-date=December 1, 2021|access-date=March 14, 2012|work=Ukiah Daily Journal|via=Newspaper Archive|page=1}}</ref> Edward Rodgers toss a football plus ein sons Luke, Aaron den [[Jordan Rodgers]], wey he flow dem make dem no told drink den no party insyd college anaa dem go limit demaselves insyd sports like he do. Aaron take dis advice to heart.<ref name="Jackel2005" /> At de age of ten, he be featured on de front page of de ''Ukiah Daily Journal'' for ein top performance at a local basketball free throw competition.<ref name="FreeThrows" />
Later, de family move go Beaverton, Oregon, wer Rodgers attend Vose Elementary School den Whitford Middle School, wey he play baseball insyd de Raleigh Hills Little League at shortstop, center field den pitcher.<ref name="Oregonian">{{Cite web |date=February 5, 2011 |title=Green Bay quarterback Aaron Rodgers has strong ties to Beaverton |url=http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |url-status=live |archive-url=https://web.archive.org/web/20110216014347/http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |archive-date=February 16, 2011 |access-date=February 5, 2011 |work=[[The Oregonian]]}}</ref>
De Rodgers family return to Chico insyd 1997, wey Aaron attend Pleasant Valley High School, starting for two years at quarterback den garnering 4,421 passing yards.<ref>{{Cite web |last=Davidson |first=Joe |date=September 5, 2019 |title=Green Bay Packers quarterback Aaron Rodgers donates 354 new helmets to California high schools |url=https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |url-status=live |archive-url=https://web.archive.org/web/20190925105424/https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |archive-date=September 25, 2019 |access-date=September 13, 2019 |work=[[Honolulu Star-Advertiser]]}}</ref> He set single-game records of six touchdowns den 440 all-purpose yards. Rodgers set a single-season school record plus 2,466 total yards insyd 2001.<ref>{{Cite web |last=Carlton |first=Jimmy |date=April 26, 2018 |title=Of brains, Butte and baseball: How a tiny teenager became #Packers MVP Aaron Rodgers |url=https://onmilwaukee.com/articles/packersaaronrodgersjourney |access-date=May 30, 2024 |website=OnMilwaukee}}</ref> He graduate from Pleasant Valley High School insyd spring 2002, after scoring 1310 insyd de SAT den plus an A− average.<ref>{{Cite web |title=#12 Aaron Rodgers |url=http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |url-status=live |archive-url=https://web.archive.org/web/20110716022313/http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |archive-date=July 16, 2011 |access-date=February 6, 2011 |website=Packer Report |publisher=Scout with FoxSports.com}}</ref><ref>{{Cite news|date=November 20, 2002|title=JC Quarterback Commits to Cal, Butte's Rodgers Could Join the Competition to Replace Boller Next Year|url=http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|url-status=live|archive-url=https://web.archive.org/web/20181113165752/http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|archive-date=November 13, 2018|access-date=May 11, 2012|work=Contra Costa Times|location=Walnut Creek, California|via=NewsBank|quote=[He] scored 1310 on the SAT, so Cal's academic reputation was important to him.}}</ref><ref>{{Cite news|last=Crouse|first=Karen|date=January 31, 2011|title=Packers' Rodgers Has Deep Roots in Chico|url=https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|url-status=live|archive-url=https://web.archive.org/web/20190426170034/https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|archive-date=April 26, 2019|access-date=December 5, 2019|work=[[The New York Times]]|page=D1|quote=Despite his athletic prowess, an A-minus average and an SAT score of 1310, Rodgers did not receive an NCAA Division I scholarship offer coming out of high school.}}</ref>
== College career ==
Despite ein impressive high school record, Rodgers attract little interest from Division I programs.<ref>{{Cite web |last=Kalland |first=Robby |date=September 3, 2015 |title=How Aaron Rodgers went from not being recruited to a star at Cal |url=https://www.cbssports.com/college-football/news/how-aaron-rodgers-went-from-not-being-recruited-to-a-star-at-cal/ |access-date=May 30, 2024 |website=CBSSports.com}}</ref> Insyd a 2011 interview plus ''E:60'', he attribute de relative lack of attention insyd de recruiting process to ein unimposing physical stature as a high school player at {{convert|5|ft|10|in|m|abbr=on}} den {{convert|165|lb|kg}}. Na Rodgers want to attend Florida State den play under head coach [[Bobby Bowden]], buh na dem reject am.<ref name="E60 Youtube">{{Cite web |date=October 27, 2011 |title=E:60 – Aaron Rodgers |url=https://www.youtube.com/watch?v=blrmdIfXPwI |url-status=live |archive-url=https://web.archive.org/web/20120302212553/https://www.youtube.com/watch?v=blrmdIfXPwI |archive-date=March 2, 2012 |access-date=May 13, 2012 |publisher=ESPN |via=YouTube}}</ref> Na he only be offered an opportunity to compete for a scholarship as a walk-on from University of Illinois.<ref>{{Cite news|last=McGrath|first=Jim|date=June 29, 2011|title=Green Bay QB Rodgers Visits All-Pro Campers at W&M|work=Williamsburg Yorktown Daily|url=http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|url-status=dead|access-date=August 22, 2013|archive-url=https://web.archive.org/web/20130921054645/http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|archive-date=September 21, 2013}}</ref> He decline de invitation, wey na he consider quitting football to play baseball instead anaa giving up entirely on de idea of playing insyd professional sports den attending law school after completing ein undergraduate degree.<ref name="Babb">{{Cite news|last=Babb|first=Kent|date=December 15, 2015|title=For Aaron Rodgers, road to the NFL started at an apparent dead end|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|url-status=live|access-date=November 30, 2018|archive-url=https://web.archive.org/web/20181130205037/https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|archive-date=November 30, 2018}}</ref>
He then be recruited to play football at Butte College insyd Oroville, a junior college about {{convert|15|mi|km}} southeast of Chico.<ref>{{Cite book |last=Sandler |first=Michael |url=https://archive.org/details/aaronrodgersgree0000sand |title=Aaron Rodgers and the Green Bay Packers: Super Bowl XLV |date=August 1, 2011 |publisher=Bearport Publishing |isbn=9781617723094 |url-access=registration}}</ref>
=== Butte ===
==== 2002 season ====
Rodgers throw 26 touchdowns insyd ein freshman season at Butte,<ref>{{Cite web |title=Aaron Rodgers |url=https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |url-status=live |archive-url=https://web.archive.org/web/20211028170413/https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |archive-date=October 28, 2021 |access-date=October 13, 2021 |website=California Community Colleges Chancellor's Office}}</ref><ref>{{Cite web |title=Stats & Records |url=http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-url=https://web.archive.org/web/20081202112615/http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-date=December 2, 2008 |access-date=November 18, 2011 |website=butte.edu |publisher=[[Butte College]]}}</ref> leading de school to a 10–1 record, de NorCal Conference championship,<ref>{{Cite web |date=November 8, 2008 |title=Title-tilt bound: Butte secures NorCal championship |url=https://www.chicoer.com/20081108/title-tilt-bound-butte-secures-norcal-championship/ |access-date=May 30, 2024 |work=Chico Enterprise-Record}}</ref> den a {{nowrap|No. 2}} national ranking. While der, na he be discovered by de California Golden Bears ein head coach [[Jeff Tedford]], wey na he dey recruite Butte tight end Garrett Cross.<ref>{{Cite web |last=McGrath |first=Dan |date=November 11, 2004 |title=Cal QB Rodgers has the pedigree |url=https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-url=https://web.archive.org/web/20191205183533/https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-date=December 5, 2019 |access-date=September 13, 2019 |work=Chicago Tribune}}</ref> Na Tedford be surprised to learn say Rodgers no be recruited earlier. Secof Rodgers ein good high school scholastic record, he be eligible to transfer to de University of California, Berkeley after one year of junior college instead of de typical two.<ref name="Cal">{{Cite news|last=Adams|first=Bruce|date=August 3, 2003|title=Cal's QB hope: JC transfer Rodgers has what Tedford likes|work=San Francisco Chronicle|url=https://www.sfchronicle.com/sports/article/Cal-s-QB-hope-JC-transfer-Rodgers-has-what-2598626.php|url-status=live|access-date=22 February 2026}}</ref>
=== California ===
==== 2003 season ====
As a junior college transfer, Rodgers get three years of eligibility at Cal. Na dem name am de starting quarterback insyd de fifth game of de 2003 season, beating de only team wey offer am a {{nowrap|Division I}} opportunity out of high school, Illinois.<ref>{{Cite web |date=October 14, 2014 |title=Aaron Rodgers: I wanted to join Illini; they passed |url=https://www.chicagotribune.com/2014/10/14/aaron-rodgers-i-wanted-to-join-illini-they-passed/ |access-date=May 30, 2024 |work=Chicago Tribune}}</ref> As a sophomore, he help lead de Golden Bears to a 7–3 record as a starter.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{Cite web |last=King |first=Randy |date=December 26, 2003 |title=Virginia Tech finishes on wrong foot with Insight Bowl loss to Cal |url=https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |url-status=live |archive-url=https://web.archive.org/web/20191208021513/https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |work=The Roanoke Times}}</ref>
Insyd ein second career start, Rodgers lead de team to a 21–7 halftime lead against #3 USC. Secof injury, na dem replace Rodgers insyd de second half by Reggie Robertson.<ref name="calfans" /><ref>{{Cite web |date=September 27, 2003 |title=Cal-USC Postgame Quotes |url=http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121444/http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |archive-date=June 9, 2012 |website=California Golden Bears |quote=After the interception for the touchdown, I went over to him and said 'Do you want to take a couple of series off?' and he said 'Yes.' We put Reggie (Robertson) in and Reggie did a nice job for us."}}</ref> De Bears win insyd triple overtime, 34–31.<ref name="calfans">{{Cite web |date=September 27, 2003 |title=Cal fans storm field after win |url=http://espn.go.com/ncf/recap?gameId=232700025 |url-status=dead |archive-url=https://web.archive.org/web/20161119182933/https://www.espn.com/college-football/recap?gameId=232700025 |archive-date=November 19, 2016 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |last=Faraudo |first=Jeff |date=September 29, 2009 |title=Cal's triple-overtime thriller against USC in 2003 produced multiple heroes |url=https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |url-status=live |archive-url=https://web.archive.org/web/20191208021406/https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=East Bay Times}}</ref> Rodgers pass for 394 yards wey na dem name am game MVP insyd de Insight Bowl against Virginia Tech.<ref>{{Cite web |title=Insight Bowl – Virginia Tech vs California Box Score, December 26, 2003 |url=https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |url-status=live |archive-url=https://web.archive.org/web/20180312084010/https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |work=[[Sports Reference]]}}</ref><ref>{{Cite book |last=Tsuchiya |first=Anita |url=https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |title=Aaron Rodgers: Biography of a Super Bowl MVP |date=July 30, 2012 |publisher=Hyperink Inc |isbn=9781614646129 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203201742/https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |archive-date=February 3, 2021 |url-status=live}}</ref>
Insyd 2003, Rodgers tie de school season record for 300-yard games plus five wey he set a school record for de lowest percentage of passes dem intercept at 1.43%.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref>
==== 2004 season ====
As a junior, Rodgers lead Cal to a 10–1 record den top-five ranking at de end of de regular season, plus dema only loss a 23–17 loss at {{nowrap|No. 1}} USC.<ref>{{Cite web |title=2004 California Golden Bears Schedule and Results |url=https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |url-status=live |archive-url=https://web.archive.org/web/20180312085053/https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref> Insyd dat game, Rodgers set a school record for consecutive passes dem plete plus 26 wey he tie an NCAA record plus 23 consecutive passes dem plete insyd one game.<ref>{{Cite web |last=Lee |first=Ted |date=October 10, 2004 |title=It was there for the taking |url=https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-url=https://web.archive.org/web/20191205183922/https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-date=December 5, 2019 |access-date=September 13, 2019 |website=BearTerritory.net}}</ref> Na he set a Cal single-game record for passing completion percentage of 85.3.<ref>{{Cite web |last=Lowry |first=Matthew |date=November 15, 2019 |title=Trojans Throwback: 2004 USC vs California |url=https://www.conquestchronicles.com/football/2019/11/15/20966700/trojans-throwback-2004-usc-vs-california |access-date=May 30, 2024 |work=Conquest Chronicles}}</ref><ref>{{Cite web |last=Wharton |first=David |date=October 10, 2004 |title=Rodgers Can't See It Through to Completion |url=https://www.latimes.com/archives/la-xpm-2004-oct-10-sp-uscside10-story.html |access-date=May 30, 2024 |work=Los Angeles Times}}</ref> Rodgers dey hold de Cal career record for lowest percentage of passes dem intercept at 1.95 percent.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref> Rodgers ein performance set up de Golden Bears at first den goal plus 1:47 remaining den a chance for de game-winning touchdown. On de first play of USC ein goal line stand, Rodgers throw an incomplete pass. Na dis be followed by a second-down sack by [[Manuel Wright]].<ref name="Cal Vs USC 2004" /> After a timeout den Rodgers ein incomplete pass on third down, USC stop Cal ein run play to win de game.<ref name="Cal Vs USC 2004" /> Rodgers comment say na e be "frustrating dat we no fi get de job done."<ref name="Cal Vs USC 2004">{{Cite web |date=October 9, 2004 |title=Trojans' defense stymies Cal QB at first-and-goal |url=http://scores.espn.go.com/ncf/recap?gameId=242830030 |url-status=dead |archive-url=https://web.archive.org/web/20170817065913/http://scores.espn.com/ncf/recap?gameId=242830030 |archive-date=August 17, 2017 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Overall, he fini de 2004 season plus 2,566 passing yards, 24 touchdowns, den eight interceptions. Ein 66.1% pass completion percentage lead de Pac-10.<ref>{{Cite web |title=Aaron Rodgers 2004 Game Log |url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |url-status=live |archive-url=https://web.archive.org/web/20180312084136/https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref><ref>{{Cite web |title=2004 Pacific-10 Conference Leaders |url=https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |url-status=live |archive-url=https://web.archive.org/web/20180328231847/https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Sports Reference]]}}</ref> He fini ninth insyd Heisman Trophy voting.<ref>{{Cite web |title=2004 Heisman Trophy Voting |url=https://www.sports-reference.com/cfb/awards/heisman-2004.html |access-date=December 2, 2022 |website=[[Sports Reference]] |language=en}}</ref>
After na dem pick Texas over Cal for a Rose Bowl berth, na dem award de fourth-ranked Bears a spot insyd de Holiday Bowl, wich dem loose to Texas Tech, 45–31.<ref>{{Cite web |date=December 15, 2017 |title=2004 Holiday Bowl: Cal caught in Texas Tech's Air Raid |url=https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208021644/https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> After de season, Rodgers decide to forgo ein senior season to enter de 2005 NFL draft.<ref>{{Cite web |date=January 6, 2005 |title=Who to watch in 2005 |url=http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |url-status=live |archive-url=https://web.archive.org/web/20190426144539/http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |archive-date=April 26, 2019 |access-date=February 15, 2012 |website=Chico News & Review}}</ref>
== Professional career ==
=== 2005 NFL draft ===
Na Rodgers be expected to be selected early insyd de 2005 NFL draft as he post impressive numbers as a junior plus Cal, throwing for 2,320 yards plus a 67.5 completion rate insyd de regular season. He throw for 24 touchdowns den only eight interceptions insyd ein last college season, impressing chaw NFL scouts. Na dem comment say na he be a "talented strong-armed junior"<ref name="Draft Insider">{{Cite web |title=NFL Draft – QB Aaron Rodgers |url=http://www.draftinsiders.com/node/1288 |url-status=dead |archive-url=https://web.archive.org/web/20120111054622/http://www.draftinsiders.com/node/1288 |archive-date=January 11, 2012 |access-date=December 9, 2011 |website=DraftInsiders.com}}</ref> wey dey "combine arm strength, mechanics den delivery to make all de throws", buh dem note say ein stats fi be inflated secof playing insyd a quarterback-friendly system den dat he go need to adjust to de more elaborate defensive schemes of de NFL.<ref name="Draft Insider" />
Before de draft, na Rodgers be confident say he go be drafted to de San Francisco 49ers, de team he support den grow up near,<ref name="Bensiger">{{Cite AV media |url=https://www.youtube.com/watch?v=8_a6O3vdlU0 |title=In Depth with Graham Bensinger: Aaron Rodgers: Thought I'd be a 49er |date=December 21, 2016 |last=Bensinger |first=Graham |type=Television production, YouTube video |access-date=December 26, 2016 |archive-url=https://ghostarchive.org/varchive/youtube/20211212/8_a6O3vdlU0 |archive-date=December 12, 2021 |url-status=live |orig-year=2010}}</ref> wey possess de No. 1 overall pick insyd de draft.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> De 49ers, however, draft quarterback [[Alex Smith]] out of Utah instead, wey Rodgers slid all de way down to de 24th overall pick by de Green Bay Packers. Na Rodgers say he experience much angst den restlessness wen waiting to be selected several hours into de draft, as na he expect einself to be selected much sooner.<ref name="Bensiger" /> Rodgers ein slip to de 24th selection den de Packers choosing to pick [[Brett Favre]] ein future replacement cam be one of de biggest stories of de draft, though na he still be de second quarterback dem select. Na ein drop insyd de draft later be ranked number one on de NFL Network ein Top 10 Draft Day Moments.<ref>{{Cite web |last=Currie |first=David |date=April 27, 2017 |title=NFL Draft: Top 10 Moments – Aaron Rodgers falling to Tim Tebow trade |url=https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |url-status=live |archive-url=https://web.archive.org/web/20200727131640/https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |archive-date=July 27, 2020 |access-date=September 13, 2019 |website=Sky Sports}}</ref> Chaw teams wey dey draft between de second den 23rd positions get positional needs more pressing dan quarterback.<ref name="ESPN Column">{{Cite web |last=Clayton |first=John |date=April 23, 2005 |title=Clayton: Waiting is the hardest part |url=https://www.espn.com/nfl/draft05/columns/story?columnist=clayton_john&id=2044646 |url-status=live |archive-url=https://web.archive.org/web/20160702194839/http://espn.go.com/nfl/draft05/columns/story?id=2044646&columnist=clayton_john |archive-date=July 2, 2016 |access-date=April 27, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |title=2005 NFL Draft Listing |url=https://www.pro-football-reference.com/years/2005/draft.htm |url-status=live |archive-url=https://web.archive.org/web/20170921001516/https://www.pro-football-reference.com/years/2005/draft.htm |archive-date=September 21, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers be one of six quarterbacks wey [[Jeff Tedford]] coach to be drafted insyd de first round of an NFL draft, joining [[Trent Dilfer]], [[Akili Smith]], [[David Carr (American football)|David Carr]], [[Joey Harrington]] den [[Kyle Boller]].<ref>{{Cite news|last=Greenberg|first=Steve|date=November 20, 2012|title=Jeff Tedford developed Aaron Rodgers, but recent QBs struggled|work=Sporting News|url=http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|url-status=live|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20161230042613/http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|archive-date=December 30, 2016}}</ref>
=== Green Bay Packers ===
==== Backup years: 2005–2007 ====
Insyd August 2005, Rodgers agree to a reported five-year, $7.7 million deal wey include $5.4 million in guaranteed money wey e get de potential to pay am as much as $24.5 million if na dem meet all incentives den escalators.<ref name="Sportrac Contract">{{Cite web |title=Aaron Rodgers Contract Breakdown |url=https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |url-status=live |archive-url=https://web.archive.org/web/20210506052810/https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |archive-date=May 6, 2021 |access-date=November 15, 2021 |website=Spotrac.com |language=en-US}}</ref>
Rodgers spend ein rookie season as de Packers dema backup quarterback behind Brett Favre.<ref>{{Cite web |title=2005 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2005.htm |url-status=live |archive-url=https://web.archive.org/web/20211107183417/https://www.pro-football-reference.com/teams/gnb/2005.htm |archive-date=November 7, 2021 |access-date=December 8, 2019 |website=[[Pro Football Reference]]}}</ref> Na de Packers be 4–12 at dis point wey he receive ein first extended look insyd de opening preseason game against de San Diego Chargers after replacing Favre.<ref name="Chargers Vs Packers 2005 Preseason">{{Cite web |date=August 11, 2005 |title=Favre completes nine of 10 passes for 91 yards, TD |url=http://scores.espn.go.com/nfl/recap?gameId=250811009 |archive-url=https://web.archive.org/web/20180127084112/https://www.espn.com/nfl/recap?gameId=250811009 |archive-date=January 27, 2018 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd ein first NFL game, Rodgers plete two out of seven passes wey na dem sack am twice. He continue to struggle thru de preseason, before ending de preseason by converting two third downs den throwing a touchdown pass to tight end [[Ben Steele]] against de Tennessee Titans.<ref name="GB Vs Tennesee">{{Cite web |date=September 1, 2005 |title=Green Bay 21, Tennessee 17 |url=http://scores.espn.go.com/nfl/recap?gameId=250901010 |url-status=dead |archive-url=https://web.archive.org/web/20131105175854/http://scores.espn.go.com/nfl/recap?gameId=250901010 |archive-date=November 5, 2013 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Once de regular season begin, Rodgers see very little action dat year. He play against de New Orleans Saints insyd de fourth quarter of a 52–3 victory, wey he plete ein first career pass to fullback [[Vonta Leach]] for 0 yards.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> On {{nowrap|December 19, 2005,}} Rodgers enter de game against de Baltimore Ravens at de end of de third quarter insyd a 48–3 loss.<ref name="Green Bay Bio" /> He plete eight of 15 passes for 65 yards den an interception.<ref name="Packers Vs. Ravens 2005">{{Cite web |date=December 20, 2005 |title=Boller outplays Favre in Ravens' rout of Packers |url=http://scores.espn.go.com/nfl/recap?gameId=251219033 |url-status=dead |archive-url=https://web.archive.org/web/20121023103816/http://scores.espn.go.com/nfl/recap?gameId=251219033 |archive-date=October 23, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref>
After de Packers dema losing season, na dem fire den replace head coach [[Mike Sherman]] by [[Mike McCarthy]].<ref name="Packers Fire Sherman">{{Cite news|date=January 2, 2006|title=Packers fire coach Mike Sherman|work=Yahoo! Sports|url=https://sports.yahoo.com/nfl/news?slug=packerssherman|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20140426105024/https://sports.yahoo.com/nfl/news?slug=packerssherman|archive-date=April 26, 2014}}</ref><ref name="Packers to hire 49ers">{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=January 12, 2006 |title=Packers to hire 49ers' McCarthy as coach |url=https://www.espn.com/nfl/news/story?id=2288985 |url-status=live |archive-url=https://web.archive.org/web/20121014050433/http://sports.espn.go.com/nfl/news/story?id=2288985 |archive-date=October 14, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]]}}</ref> Rodgers then be placed insyd McCarthy ein "Quarterback school" for six hours a day several times a week.<ref name="Journal Sentinel">{{Cite web |last=Silverstein |first=Tom |date=September 7, 2008 |title=The Education of Aaron Rodgers |url=http://www.jsonline.com/sports/packers/32579374.html |url-status=live |archive-url=https://web.archive.org/web/20101223123643/http://www.jsonline.com/sports/packers/32579374.html |archive-date=December 23, 2010 |access-date=May 11, 2012 |website=Milwaukee Journal Sentinel}}</ref> Dis focus on working on Rodgers ein motor skills such as hand-eye coordination, finger dexterity, den mechanics.<ref name="New York Times QB School">{{Cite news|last=Bishop|first=Greg|date=December 2, 2011|title=The Education of a Quarterback|work=The New York Times|url=https://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|url-status=live|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20120501123445/http://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|archive-date=May 1, 2012}}</ref> McCarthy sanso work on Rodgers ein release point, moving am from right beside de ear hole of ein helmet to further below am, to give am a smoother release.<ref name="Aaron Rodgers Leader of The Pack">{{Cite book |last=Reischel |first=Rob |title=Aaron Rodgers: Leader of the Pack: An Intimate Portrait of a Super Bowl MVP |date=March 1, 2011 |publisher=Triumph Books |isbn=978-1-60078-645-7 |language=English}}</ref> Wen de 2006 preseason begin, Rodgers play as de backup insyd all four games; he plete 22 out 38 passes for 323 yards den three touchdowns.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> Rodgers see very little action during de 2006 season, buh did step insyd briefly on {{nowrap|October 2}} against de Philadelphia Eagles wen Favre lef de game secof injury.<ref name="Green Bay Bio" /> On {{nowrap|November 19, 2006,}} Rodgers break ein left foot while playing against de New England Patriots insyd a 35–0 defeat at home, filling insyd for an injured Favre, wey Rodgers miss de remainder of de 2006 season.<ref name="Journal Sentinel" />
Following de team ein season-ending victory at Chicago, Favre announce say he go stay plus de Packers for de 2007 season, again postponing Rodgers ein hopes of becoming de Packers dema starting quarterback.<ref name="Favre">{{Cite web |last=Silverstein |first=Tom |date=January 7, 2007 |title=Favre leaves lasting impression |url=http://www.jsonline.com/news/milwaukee/29212859.html |url-status=dead |archive-url=https://web.archive.org/web/20120908152601/http://www.jsonline.com/news/milwaukee/29212859.html |archive-date=September 8, 2012 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref> Prior to de 2007 season, rumors surface about a potential trade involving Rodgers insyd wich he go be traded to de Oakland Raiders for wide receiver [[Randy Moss]].<ref>{{Cite web |date=March 18, 2007 |title=Packers GM insists QB Rodgers not on trading block |url=https://www.espn.com/nfl/news/story?id=2803272 |url-status=live |archive-url=https://web.archive.org/web/20121107040642/http://sports.espn.go.com/nfl/news/story?id=2803272 |archive-date=November 7, 2012 |access-date=December 30, 2010 |website=[[ESPN.com]]}}</ref> However, Moss be traded to de Patriots during de second day of de 2007 NFL draft, wey Rodgers stay insyd Green Bay.<ref>{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=April 29, 2007 |title=Pats acquire WR Moss from Raiders for draft pick |url=https://www.espn.com/nfl/draft07/news/story?id=2853116 |url-status=live |archive-url=https://web.archive.org/web/20171229132248/http://www.espn.com/nfl/draft07/news/story?id=2853116 |archive-date=December 29, 2017 |access-date=January 1, 2018 |website=[[ESPN.com]]}}</ref>
Rodgers step in wen na Favre injure insyd de second quarter against de Dallas Cowboys on ''Thursday Night Football'' on {{nowrap|November 29, 2007}}.<ref name="Cowboys Versus Packers 2007">{{Cite web |date=November 30, 2007 |title=Cowboys hold off Favre-less Packers to clinch playoff berth |url=http://scores.espn.go.com/nfl/recap?gameId=271129006 |url-status=dead |archive-url=https://web.archive.org/web/20121111035600/http://scores.espn.go.com/nfl/recap?gameId=271129006 |archive-date=November 11, 2012 |access-date=May 12, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers plete 18 passes for 201 yards, plus no interceptions.<ref name="Cowboys Versus Packers 2007" /> He sanso throw ein first touchdown pass buh na he be sacked three times.<ref name="Cowboys Versus Packers 2007" /> Rodgers bring de team back from a 17-point deficit to a 3-point deficit, buh de Cowboys go on to win 37–27.<ref name="Cowboys Versus Packers 2007" />
==== 2008: Transition to starter ====
[[File:AaronRodgers.jpg|left|thumb|Rodgers going down de tunnel at Lambeau Field insyd 2008]]
Favre ein retirement announcement on {{nowrap|March 4, 2008,}} open up de Packers dema starting quarterback position to Rodgers for de 2008 season. Although Favre decide to return from retirement, he be traded to de New York Jets, wich mean say Rodgers go cam be de starter.<ref>{{Cite web |last=Nickel |first=Lori |date=March 9, 2008 |title=Rodgers preparing to assume control |url=http://www.jsonline.com/story/index.aspx?id=726140 |url-status=dead |archive-url=https://web.archive.org/web/20081007044908/http://www.jsonline.com/story/index.aspx?id=726140 |archive-date=October 7, 2008 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref>
Rodgers quickly prove say na he be one of de best quarterbacks insyd de league by passing for 4,038 yards insyd ein first season as a starter as well as throwing for 28 touchdowns den only 13 interceptions. As of de 2025 season, dis still dey stand as de most interceptions he throw insyd a season.<ref>{{Cite web |title=Aaron Rodgers 2008 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |url-status=live |archive-url=https://web.archive.org/web/20180313183821/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Plus Rodgers making ein debut as a starter, de Packers beat de Minnesota Vikings 24–19 at Lambeau Field. Dis mark de first time since 1992 wey a quarterback oda dan Favre start a regular season game give de Packers. Rodgers end de game plus 178 yards passing den two touchdowns (one passing den one rushing).<ref name="Rodgers Debut">{{Cite web |last=Jenkins |first=Chris |date=September 10, 2008 |title=Solid debut frees Rodgers from post-Favre scrutiny |url=http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |url-status=live |archive-url=https://web.archive.org/web/20130921062040/http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |archive-date=September 21, 2013 |access-date=May 13, 2012 |website=USA Today |agency=Associated Press}}</ref> Insyd just ein second NFL start de following week, na dem vote Rodgers de FedEx Air award winner after passing for 328 yards den three touchdowns insyd a win against de Lions.<ref name="FedEx Air and Ground Winners Week 2 2008">{{Cite web |date=September 20, 2008 |title=FedEx Air and Ground Week 2 2008 Winners |url=http://www.nfl.com/videos?videoId=09000d5d80af20df |url-status=live |archive-url=https://web.archive.org/web/20090108060338/http://www.nfl.com/videos?videoId=09000d5d80af20df |archive-date=January 8, 2009 |access-date=September 20, 2008 |website=NFL Network |publisher=National Football League}}</ref>
During de fourth week of de season, Rodgers ein streak of 157 consecutive pass attempts widout an interception end wen na he be intercepted by [[Derrick Brooks]] of de Tampa Bay Buccaneers. Na de streak be de third-longest insyd franchise history behind [[Bart Starr]] (294) den Brett Favre (163).<ref name="Buccaneers">{{Cite web |date=September 29, 2008 |title=Buccaneers' defense rattles Rodgers in win over Packers |url=http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081001100738/http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |archive-date=October 1, 2008 |access-date=September 29, 2008 |publisher=National Football League}}</ref> Rodgers suffer a severe shoulder sprain insyd de game buh he continue to start den play well insyd a win against de Seattle Seahawks two weeks later.<ref name="Rodgers">{{Cite web |last=Jenkins |first=Chris |date=December 26, 2008 |title=Packers' Rodgers learns lessons from trying season |url=http://seattletimes.nwsource.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-url=https://web.archive.org/web/20150226064522/http://old.seattletimes.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-date=February 26, 2015 |access-date=May 13, 2012 |website=The Seattle Times}}</ref> Despite early successes, Rodgers be unable to win a close game during de season despite seven opportunities to do so.<ref name="Rodgers" /><ref name="Bears cap unlikely rally with OT win to stay alive in playoff race">{{Cite web |date=December 23, 2008 |title=Bears cap unlikely rally with OT win to stay alive in playoff race |url=http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081225222724/http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |archive-date=December 25, 2008 |access-date=December 23, 2008 |publisher=National Football League |agency=Associated Press}}</ref>
On {{nowrap|October 31, 2008}}, Rodgers sign a six-year, {{nowrap|$65 million}} contract extension thru de 2014 season.<ref name="Packers Sign Rodgers Through 2014">{{Cite web |date=October 31, 2008 |title=Packers sign QB Rodgers to $65M extension through 2014 |url=https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |url-status=live |archive-url=https://web.archive.org/web/20201204181536/https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |archive-date=December 4, 2020 |access-date=April 27, 2022 |publisher=National Football League |language=en-US |agency=Associated Press}}</ref><ref name="Contracts: Rodgers vs. Romo">{{Cite web |last=Silverstein |first=Tom |date=November 5, 2008 |title=Contracts: Rodgers vs. Romo |url=http://www.jsonline.com/sports/packers/33941369.html |url-status=live |archive-url=https://web.archive.org/web/20081205152249/http://www.jsonline.com/sports/packers/33941369.html |archive-date=December 5, 2008 |access-date=November 6, 2008 |website=JSOnline |publisher=Milwaukee Journal-Sentinel}}</ref> Insyd Rodgers ein first full season plus de team, de Packers fini plus a 6–10 record wey dem miss de playoffs.<ref>{{Cite web |title=2008 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2008.htm |url-status=live |archive-url=https://web.archive.org/web/20180907044946/https://www.pro-football-reference.com/teams/gnb/2008.htm |archive-date=September 7, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2009 ====
For de opening game of de 2009 season, Rodgers record ein first win insyd a comeback situation. Na de Packers dey trail at de beginning of de fourth quarter wen Rodgers plete a fifty-yard touchdown pass to wide receiver [[Greg Jennings]] plus about a minute remaining insyd de game to contribute to de 21–15 victory over de Chicago Bears.<ref>{{Cite web |last=Jenkins |first=Chris |date=December 8, 2019 |title=Rodgers brings Pack back for 21–15 win over Bears |url=https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |url-status=dead |archive-url=https://web.archive.org/web/20191208022530/https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Holland Sentinel}}</ref>
Na dem name Rodgers NFC Offensive Player of de Month for {{nowrap|October 2009}}, wen he pass for 988 yards, he plete 74.5 percent of ein passes, wey he record a passer rating over 110 for all three games he play during de month.<ref name="Rodgers, Sharper, Knox win NFC player of month honors">{{Cite web |last=Rosenthal |first=Gregg |date=October 29, 2009 |title=Rodgers, Sharper, Knox win NFC player of month honors |url=http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |url-status=live |archive-url=https://web.archive.org/web/20140112100938/http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |archive-date=January 12, 2014 |access-date=May 13, 2012 |website=ProFootballTalk.com}}</ref>
After a 4–4 start to de season den a 38–28 loss to de previously winless Buccaneers,<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – November 8th, 2009 |url=https://www.pro-football-reference.com/boxscores/200911080tam.htm |url-status=live |archive-url=https://web.archive.org/web/20171108032603/https://www.pro-football-reference.com/boxscores/200911080tam.htm |archive-date=November 8, 2017 |access-date=November 4, 2017 |website=[[Pro Football Reference]]}}</ref> de team begin to heat up. Rodgers lead de Packers to five straight wins, insyd wich he throw for a total of 1,324 yards, nine touchdowns, den two interceptions.<ref>{{Cite web |title=Aaron Rodgers – Games 9–13 in 2009 |url=http://pfref.com/tiny/3NZjQ |url-status=live |archive-url=https://web.archive.org/web/20211201192346/https://stathead.com/tools/tiny.fcgi?id=3NZjQ |archive-date=December 1, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers win two of dema last three games, finishing de second half of de season plus a 7–1 record den an overall 11–5 record; good enough to secure a wild card playoff berth wey dem clinch de fifth seed insyd de playoffs.<ref>{{Cite web |title=Aaron Rodgers 2009 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180101211154/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2009 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2009.htm |url-status=live |archive-url=https://web.archive.org/web/20171115032207/https://www.pro-football-reference.com/teams/gnb/2009.htm |archive-date=November 15, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers set a new franchise record by scoring 461 total points (third insyd de league), breaking de previous record wey de 1996 Super Bowl team (456) hold.<ref>{{Cite web |title=2009 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180504033136/https://www.pro-football-reference.com/years/2009/ |archive-date=May 4, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=1996 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/1996/ |url-status=live |archive-url=https://web.archive.org/web/20100211094812/http://www.pro-football-reference.com/years/1996/ |archive-date=February 11, 2010 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers cam be de first quarterback insyd NFL history ever to throw for 4,000 yards insyd both of ein first two years as a starter.<ref name="Rodgers Proscout.com">{{Cite web |last=Huber |first=Bill |date=May 9, 2012 |title=Wisconsin Makes 12–12–12 'Aaron Rodgers Day' |url=http://gnb.scout.com/2/1185173.html |url-status=dead |archive-url=https://web.archive.org/web/20130701070113/http://gnb.scout.com/2/1185173.html |archive-date=July 1, 2013 |access-date=May 13, 2012 |work=Fox Sports}}</ref> He fini de season fourth insyd passing yards (4,434), touchdown passes (30), passer rating (103.2), den yards per attempt (8.2) as well as eighth insyd completion percentage (64.7%), while he sanso cam second among quarterbacks insyd rushing yards (316).<ref>{{Cite web |title=Quarterbacks by rushing yards, 2009 season |url=http://pfref.com/tiny/dkEhS |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=dkEhS |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Ein passing yardage make am second all-time insyd Packers history, behind only [[Lynn Dickey]] ein all-time single-season record.<ref>{{Cite web |title=Individual Records – Passing |url=http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |url-status=live |archive-url=https://web.archive.org/web/20210126102232/http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |archive-date=January 26, 2021 |access-date=January 8, 2011 |publisher=Packers.com}}</ref> Na ein passer rating of 103.2 sanso be third-highest insyd team history at de time, behind only [[Bart Starr]] ein 105.0 rating insyd 1966 den 104.3 rating insyd 1968 (minimum 150 attempts).<ref>{{Cite web |title=Green Bay Packers, 1950–2009, highest passer rating. |url=http://pfref.com/tiny/a4QtT |url-status=live |archive-url=https://web.archive.org/web/20211201192343/https://stathead.com/tools/tiny.fcgi?id=a4QtT |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref>
[[File:Aaron_Rodgers_-_December_27,_2009_2.jpg|thumb|Rodgers insyd 2009, before a snap]]
Insyd de Wild Card Round, de Packers play de Arizona Cardinals, de same team wey na dem previously beat de week before, 33–7.<ref>{{Cite web |last=Baum |first=Bob |date=January 4, 2010 |title=Rodgers shreds Cardinals backups in 33–7 rout |url=https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208022718/https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Rodgers den Cardinals quarterback [[Kurt Warner]] put on a show wey dem later rank second on NFL Network ein ''Top 10 Quarterback Duels''.<ref>{{Cite web |title=Top Ten Quarterback Duels |url=http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |url-status=live |archive-url=https://web.archive.org/web/20180101135801/http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |archive-date=January 1, 2018 |access-date=January 1, 2018 |publisher=National Football League}}</ref> Na Rodgers ein first pass be intercepted by [[Dominique Rodgers-Cromartie]].<ref>{{Cite web |title=Wild Card – Green Bay Packers at Arizona Cardinals – January 10th, 2010 |url=https://www.pro-football-reference.com/boxscores/201001100crd.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003908/https://www.pro-football-reference.com/boxscores/201001100crd.htm |archive-date=August 21, 2017 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Rodgers settle down after dat miscue, however, wey he fini de game completing 28 of 42 passes for 423 yards, plus four touchdown passes all insyd a second-half comeback. Ein 423 passing yards be de most by any quarterback insyd ein first playoff game as well as ein four touchdown passes den five total touchdowns.<ref>{{Cite book |last=Cohen |first=Robert W. |url=https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |title=The 50 Greatest Players in Green Bay Packers History |date=September 1, 2018 |publisher=Rowman & Littlefield |isbn=9781493031894 |language=en |access-date=September 13, 2019 |archive-url=https://web.archive.org/web/20210203205326/https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |archive-date=February 3, 2021 |url-status=live}}</ref> Warner shred de Packers dema second-ranked defense, completing 29 of 33 passes for 379 yards, five touchdowns, no interceptions, den a passer rating of 154.1. Despite Rodgers ein offensive efforts, de Packers loose de game wen he fumble on a controversial play insyd overtime. Na dem return de ball by [[Karlos Dansby]] for de winning touchdown insyd de 51–45 Cardinals victory.<ref>{{Cite news|last=Crouse|first=Karen|date=January 10, 2010|title=Cardinals' Defense Ends Shootout With Packers in Overtime|work=The New York Times|url=https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20190824010502/https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|archive-date=August 24, 2019}}</ref> Na e be de highest scoring playoff game insyd NFL history.<ref>{{Cite web |date=January 10, 2015 |title=Remembering The Day of the Highest Scoring Playoff Game in NFL History |url=http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |url-status=live |archive-url=https://web.archive.org/web/20191208022939/http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=ThePostGame.com}}</ref>
Secof ein regular season performance, Rodgers earn a trip to ein first Pro Bowl as de NFC ein third quarterback, behind [[Drew Brees]] den Brett Favre. However, after Favre drop out secof injury wey Brees replace am secof ein participation insyd Super Bowl XLIV, Rodgers cam be de NFC ein starter.<ref>{{Cite web |title=2009 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2009/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180821031640/https://www.pro-football-reference.com/years/2009/probowl.htm |archive-date=August 21, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2010: Super Bowl XLV season ====
Insyd 2010, Rodgers lead de Packers to a 2–0 start, buh then dem loose three of dema next four games, wey dey include back-to-back overtime losses. De two overtime defeats bring Rodgers ein record insyd overtime games to 0–5.<ref>{{Cite web |title=2010 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2010.htm |url-status=live |archive-url=https://web.archive.org/web/20180313175307/https://www.pro-football-reference.com/teams/gnb/2010.htm |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
At midseason, Rodgers already throw nine interceptions dem compare to only throwing seven all of de previous season, wey na he be 16th insyd de league plus an 85.3 passer rating.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 1–8 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Over de remainder of de regular season, however, ein play improve as he throw 16 touchdowns to only two interceptions, he plete 71.4% of ein passes, wey he get a passer rating of 122.0.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 9–16 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref>
Insyd {{nowrap|Week 13}}, insyd a 34–16 victory over de San Francisco 49ers, Rodgers get 298 passing yards den three touchdowns to earn ein first career NFC Offensive Player of de Week honor.<ref>{{Cite web |title=AP Game Story: Packers Topple 49ers, 34–16 |url=https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |url-status=live |archive-url=https://web.archive.org/web/20191208221408/https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=packers.com}}</ref><ref>{{Cite web |title=2010 NFL Week 13 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_13.htm |url-status=live |archive-url=https://web.archive.org/web/20180319084545/https://www.pro-football-reference.com/years/2010/week_13.htm |archive-date=March 19, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd {{nowrap|Week 14}}, he sustain ein second concussion of de season. Na dem put backup [[Matt Flynn (American football)|Matt Flynn]] into de game as Rodgers ein replacement. De Packers loose de game 7–3 to de Lions.<ref>{{Cite web |last=Lage |first=Larry |date=December 12, 2010 |title=Rodgers suffers concussion in Packers' 7–3 loss to Lions |url=https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |url-status=live |archive-url=https://web.archive.org/web/20191208023253/https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The Journal Times |agency=Associated Press}}</ref> Against de Patriots, Rodgers miss de next week ein regular season start, ending ein streak of consecutive starts at 45, wich be tied for de second longest insyd team history.<ref name="Green Bay Packers QB Matt Flynn has fine 1st road start">{{Cite web |author=<!-- not stated --> |date=June 16, 2015 |title=Matt Flynn has plenty to learn at minicamp as new Patriots backup QB |url=https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |url-status=live |archive-url=https://web.archive.org/web/20211206085002/https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |archive-date=December 6, 2021 |access-date=March 3, 2026 |website=Fox Sports |publisher= |location=}}</ref>
After dema road loss to de Patriots, de Packers find demaselves at 8–6 wey dem for win dema final two regular season games to qualify for de playoffs. Rodgers turn around de team ein performance; dem win dema final two regular season games, one of dem against de New York Giants, wer Rodgers plete 25 of 37 passes for 404 yards, plus four touchdown passes, den plus a passer rating of 139.9.<ref>{{Cite news|date=December 26, 2010|title=NFL: Rodgers, Packers hammer Giants|url=https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|url-status=live|archive-url=https://web.archive.org/web/20191208023159/https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|archive-date=December 8, 2019|access-date=December 8, 2019|website=New Haven Register|agency=Associated Press}}</ref> Na e be ein first regular season 400-yard passing game. For ein effort against de Giants, he earn ein second NFC Offensive Player of de Week honor for de 2010 season.<ref>{{Cite web |title=2010 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002511/https://www.pro-football-reference.com/years/2010/week_16.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de next game, dem defeat de Bears by a score of 10–3 insyd de regular season finale.<ref name="Packers 10, Bears 3: Nothing Comes Easy">{{Cite web |last=Wilde |first=Jason |date=January 2, 2011 |title=Packers 10, Bears 3: Nothing Comes Easy |url=http://www.channel3000.com/sports/26347682/detail.html |url-status=dead |archive-url=https://web.archive.org/web/20110208054239/http://www.channel3000.com/sports/26347682/detail.html |archive-date=February 8, 2011 |access-date=January 24, 2011 |website=Channel3000.com}}</ref>
Na dem name Rodgers de FedEx Air NFL Player of de Year for ein passing performance insyd de 2010 season.<ref>{{Cite web |title=Aaron Rodgers voted FedEx Air NFL Player of the Year |url=http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |url-status=dead |archive-url=https://web.archive.org/web/20110225154931/http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |archive-date=February 25, 2011 |access-date=February 2, 2011 |publisher=Packers.com}}</ref>
[[File:Aaron_Rodgers_-_January_2,_2011_4.jpg|right|thumb|Rodgers dey greet de fans insyd Lambeau Field during de 2010 season ein finale against de Bears]]
Plus a 10–6 record, de Packers enter de playoffs as a Wild Card den de {{nowrap|No. 6}} seed. Insyd de Wild Card Round, dem defeat de {{nowrap|No. 3}} seeded Eagles 21–16.<ref>{{Cite web |date=January 9, 2011 |title=Rodgers, Packers Beat Eagles 21–16 |url=https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |url-status=live |archive-url=https://web.archive.org/web/20191208023430/https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=CBS – New York}}</ref> Insyd de Divisional Round, Rodgers plete 31 of 36 pass attempts for 366 yards den four touchdowns insyd a 48–21 blowout victory over de {{nowrap|No. 1}} seeded Atlanta Falcons.<ref>{{Cite news|last=Newberry|first=Paul|date=January 16, 2011|title=Rodgers stars in Green Bay's 48–21 rout of Falcons|publisher=AP via Yahoo Sports|url=https://sports.yahoo.com/nfl/recap?gid=20110115001|url-status=live|access-date=January 24, 2011|archive-url=https://web.archive.org/web/20110119180042/https://sports.yahoo.com/nfl/recap?gid=20110115001|archive-date=January 19, 2011}}</ref> Na e be de most points dem score insyd Packers postseason history.<ref>{{Cite web |title=Green Bay Packers Playoff History |url=https://www.pro-football-reference.com/teams/gnb/playoffs.htm |url-status=live |archive-url=https://web.archive.org/web/20161220082023/http://www.pro-football-reference.com/teams/gnb/playoffs.htm |archive-date=December 20, 2016 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> During de contest, Rodgers tie an NFL record for consecutive playoff games plus at least three touchdown passes (3 games). Rodgers sanso set an NFL record by becoming de only quarterback to pass for ten touchdowns dem combine thru three consecutive playoff games. On {{nowrap|January 23, 2011,}} Rodgers get a 55.4 passer rating as de Packers beat de {{nowrap|No. 2}} seed Chicago Bears 21–14 win insyd de NFC Championship.<ref>{{Cite news|date=January 23, 2011|title=NFC championship: Aaron Rodgers leads Packers past Bears 21–14|work=East Bay Times|agency=Associated Press|url=https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20200724211418/https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|archive-date=July 24, 2020}}</ref>
After winning de NFC Championship, de Packers earn a trip to Super Bowl XLV against de Pittsburgh Steelers. Insyd de game, Rodgers plete 24 of 39 pass attempts for 304 yards den three touchdowns insyd de 31–25 win, wey na dem name am Super Bowl MVP for ein performance.<ref name="Layden2011">{{Cite magazine|last=Layden|first=Tim|date=February 14, 2011|title=Green And Golden: Behind the poise and precision of quarterback Aaron Rodgers and the gutsy contributions of a host of role players, the Packers burnished their championship legacy with a memorable 31—25 victory over Pittsburgh in Super Bowl XLV|url=http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|url-status=dead|archive-url=https://web.archive.org/web/20131029203436/http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|archive-date=October 29, 2013|access-date=February 11, 2011|magazine=Sports Illustrated}}</ref><ref>{{Cite web |date=February 6, 2011 |title=Aaron Rodgers tosses 3 TD passes as Packers drop Steelers to win Super Bowl XLV |url=http://espn.go.com/nfl/recap?gameId=310206009 |url-status=dead |archive-url=https://web.archive.org/web/20110225151826/http://espn.go.com/nfl/recap?gameId=310206009 |archive-date=February 25, 2011 |access-date=February 7, 2011 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Dis ultimately go be ein only Super Bowl appearance plus de Packers.
From ein playoff performance, Rodgers cam be only se third player insyd NFL history to pass for over 1,000 yards insyd a single postseason wey he sanso cam be one of only four quarterbacks to record over 300 yards passing, plus at least three touchdown passes, den no interceptions insyd a Super Bowl.<ref>{{Cite web |title=Super Bowl, 300+ pass yds, 3+ TD, 0 Int |url=http://pfref.com/tiny/1posa |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=1posa |archive-date=December 1, 2021 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> He fini plus 1,094 passing yards, nine touchdown passes, two rushing touchdowns, den two interceptions, while completing 68.2% of ein passes for a passer rating of 109.8.<ref>{{Cite web |title=Aaron Rodgers Career Playoff Stats |url=https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |url-status=live |archive-url=https://web.archive.org/web/20220427191344/https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |archive-date=April 27, 2022 |access-date=April 27, 2022 |website=StatMuse |language=en}}</ref> From dis postseason, Rodgers sanso cam be de only player to pass for at least 900 yards den rush for at least two touchdowns insyd a single postseason.<ref>{{Cite web |title=Playoffs, 900+ pass yds, 2 rush TDs |url=https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |url-status=live |archive-url=https://web.archive.org/web/20200728195759/https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |archive-date=July 28, 2020 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Na dem rank am 11th by ein fellow players on de ''NFL Top 100'' Players of 2011.<ref>{{Cite web |title=2011 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20210308170627/https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |archive-date=March 8, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2011: First MVP ====
[[File:Aaron_Rodgers_drops_back_(cropped).jpg|thumb|Rodgers dey drop back for a pass insyd 2011.]]
Secof de 2011 NFL lockout, de Packers den Rodgers no schedule unofficial off-season workouts, despite chaw teams doing so.<ref name="allgbp">{{Cite web |last=Burke |first=Kris |date=July 2, 2011 |title=No Workouts? No Problem for the Packers |url=http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-url=https://web.archive.org/web/20161229101517/http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=All Green Bay Packers}}</ref> Rodgers den de Packers quickly quel any concerns over dema readiness by defeating de Saints, wey schedule off-season workouts, 42–34. He get 312 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 8, 2011 |title=Rodgers throws 3 TDs, Packers outlast Saints 42–34 |url=https://www.dailyherald.com/article/20110908/sports/709089632/ |url-status=live |archive-url=https://web.archive.org/web/20191208023757/https://www.dailyherald.com/article/20110908/sports/709089632/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Daily Herald |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 1 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_1.htm |url-status=live |archive-url=https://web.archive.org/web/20180830192658/https://www.pro-football-reference.com/years/2011/week_1.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> After de game, Rodgers say insyd de press conference, ''"I was going to ask myself, what would have happened if we had offseason workouts? I mean, could we have started any faster and scored more points tonight?"''<ref>{{Cite web |last=Darlington |first=Jeff |date=May 25, 2016 |title=Drew Brees' absence no big deal, but July 16 deadline looms |url=https://www.nfl.com/news/drew-brees-absence-no-big-deal-but-july-16-deadline-looms-09000d5d82956d8b |url-status=live |archive-url=https://web.archive.org/web/20161208145630/http://www.nfl.com/news/story/09000d5d82956d8b/article/drew-brees-absence-no-big-deal-but-july-16-deadline-looms |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref>
Insyd Week 4, a 49–23 victory over de Denver Broncos, Rodgers get 408 passing yards, four touchdowns, den one interception wey he run for two touchdowns to earn anoda NFC Offensive Player of de Week honor.<ref>{{Cite web |date=October 2, 2011 |title=Rodgers' big day helps Packers beat Broncos 49–23 |url=https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |url-status=live |archive-url=https://web.archive.org/web/20191208025355/https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Duluth News Tribune}}</ref><ref>{{Cite web |title=2011 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180401100045/https://www.pro-football-reference.com/years/2011/week_4.htm |archive-date=April 1, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, a 24–3 victory over de St. Louis Rams, Rodgers convert on a career-high 93-yard touchdown pass to [[Jordy Nelson]].<ref>{{Cite web |last=Jenkins |first=Chris |date=October 16, 2011 |title=Packers stay perfect at 6–0, beat Rams 24–3 |url=http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |url-status=live |archive-url=https://web.archive.org/web/20181211010230/http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |archive-date=December 11, 2018 |access-date=December 10, 2018 |website=The Salt Lake Tribune}}</ref> Insyd Week 9, a 45–38 victory over de Chargers, he get 247 passing yards den four touchdowns to earn ein third NFC Offensive Player of de Week honor for de 2011 season.<ref>{{Cite web |date=November 6, 2011 |title=Packers survive Chargers' late push as Aaron Rodgers delivers again |url=https://www.espn.com/nfl/game?gameId=311106024 |url-status=live |archive-url=https://web.archive.org/web/20191210232803/https://www.espn.com/nfl/game?gameId=311106024 |archive-date=December 10, 2019 |access-date=December 8, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 9 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_9.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231451/https://www.pro-football-reference.com/years/2011/week_9.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers get off to a 13–0 start insyd 2011, tying de NFC record for most consecutive wins to start a season, buh na dem be upset by de Kansas City Chiefs 19–14 insyd week 15, ending dema winning streak at 19 games, de second-longest winning streak insyd NFL history.<ref>{{Cite web |title=Green Bay Packers at Kansas City Chiefs – December 18th, 2011 |url=https://www.pro-football-reference.com/boxscores/201112180kan.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211142/https://www.pro-football-reference.com/boxscores/201112180kan.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2011.htm |url-status=live |archive-url=https://web.archive.org/web/20171115033715/https://www.pro-football-reference.com/teams/gnb/2011.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de season plus 4,643 passing yards, 45 touchdown passes, den six interceptions, good for a passer rating of 122.5, wich as of 2024 be de highest single-season passer rating insyd NFL history.<ref>{{Cite web |title=Aaron Rodgers 2011 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |url-status=live |archive-url=https://web.archive.org/web/20180101135748/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Ein passing yards, touchdown passes, den passer rating set single-season franchise records.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to passer rating, Rodgers lead de league insyd touchdown to interception ratio (7.5, fourth-best all-time), touchdowns passing % (9.0%, second highest all-time), den yards per attempt (9.2, fourth-highest all-time since becoming an official stat insyd 1970), while finishing second insyd both touchdown passes (45, sixth-highest all-time) den completion percentage (68.3%), as well as fifth insyd passing yards. He earn NFC Offensive Player of de Month awards for September, October, den November, den FedEx Air Player of de Week six times (Weeks 4, 5, 6, 7, 9, den 13). Insyd week four, against de Denver Broncos, Rodgers cam be de only quarterback insyd NFL history to record over 400 passing yards plus four touchdown passes, while sanso dey rush for two touchdowns insyd de same game.<ref>{{Cite web |title=List of players with at least 400 passing yards, four passing touchdowns, and two rushing touchdowns in a single game. NFL history |url=http://pfref.com/tiny/Io0Od |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=Io0Od |archive-date=December 1, 2021 |access-date=December 6, 2016 |website=[[Pro Football Reference]]}}</ref> Na he de winner of de 2011 Galloping gobbler as MVP of de Thanksgiving game between de Packers den de Lions, a 27–15 Green Bay victory, wey he tie an NFL record for consecutive games plus at least two touchdown passes (13).
De Packers cam be de fifth team insyd NFL history to finish de regular season plus a 15–1 record.<ref>{{Cite web |last=Kruse |first=Zach |date=January 2, 2012 |title=Green Bay Packers Are 5th 15–1 Team in NFL History: How Did the First 4 Finish? |url=https://bleacherreport.com/articles/1007036-green-bay-packers-are-5th-15-1-team-in-nfl-history-how-did-the-first-4-finish |access-date=May 30, 2024 |website=Bleacher Report |language=en}}</ref> Rodgers play insyd 15 of de 16 games, plus de only exception be Week 17 against de Lions, a game insyd wich Rodgers be rested after de club clinched home-field advantage for de playoffs de previous week. Insyd de game, Rodgers assist backup quarterback Matt Flynn insyd ein stellar 480-yard, six-touchdown performance by helping call some plays.<ref>{{Cite web |last=Samano |first=Simon |date=January 1, 2012 |title=Rodgers preps Flynn, calls plays during backup QB's big day |url=https://www.nfl.com/news/rodgers-preps-flynn-calls-plays-during-backup-qb-s-big-day-09000d5d825a02db |url-status=live |archive-url=https://web.archive.org/web/20190829082359/http://www.nfl.com/news/story/09000d5d825a02db/article/rodgers-preps-flynn-calls-plays-during-backup-qbs-big-day |archive-date=August 29, 2019 |access-date=September 13, 2019 |publisher=National Football League}}</ref> De Packers dema offense set franchise record for points scored insyd a season plus 560, wich as of 2016 be de third-most ever behind only de 2007 Patriots den 2013 Broncos.<ref>{{Cite web |title=All Time Most Points Scored by an NFL Team in a Season |url=https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-url=https://web.archive.org/web/20130802114230/https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-date=August 2, 2013 |access-date=December 6, 2016 |website=Sporting Charts}}</ref>
Rodgers set numerous NFL records insyd 2011. He record a passer rating of over 100.0 insyd thirteen games during de season, wey dey include twelve games in a row (both records), den a passer rating of 110.0 anaa higher insyd twelve games, wey dey include eleven in a row (sanso be records). Rodgers sanso win de league ein MVP award, receiving 48 of de 50 votes (de oda two dey go to [[Drew Brees]]). He sanso fini second, behind Brees, for de AP Offensive Player of de Year award.<ref>{{Cite web |date=February 4, 2012 |title=Saints' Brees wins AP Offensive Player of the Year award |url=https://www.nfl.com/news/saints-brees-wins-ap-offensive-player-of-the-year-award-09000d5d8269e4fe |url-status=live |archive-url=https://web.archive.org/web/20161208145625/http://www.nfl.com/news/story/09000d5d8269e4fe/article/saints-brees-wins-ap-offensive-player-of-the-year-award |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League |agency=Associated Press}}</ref> Rodgers ein 2011 season later be ranked as de third greatest passing season of all time by ESPN insyd 2013, wey na he be regarded as de most efficient.<ref name="Efficient QBS">{{Cite web |last=Seifert |first=Kevin |date=October 3, 2013 |title=Top 10 greatest quarterback seasons |url=https://www.espn.com/blog/nflnation/post/_/id/90974/ |url-status=live |archive-url=https://web.archive.org/web/20141103072453/http://espn.go.com/blog/nflnation/post/_/id/90974/ |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref>
Na de Packers be upset by de eventual Super Bowl champion New York Giants insyd de Divisional Round by de score of 37–20. De Packers dema receiving corps drop six passes insyd de loss wey Rodgers fini de game plus 264 passing yards, two touchdown passes, den an interception on ein last pass attempt.<ref>{{Cite news|last=Wang|first=Gene|date=January 15, 2012|title=NFL playoffs 2012: New York Giants stun Green Bay Packers, 37–20|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|url-status=live|access-date=December 8, 2019|archive-url=https://web.archive.org/web/20180906090329/https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|archive-date=September 6, 2018}}</ref> De 2011 Packers cam be de only team insyd NFL history to go 15–1 wey dem no win a playoff game, as well as dem be de fourth consecutive team to win at least 15 games wey dem no win de Super Bowl.<ref>{{Cite web |last=Emery |first=Mark |date=January 26, 2016 |title=As Carolina Panthers prepare for Super Bowl 50, a look at the fates of six previous teams that won at least 15 in regular season |url=http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |url-status=live |archive-url=https://web.archive.org/web/20161214152104/http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |archive-date=December 14, 2016 |access-date=December 12, 2016 |website=Daily News |location=New York}}</ref> Na dem name Rodgers to de Pro Bowl for ein 2011 season to go along plus a First-team All-Pro honor.<ref>{{Cite web |title=2011 NFL All-Pros |url=https://www.pro-football-reference.com/years/2011/allpro.htm |url-status=live |archive-url=https://web.archive.org/web/20180830185703/https://www.pro-football-reference.com/years/2011/allpro.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2011/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180830174119/https://www.pro-football-reference.com/years/2011/probowl.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> He be voted by ein fellow players as de best player insyd de league on de ''NFL Top 100'' Players of 2012.<ref>{{Cite web |title=2012 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190322201849/https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |archive-date=March 22, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2012 ====
Rodgers den de Packers start off de 2012 season plus a 30–22 loss to de 49ers.<ref>{{Cite web |last=Jenkins |first=Chris |date=September 10, 2012 |title=49ers stop Rodgers' rally, beat Packers 30–22 |url=https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025344/https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Plus de loss, Rodgers loose ein bet plus de music group Boyz II Men, wey he for wear an Alex Smith jersey during de next week of practice.<ref name="boyz">{{Cite web |last=Hanzus |first=Dan |date=September 8, 2012 |title=Aaron Rodgers' head-scratching bet with Boyz II Men |url=https://www.nfl.com/news/aaron-rodgers-head-scratching-bet-with-boyz-ii-men-0ap1000000059772 |url-status=live |archive-url=https://web.archive.org/web/20161220224204/http://www.nfl.com/news/story/0ap1000000059772/article/aaron-rodgers-headscratching-bet-with-boyz-ii-men |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Had de Packers win de game, Boyz II Men go sing de national anthem during dema next home game at Lambeau.<ref name="boyz" />
Insyd Week 4, a 28–27 victory over de Saints, Rodgers get 319 passing yards, four touchdowns, den one interception to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 28, 2012 |title=Rodgers throws late TD, Packers beat Saints 28–27 |url=https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |url-status=live |archive-url=https://web.archive.org/web/20191208025349/https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Twin Cities Pioneer Press}}</ref><ref>{{Cite web |title=2012 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020203/https://www.pro-football-reference.com/years/2012/week_4.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de undefeated Houston Texans, he tie de franchise record by throwing six touchdown passes, insyd a 42–24 victory, to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Houston Texans – October 14th, 2012 |url=https://www.pro-football-reference.com/boxscores/201210140htx.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081312/https://www.pro-football-reference.com/boxscores/201210140htx.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2012 NFL Week 6 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_6.htm |url-status=live |archive-url=https://web.archive.org/web/20210308120125/https://www.pro-football-reference.com/years/2012/week_6.htm |archive-date=March 8, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> De Texans allow only six total touchdown passes during de season up to dat point.<ref>{{Cite web |title=2012 Houston Texans, opponent TD log |url=https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |url-status=live |archive-url=https://web.archive.org/web/20180724093239/https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |archive-date=July 24, 2018 |access-date=December 31, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dis spark a five-game winning streak wich Rodgers plete 65.7% of ein passes for 1,320 yards, 17 touchdowns, two interceptions, den a passer rating of 119.1.<ref>{{Cite web |title=Rodgers, 2012, games 6–10 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227055845/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> During dat stretch, na dem name Rodgers NFC Offensive Player of de Month for October.<ref>{{Cite web |date=March 27, 2015 |title=Packers QB Rodgers leads group of NFC's best for October |url=https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |url-status=live |archive-url=https://web.archive.org/web/20200724202413/https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |archive-date=July 24, 2020 |access-date=September 13, 2019 |publisher=Fox News}}</ref> Insyd Week 15, Rodgers throw for 291 yards den three touchdowns to lead de Packers past de Bears, 21–13, making dem NFC North champions for de second consecutive year.<ref>{{Cite web |date=December 16, 2012 |title=Packers bounce Bears to clinch NFC North |url=https://www.wtsp.com/article/sports/nfl/packers-bounce-bears-to-clinch-nfc-north/67-376020825 |access-date=December 8, 2019 |publisher=WTSP}}</ref> Insyd de season finale, despite Rodgers go 28 of 40 for 365 yards, four touchdowns, no interceptions den a passer rating of 131.8, de Packers loose 37–34 against de Vikings.<ref>{{Cite web |date=December 30, 2012 |title=Vikings beat Packers 37–34, earn playoff berth |url=https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |url-status=live |archive-url=https://web.archive.org/web/20191208025350/https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=HeraldNet.com |agency=Associated Press}}</ref> Dis end de Packers dema twelve-game winning streak against NFC North opponents.
De Packers fini plus an 11–5 record, first insyd de NFC North, wey dem clinch de #3-seed insyd de NFC playoffs.<ref>{{Cite web |title=2012 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2012 |url-status=live |archive-url=https://web.archive.org/web/20180127072019/https://www.pro-football-reference.com/years/2012/ |archive-date=January 27, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers lead de league for de second straight year insyd passer rating (108.0) touchdowns passing % (7.1%), den touchdown-to-interception ratio (4.875), while finishing second insyd touchdown passes (39), third insyd completion percentage (67.2%), fifth insyd yards per attempt (7.78), den eighth insyd passing yards (4,295).<ref>{{Cite web |title=Aaron Rodgers 2012 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |url-status=live |archive-url=https://web.archive.org/web/20180101135930/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd de playoffs, de Packers defeat de Minnesota Vikings 24–10 insyd de Wild Card Round. Rodgers plete 23 of 33 passes to ten different players for 274 yards den a touchdown.<ref>{{Cite web |date=January 5, 2013 |title=Ponder-less Vikings fall to Packers in wild-card game |url=https://www.nfl.com/news/ponder-less-vikings-fall-to-packers-in-wild-card-game-0ap1000000122612 |url-status=live |archive-url=https://web.archive.org/web/20191208025349/http://www.nfl.com/news/story/0ap1000000122612/printable/ponderless-vikings-fall-to-packers-in-wildcard-game |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=NFL.com}}</ref> De 49ers beat dema 45–31 insyd de Divisional Round.<ref>{{Cite web |last=Farmer |first=Sam |date=January 13, 2013 |title=NFC playoffs: 49ers topple Packers 45–31 |url=https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025348/https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Chicago Tribune}}</ref> Rodgers plete 26 of 39 passes for 257 yards, two touchdowns, den an interception, while sanso dey rush for 28 yards, insyd de losing effort. He earn ein third career Pro Bowl nomination for ein performance insyd de 2012 season.<ref>{{Cite web |title=2012 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2012/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180316023449/https://www.pro-football-reference.com/years/2012/probowl.htm |archive-date=March 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2013.<ref>{{Cite web |title=2013 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200406154219/https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |archive-date=April 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2013 ====
On April 26, 2013, de Packers den Rodgers agree to a 5-year, $110 million contract extension wey dey make am de highest paid player insyd NFL history.<ref>{{Cite web |last1=Schefter |first1=Adam |last2=Mortensen |first2=Chris |date=April 26, 2013 |title=Source: Rodgers agrees to $110M extension |url=https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |url-status=live |archive-url=https://web.archive.org/web/20210414204446/https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |archive-date=April 14, 2021 |access-date=April 14, 2021 |website=[[ESPN.com]] |agency=Associated Press}}</ref> De Packers begin dema 2013 season against de reigning NFC champions, de 49ers, de team wey sanso end dema playoff run de previous season. Rodgers go 21 for 37 insyd completions, 333 yards, three touchdowns den an interception insyd de 34–28 loss.<ref>{{Cite web |title=Green Bay Packers at San Francisco 49ers – September 8th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309080sfo.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080800/https://www.pro-football-reference.com/boxscores/201309080sfo.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers get a career-high 480 passing yards to tie de franchise record insyd de 38–20 home-opener win against de Washington Redskins. He earn NFC Offensive Player of de Week for ein effort against de Redskins.<ref>{{Cite web |title=Washington Redskins at Green Bay Packers – September 15th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309150gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081525/https://www.pro-football-reference.com/boxscores/201309150gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2013 NFL Week 2 Leaders & Scores |url=https://www.pro-football-reference.com/years/2013/week_2.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020211/https://www.pro-football-reference.com/years/2013/week_2.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 335 passing yards insyd de first half set a club record.<ref name="w930">{{cite web |last=Huber |first=Bill |date=September 15, 2013 |title=Monster Half Propels Rodgers to Record Day |url=https://247sports.com/nfl/green-bay-packers/Article/monster-half-propels-rodgers-to-record-day-105030089/ |access-date=October 23, 2024 |website=247Sports}}</ref> He sanso cam be de first quarterback since [[Y. A. Tittle]] insyd 1962 to throw for at least 480 yards, four touchdowns den no interceptions insyd a game.<ref>{{Cite web |title=480+ passing yards, 4+ passing touchdowns, no interceptions, NFL history |url=http://pfref.com/tiny/rQ3Cc |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=rQ3Cc |archive-date=December 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers see ein NFL record of 41 consecutive games widout throwing multiple interceptions come to an end insyd a loss to de Cincinnati Bengals by de score of 34–30.<ref>{{Cite web |last=White |first=Scott |date=September 22, 2013 |title=Aaron Rodgers doesn't play usual mistake-free football |url=https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |url-status=live |archive-url=https://web.archive.org/web/20201025173245/https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |archive-date=October 25, 2020 |access-date=September 13, 2019 |website=CBS Sports}}</ref><ref>{{Cite web |title=Green Bay Packers at Cincinnati Bengals – September 22nd, 2013 |url=https://www.pro-football-reference.com/boxscores/201309220cin.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081320/https://www.pro-football-reference.com/boxscores/201309220cin.htm |archive-date=August 29, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
After de loss to de Bengals, de Packers start rolling, winning dema next four games. Against de Ravens, de Packers loose two receivers: [[Randall Cobb (American football)|Randall Cobb]] den [[James Jones (wide receiver)|James Jones]]. Na Cobb be sidelined plus a broken leg den Jones plus a sprained PCL.<ref>{{Cite web |title=Green Bay Packers' Randall Cobb, James Jones injured |url=https://www.nfl.com/news/green-bay-packers-randall-cobb-james-jones-injured-0ap2000000261308 |url-status=live |archive-url=https://web.archive.org/web/20170722195052/http://www.nfl.com/news/story/0ap2000000261308/article/green-bay-packers-randall-cobb-james-jones-injured |archive-date=July 22, 2017 |access-date=September 13, 2019 |publisher=National Football League}}</ref> Against de Cleveland Browns, na dem cart tight end [[Jermichael Finley]] off de field plus a bruised spinal cord, leaving Rodgers widout three of ein top four offensive weapons.<ref>{{Cite web |last=Lee |first=Caroline |date=October 21, 2013 |title=Jermichael Finley, Packers tight end, in ICU with neck injury |url=https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |url-status=live |archive-url=https://web.archive.org/web/20190203150423/https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |archive-date=February 3, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref> De next week against de Vikings, Rodgers plete 24 of 29 passes insyd a 44–31 victory.<ref>{{Cite web |title=Green Bay Packers at Minnesota Vikings – October 27th, 2013 |url=https://www.pro-football-reference.com/boxscores/201310270min.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080251/https://www.pro-football-reference.com/boxscores/201310270min.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
At home against de Bears insyd Week 9, na Rodgers be sacked by [[Shea McClellin]]. He fracture ein left clavicle insyd de process, den de speculation for ein return dem range from a few weeks to an indefinite timetable wey cam be a weekly spectacle of whether anaa wen he fi be cleared to san play.<ref>{{Cite web |date=November 5, 2013 |title=Aaron Rodgers has fractured collarbone, could miss a month |url=http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |url-status=live |archive-url=https://web.archive.org/web/20131111030547/http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |archive-date=November 11, 2013 |access-date=November 6, 2013 |website=[[The Denver Post]] |agency=Associated Press}}</ref><ref name="Aaron Rodgers wasn">{{Cite web |last=Mortensen |first=Chris |author-link=Chris Mortensen |date=December 22, 2013 |title=Aaron Rodgers wasn't close to return |url=https://www.espn.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |url-status=live |archive-url=https://web.archive.org/web/20141103072203/http://espn.go.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref><ref name="Rodgers not ready to play">{{Cite web |last=Dougherty |first=Pete |date=December 19, 2013 |title=Packers' Aaron Rodgers 'looks ready to play' but probably won't |url=https://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |url-status=live |archive-url=https://web.archive.org/web/20150805151227/http://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |archive-date=August 5, 2015 |access-date=November 3, 2014 |website=USA Today}}</ref> Before Rodgers break ein collarbone, de Packers win four straight games to climb to de top of de NFC North division plus a 5–2 record. Plus Rodgers injured den unable to play, de Packers go winless over de next five weeks to fall to 5–6–1 on de season.<ref>{{Cite web |title=Green Bay Packers 2013 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2013/gamelog/ |access-date=October 23, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
After rallying insyd December behind re-acquired backup quarterback Matt Flynn,<ref name="Backup Flynn">{{Cite web |last=Dunne |first=Tyler |date=December 16, 2013 |title=Stoic Matt Flynn delivers Packers win |url=http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |url-status=live |archive-url=https://web.archive.org/web/20141103071905/http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=web |publisher=Milwaukee-Wisconsin Journal Sentinel}}</ref> de Packers fight dema way back to a 7–7–1 record going into de final week of de season. On December 26, Packers head coach Mike McCarthy announce Rodgers go return den start insyd de season-finale showdown against de Chicago Bears at Soldier Field for de NFC North championship.<ref>{{Cite news|last=Breech|first=John|date=December 26, 2013|title=Packers make it official: QB Aaron Rodgers will start vs. Bears|work=CBS Sports|url=http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|url-status=live|access-date=December 27, 2013|archive-url=https://web.archive.org/web/20131227003701/http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|archive-date=December 27, 2013}}</ref> Returning from de injury, Rodgers throw for 318 yards, two touchdowns, den two interceptions insyd de regular season finale against de Bears.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – December 29th, 2013 |url=https://www.pro-football-reference.com/boxscores/201312290chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081317/https://www.pro-football-reference.com/boxscores/201312290chi.htm |archive-date=August 29, 2017 |access-date=May 5, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Trailing 27–28 plus under a minute to go insyd de game den facing de third 4th down of de drive, a 4th & 8 from de 48-yard line, Rodgers connect plus Cobb, wey sanso dey return for ein first game since breaking ein leg insyd Week 6, for a 48-yard game-winning touchdown to clinch de NFC North den earn de right to host a home playoff game against de San Francisco 49ers as de fourth seed.<ref>{{Cite magazine|last=Bedard|first=Greg A.|date=December 30, 2013|title=Answered Prayers|url=https://www.si.com/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|url-status=live|archive-url=https://web.archive.org/web/20211201192432/https://www.si.com/nfl/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|archive-date=December 1, 2021|access-date=September 13, 2019|magazine=Sports Illustrated}}</ref> Rodgers win de 2013 GMC Never Say Never Award for de come-from-behind, division-winning touchdown pass. Rodgers fini fifth insyd de league insyd passer rating (104.9), completion percentage (66.6%), den yards per game (282) while he sanso fini second insyd yards per attempt (8.75).<ref>{{Cite web |title=2013 NFL Passing |url=https://www.pro-football-reference.com/years/2013/passing.htm |access-date=July 17, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
Rodgers san lead de Packers to de playoffs, dis time plus an 8–7–1 record wey na dem be up against de team wey eliminate dem last year insyd de Divisional Round of de playoffs, de 49ers.<ref>{{Cite web |title=2013 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2013.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030637/https://www.pro-football-reference.com/teams/gnb/2013.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de 49ers for de fourth consecutive time, 23–20 on a last second field goal at Lambeau Field, insyd de Wild Card Round. Rodgers record only 177 yards passing, ein lowest insyd a playoff game, den one touchdown pass.<ref>{{Cite web |title=Wild Card – San Francisco 49ers at Green Bay Packers – January 5th, 2014 |url=https://www.pro-football-reference.com/boxscores/201401050gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170821043340/https://www.pro-football-reference.com/boxscores/201401050gnb.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> He sanso be ranked No. 11 by ein fellow players on de ''NFL Top 100'' Players of 2014.<ref>{{Cite web |title=2014 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112164602/https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2014: Second MVP ====
[[File:Aaron_rodgers_2014.jpg|right|thumb|Rodgers insyd 2014]]
De Packers dema 2014 regular season debut cam against de defending Super Bowl champion Seahawks—a game insyd wich dem go go on to loose 36–16.<ref>{{Cite web |title=Green Bay Packers at Seattle Seahawks – September 4th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409040sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182750/https://www.pro-football-reference.com/boxscores/201409040sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 2, de team begin de game plus a 21–3 deficit against de Jets, bug dem cam back wey dem win 31–24.<ref>{{Cite web |title=New York Jets at Green Bay Packers – September 14th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409140gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829120234/https://www.pro-football-reference.com/boxscores/201409140gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De 18-point comeback mark de biggest comeback insyd Rodgers ein career.<ref>{{Cite web |last=Imig |first=Paul |date=September 14, 2014 |title=Rodgers overcomes 'nerves' to complete biggest comeback of career |url=http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |url-status=live |archive-url=https://web.archive.org/web/20140918022944/http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |archive-date=September 18, 2014 |access-date=September 13, 2019 |work=Fox Sports}}</ref> Insyd de third week of de season, de Packers offense be shut down by de Lions dema defense, 19–7.<ref>{{Cite web |title=Green Bay Packers at Detroit Lions – September 21st, 2014 |url=https://www.pro-football-reference.com/boxscores/201409210det.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211151/https://www.pro-football-reference.com/boxscores/201409210det.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Na de Packers dema 7 points be de fewest points dem allow insyd a game Rodgers fini; na de 223 yards of total Packer offense be de lowest since Rodgers take over at quarterback den ein 162 passing yards sanso be a career low. For de third consecutive season, na de Packers be off to a 1–2 start. Insyd those three games, Rodgers throw five touchdowns den one interception combined, plus a passer rating of 95.1. Amid widespread concern, Rodgers telll de fans den de media, "''R-E-L-A-X. Relax. We're going to be OK."''<ref>{{Cite web |last=Wilde |first=Jason |date=September 23, 2014 |title=R-E-L-A-X (ESPN Wisconsin) |url=http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |url-status=dead |archive-url=https://web.archive.org/web/20151101051643/http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |archive-date=2015-11-01 |access-date=December 7, 2014}}</ref>
After dema loss to de Lions, de Packers go on a four-game win streak, during wich, Rodgers throw 13 touchdowns plus no interceptions.<ref>{{Cite web |title=Aaron Rodgers 2014 Game Log (Weeks 4–7) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231025726/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |archive-date=December 31, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> Insyd Week 4, a 38–17 victory over de Bears, he get 302 passing yards den four touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – September 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409280chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081419/https://www.pro-football-reference.com/boxscores/201409280chi.htm |archive-date=August 29, 2017 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180321130559/https://www.pro-football-reference.com/years/2014/week_4.htm |archive-date=March 21, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de Miami Dolphins, Rodgers lead de Packers to a game-winning drive plus less dan two minutes remaining. He plete a 4th & 10 pass to wide receiver Jordy Nelson wey he mimick [[Dan Marino]] ein famous fake spike play by completing a pass to wide receiver [[Davante Adams]] to get to within four yards of de endzone later insyd de drive.<ref>{{Cite web |last=Sherman |first=Rodger |date=October 12, 2014 |title=Packers use fake spike to beat Dolphins |url=https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |archive-date=March 30, 2019 |access-date=March 7, 2019 |website=SBNation.com}}</ref> Rodgers then plete a touchdown pass to tight end [[Andrew Quarless]] to win de game 27–24.<ref name="gmc">{{Cite web |title=2014 GMC Never Say Never Moment |url=http://www.nfl.com/voting/never-say-never/2014/REG/6 |url-status=live |archive-url=https://web.archive.org/web/20161220230141/http://www.nfl.com/voting/never-say-never/2014/REG/6 |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Dis play go later win Rodgers de GMC Never Say Never Moment of de Year Award.<ref name="gmc" /> Insyd Week 7, a 38–17 victory over de Carolina Panthers, na he be 19-of-22 for 255 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Carolina Panthers at Green Bay Packers – October 19th, 2014 |url=https://www.pro-football-reference.com/boxscores/201410190gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002513/https://www.pro-football-reference.com/boxscores/201410190gnb.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 7 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_7.htm |url-status=live |archive-url=https://web.archive.org/web/20210928154945/https://www.pro-football-reference.com/years/2014/week_7.htm |archive-date=September 28, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd a Week 8 loss against de Saints, Rodgers fini 28 of 39 for 418 yards, plus one touchdown pass den two interceptions, ending ein 212 consecutive attempts widout an interception streak<ref name="packsaintsoct">{{Cite web |last=Imig |first=Paul |date=October 27, 2014 |title=5 things we learned: Packers at Saints |url=http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |url-status=live |archive-url=https://web.archive.org/web/20170105180746/http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |archive-date=January 5, 2017 |access-date=January 5, 2017 |work=Fox Sports}}</ref>—de second longest insyd team history. Insyd de game, Rodgers injure ein hamstring wich appear to get an effect on ein play for de remainder of de game.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 27, 2014 |title=Aaron Rodgers of Green Bay Packers injures hamstring in loss |url=https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |url-status=live |archive-url=https://web.archive.org/web/20200818134022/https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |archive-date=August 18, 2020 |access-date=September 13, 2019 |website=[[ESPN.com]]}}</ref>
[[File:Rodgers_handing_off_2014.jpg|left|thumb|Rodgers handing de ball off to running back [[Eddie Lacy]] insyd 2014]]
Insyd Week 10, against de Chicago Bears, Rodgers cam be de second player insyd NFL history den de first since [[Daryle Lamonica]] insyd 1969 to throw six touchdown passes insyd de first half.<ref>{{Cite news|last=Armas|first=Genaro C.|date=November 10, 2014|title=Aaron Rodgers Throws 6 TD Passes in 1st Half As Packers Crush Bears 55–14|work=[[HuffPost]]|url=http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|url-status=live|access-date=November 27, 2014|archive-url=https://web.archive.org/web/20141112143148/http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|archive-date=November 12, 2014}}</ref> Rodgers fini 18 of 27 for 315 yards den six touchdowns despite only playing one drive insyd de second half to earn NFC Offensive Player of de Week.<ref name="nbcchi" /><ref>{{Cite web |title=2014 NFL Week 10 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_10.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020149/https://www.pro-football-reference.com/years/2014/week_10.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers set multiple records during de game: most touchdown passes of 70 anaa more yards plus 16—breaking de record dem wey Brett Favre den [[Peyton Manning]] hold, most consecutive touchdown passes widout an interception at home—he sanso break de record wey Favre den Manning, wey he cam be de first quarterback to ever have 10 touchdown passes against de same team insyd a season.<ref name="nbcchi">{{Cite web |last=Neveau |first=James |date=November 12, 2014 |title=Aaron Rodgers Suffered Back Injury vs. Bears |url=http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |url-status=live |archive-url=https://web.archive.org/web/20170105180011/http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=NBC Chicago}}</ref> De 55–14 victory tie de Packers dema 55–7 win vs. De Titans insyd 2009 for de most points wey a Rodgers-led offense score.
Insyd a Week 11 game against de 7–2 Eagles, Rodgers set a record for most consecutive attempts at home widout an interception, breaking [[Tom Brady]] ein record of 288 consecutive attempts.<ref>{{Cite web |last=Massey |first=Evan |date=November 16, 2014 |title=Packers' Aaron Rodgers Breaks Tom Brady's Record |url=https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |url-status=live |archive-url=https://web.archive.org/web/20200724201538/https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |archive-date=July 24, 2020 |access-date=September 12, 2019 |website=FanSided}}</ref> Insyd de 53–20 victory, he fini dey go 22 of 36, plus 341 passing yards, three touchdown passes den no interceptions.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – November 16th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829074637/https://www.pro-football-reference.com/boxscores/201411160gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De 8–3 Packers meet de 9–2 Patriots insyd Week 13, at [[Lambeau Field]] insyd na wat be Brady den Rodgers' first time playing against each oda as starters.<ref>{{Cite web |last=Imig |first=Paul |date=November 30, 2014 |title=Rodgers outduels Brady for win in first-ever matchup of elite QBs |url=https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |url-status=live |archive-url=https://web.archive.org/web/20190102094626/https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |archive-date=January 2, 2019 |access-date=January 1, 2019 |work=Fox Sports}}</ref> Rodgers fini dey go 24 of 38, plus 368 passing yards den two passing touchdowns insyd de 26–21 Packers victory.<ref>{{Cite web |title=New England Patriots at Green Bay Packers – November 30th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411300gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171228171554/https://www.pro-football-reference.com/boxscores/201411300gnb.htm |archive-date=December 28, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> For ein efforts insyd de month of November, he earn NFC Offensive Player of de Month.<ref>{{Cite web |date=December 4, 2014 |title=Aaron Rodgers among NFC's best for November |url=https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |url-status=live |archive-url=https://web.archive.org/web/20190812115629/https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |archive-date=August 12, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref>
Rodgers suffer a calf injury insyd Week 16, against de Buccaneers, secof severe dehydration he endure from flu-like symptoms he suffer during de week.<ref name="flu">{{Cite web |last=Demovsky |first=Rob |date=December 22, 2014 |title=Aaron Rodgers played with pulled calf |url=https://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |url-status=live |archive-url=https://web.archive.org/web/20170105180655/http://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=[[ESPN.com]]}}</ref>
Insyd de Week 17 game against de Lions, Rodgers re-injure ein left calf while extending a play den throwing a touchdown pass to [[Randall Cobb (American football)|Randall Cobb]], then na e help off de field, wey dem cart am off to de locker room. After missing a series, Rodgers re-enter de game plus de score dem tie 14–14. Despite he be less mobile plus de injury, Rodgers plete 13 of 15 passes for 129 yards den two scores against de league ein second-ranked defense. De Packers win 30–20, winning dema fourth straight NFC North title. Rodgers fini 17 of 22 for 226 yards, two touchdown passes, no interceptions, a 139.6 passer rating, den a rushing touchdown to earn ein fourth NFC Offensive Player of de Week honor for de 2014 season.<ref>{{Cite web |title=Detroit Lions at Green Bay Packers – December 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201412280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20190330032513/https://www.pro-football-reference.com/boxscores/201412280gnb.htm |archive-date=March 30, 2019 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 17 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_17.htm |url-status=live |archive-url=https://web.archive.org/web/20180226175215/https://www.pro-football-reference.com/years/2014/week_17.htm |archive-date=February 26, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers secure de second seed insyd de NFC, rewarding dem plus a playoff bye den a week off wich help Rodgers rest den rehabilitate ein injured left calf.<ref>{{Cite web |title=2014 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2014 |url-status=live |archive-url=https://web.archive.org/web/20211011053552/https://www.pro-football-reference.com/years/2014/ |archive-date=October 11, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round, na de Packers be scheduled to play de 13–4 Cowboys, wich mark de first time insyd NFL playoff history wen a team wich go undefeated at home (Packers) play against a team wich go undefeated away (Cowboys).<ref>{{Cite web |last=Imig |first=Paul |date=January 9, 2015 |title=Something has to give: Packers unbeaten at home; Cowboys 8–0 on road |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |url-status=live |archive-url=https://web.archive.org/web/20170101091540/http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |archive-date=January 1, 2017 |access-date=December 31, 2016 |work=Fox Sports}}</ref> Rodgers help secure a 26–21 victory by finishing 24 of 35 for 316 yards, three touchdowns, no interceptions, den a 125.4 passer rating.<ref>{{Cite web |title=Divisional Round – Dallas Cowboys at Green Bay Packers – January 11th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501110gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171114040923/https://www.pro-football-reference.com/boxscores/201501110gnb.htm |archive-date=November 14, 2017 |access-date=December 15, 2017 |website=[[Pro Football Reference]]}}</ref>
De Packers then travel go Seattle to face de top-seeded Seahawks insyd a rematch of de regular season opener.<ref>{{Cite web |last=Pittman |first=Travis |date=January 11, 2015 |title=Seahawks vs. Packers rematch for NFC Championship |url=https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |archive-date=July 24, 2020 |access-date=September 12, 2019 |publisher=KING}}</ref> Insyd de NFC Championship Game, na de Packers dey lead 19–7 plus just over five minutes to go, buh na de home team ein offense finally wake up den, plus de assistance of a crucial Packers special teams gaffe on an onside kick, de Seahawks lead 22–19, plus 44 seconds remaining. Rodgers quickly drive downfield to set up a tying field goal, only to watch from de sidelines as de Seahawks win de coin toss insyd overtime wey he proceed to score de game-winning touchdown on dema first possession. Rodgers be 19-for-34 for 178 yards den a touchdown, plus two interceptions insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Seattle Seahawks – January 18th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501180sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182804/https://www.pro-football-reference.com/boxscores/201501180sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de regular season first insyd touchdown-to-interception ratio (7.6), lowest interception percentage (1.0%), second insyd passer rating (112.2), yards per attempt (8.4), den touchdown passing percentage (7.1%), third insyd touchdown passes (38), seventh insyd passing yards (4,381), den ninth insyd completion percentage (65.6%).<ref>{{Cite web |title=2014 NFL Leaders and Leaderboards |url=https://www.pro-football-reference.com/years/2014/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20190915221740/https://www.pro-football-reference.com/years/2014/leaders.htm |archive-date=September 15, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> He set an NFL record for most consecutive pass attempts (512) at home widout an interception, den touchdown passes (41).
Na dem vote Rodgers de AP NFL Most Valuable Player for de 2014 season, receiving 31 votes,<ref>{{Cite web |last=Demovsky |first=Rob |date=January 31, 2015 |title=Aaron Rodgers named NFL MVP |url=https://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20161217162150/http://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |archive-date=December 17, 2016 |access-date=December 12, 2016 |publisher=[[ESPN]]}}</ref> wey dem name am NFC Offensive Player of de Year by de Kansas City Committee of 101<ref name="KC101off">{{Cite web |title=Past NFC Offensive Honorees |url=http://www.101awards.com/awards/past_nfc_offensive_honorees |url-status=dead |archive-url=https://web.archive.org/web/20161220130101/http://www.101awards.com/awards/past_nfc_offensive_honorees |archive-date=December 20, 2016 |access-date=December 13, 2016 |website=101awards.com}}</ref> den Fed-Ex Air NFL Player of de Year.<ref>{{Cite web |date=January 31, 2015 |title=2015 'NFL Honors' complete list of winners |url=https://www.nfl.com/news/2015-nfl-honors-complete-list-of-winners-0ap3000000466415 |url-status=live |archive-url=https://web.archive.org/web/20161018132754/http://www.nfl.com/news/story/0ap3000000466415/article/2015-nfl-honors-complete-list-of-winners |archive-date=October 18, 2016 |access-date=December 12, 2016 |publisher=National Football League}}</ref> He sanso be named to de AP All-Pro team as de first quarterback, receiving 44 votes while runner-up [[Tony Romo]] receive three.<ref>{{Cite web |last=Wesseling |first=Chris |date=January 2, 2015 |title=2014 All-Pro Teams: Analysis of the full rosters |url=https://www.nfl.com/news/2014-all-pro-teams-analysis-of-the-full-rosters-0ap3000000452986 |url-status=live |archive-url=https://web.archive.org/web/20140104005331/http://pro32.ap.org/article/2013-all-pro-team |archive-date=January 4, 2014 |access-date=February 4, 2015 |publisher=National Football League}}</ref> Na dem name am to de Pro Bowl for de 2014 season.<ref>{{Cite web |title=2014 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2014/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180816061701/https://www.pro-football-reference.com/years/2014/probowl.htm |archive-date=August 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am as de second best player insyd de league among ein fellow players on de ''NFL Top 100'' Players of 2015.<ref>{{Cite web |title=2015 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200508061426/https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |archive-date=May 8, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2015 ====
Insyd 2015, Rodgers get a down year by ein standards. He throw for a career low 3,821 yards insyd wich he play for at least 15 games, although he get 31 touchdowns to just eight interceptions.<ref>{{Cite web |last=Hirschhorn |first=Jason B. |date=July 6, 2016 |title=NFL Top 100: Packers' Aaron Rodgers lands at No. 6 in 2016 |url=https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |url-status=live |archive-url=https://web.archive.org/web/20211115204818/https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=ACME Packing Company |language=en}}</ref> Rodgers plete 60.7 of ein passes per, averaged only 6.7 yards per attempt wey he fini plus a passer rating of 92.7, all career lows. Na Pro Bowl wide receiver Jordy Nelson ein absence secof injury for de season be considered a contributing factor insyd Rodgers ein statistical drop dem compare to previous seasons.<ref>{{Cite web |last=Kelly |first=Danny |date=November 15, 2015 |title=Aaron Rodgers and the Packers miss Jordy Nelson more than we thought they would |url=https://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |url-status=live |archive-url=https://web.archive.org/web/20161226145804/http://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=sbnation.com}}</ref><ref>{{Cite web |date=January 19, 2016 |title=Packers hope Nelson's return will revitalize offense |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |url-status=live |archive-url=https://web.archive.org/web/20161226145654/http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |archive-date=December 26, 2016 |access-date=December 25, 2016 |work=Fox Sports}}</ref><ref>{{Cite web |last=Spofford |first=Mike |date=December 30, 2015 |title=Stats don't matter to Aaron Rodgers |url=http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |url-status=dead |archive-url=https://web.archive.org/web/20161226145201/http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=packers.com}}</ref>
Insyd Week 3, a 38–28 victory over de Chiefs, Rodgers get 333 passing yards den five touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Kansas City Chiefs at Green Bay Packers – September 28th, 2015 |url=https://www.pro-football-reference.com/boxscores/201509280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20220218210924/https://www.pro-football-reference.com/boxscores/201509280gnb.htm |archive-date=February 18, 2022 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2015 NFL Week 3 Leaders & Scores |url=https://www.pro-football-reference.com/years/2015/week_3.htm |url-status=live |archive-url=https://web.archive.org/web/20180330172357/https://www.pro-football-reference.com/years/2015/week_3.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> During Week 9 against de Panthers, he fini plus 369 passing yards, four touchdowns, den one interception. De interception cam plus only 1:47 left insyd de fourth quarter, den following de interception, Rodgers express frustration by throwing down a Microsoft Surface tablet.<ref>{{Cite web |last=Davis |first=Scott |date=November 9, 2015 |title=Aaron Rodgers angrily threw a Microsoft Surface tablet after throwing a crucial interception |url=https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |archive-date=March 30, 2019 |access-date=September 13, 2019 |website=Business Insider}}</ref> De Packers end up losing de game 29–37.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – November 8th, 2015 |url=https://www.pro-football-reference.com/boxscores/201511080car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211145/https://www.pro-football-reference.com/boxscores/201511080car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
On December 3, 2015, insyd a Week 13 match-up against de Lions, Rodgers throw a Hail Mary pass wey [[Richard Rodgers (tight end)|Richard Rodgers]] catch for 61 yards plus 0:00 left to beat de Lions 27–23, after dem extend de game secof a facemask penalty dem call on Detroit.<ref name="2015mary">{{Cite web |last=Rosenthal |first=Gregg |date=December 3, 2015 |title=Packers stun Lions on Aaron Rodgers' Hail Mary TD |url=https://www.nfl.com/news/packers-stun-lions-on-aaron-rodgers-hail-mary-td-0ap3000000593884 |url-status=live |archive-url=https://web.archive.org/web/20180408144543/http://www.nfl.com/news/story/0ap3000000593884/article/packers-stun-lions-on-miracle-td-throw-by-rodgers |archive-date=April 8, 2018 |access-date=December 25, 2016 |publisher=National Football League}}</ref> Na de play quickly be dubbed as "The Miracle in Motown."<ref>{{Cite news|last=Bennett|first=Colin|date=December 9, 2015|title=Getaway winner witnesses Motown Miracle|publisher=WTMJ|url=https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|url-status=dead|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20180312083608/https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|archive-date=March 12, 2018}}</ref><ref>{{Cite book |last=Aretha |first=David |url=https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |title=Aaron Rodgers: Champion Football Star |date=July 15, 2017 |publisher=Enslow Publishing, LLC |isbn=9780766087170 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203181206/https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |archive-date=February 3, 2021 |url-status=live}}</ref>
De Packers make de playoffs as de fifth seed insyd de NFC plus a 10–6 record.<ref>{{Cite web |title=2015 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2015.htm |url-status=live |archive-url=https://web.archive.org/web/20171010004706/https://www.pro-football-reference.com/teams/gnb/2015.htm |archive-date=October 10, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Dem defeat de Redskins 35–18 on de road insyd de Wild Card Round of de playoffs. Rodgers fini de game plus 210 yards den two passing touchdowns.<ref>{{Cite web |title=Wild Card – Green Bay Packers at Washington Redskins – January 10th, 2016 |url=https://www.pro-football-reference.com/boxscores/201601100was.htm |url-status=live |archive-url=https://web.archive.org/web/20180308042317/https://www.pro-football-reference.com/boxscores/201601100was.htm |archive-date=March 8, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round against de Cardinals, Rodgers throw a 41-yard Hail Mary touchdown pass to [[Jeff Janis]] as time expire to send de game into overtime. However, de Packers loos3 26–20 insyd overtime. Rodgers fini de game 24 for 44 for 261 yards plus two touchdowns den an interception.<ref>{{Cite web |last=Wilde |first=Jason |date=January 17, 2016 |title=Jeff Janis forces OT with Hail Mary catch, but celebration short-lived |url=https://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |url-status=live |archive-url=https://web.archive.org/web/20161213200125/http://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=[[ESPN.com]]}}</ref> Dem name am to ein fifth Pro Bowl wey na dem rank am as de sixth best player by ein peers on de ''NFL Top 100'' Players of 2016.<ref>{{Cite web |title=2015 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2015/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180308103829/https://www.pro-football-reference.com/years/2015/probowl.htm |archive-date=March 8, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2016 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190404010429/https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |archive-date=April 4, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2016 ====
[[File:Aaron_Rodgers,_Redskins_v_Packers,_Jan_2016.jpg|right|thumb|Rodgers insyd 2016]]
Thru out de first five games of de 2016 season, Rodgers ein struggles from de 2015 season appear to continue.<ref name="pff2016" /> Thru those games, he plete 60.2% of ein passes, dem average 6.5 yards per attempt, wey he post a passer rating of 88.4—all of wich na be similar to ein 2015 numbers.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log (Games 1–5) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/#127-131-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227180403/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016#127-131-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]]}}</ref> He sanso fumble five times, wey he loose two. Ein lackluster performance thru those games cause much speculation about de causes of ein problems.<ref>{{Cite web |last=Florio |first=Mike |author-link=Mike Florio |date=October 20, 2016 |title=What's wrong with Aaron Rodgers? |url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/whats-wrong-with-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20161226215024/http://profootballtalk.nbcsports.com/2016/10/20/whats-wrong-with-aaron-rodgers/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=NBC Sports |language=en-US}}</ref><ref name="pff2016">{{Cite web |last=Monson |first=Sam |date=October 17, 2016 |title=What's wrong with Aaron Rodgers and the Packers' offense? |url=https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |url-status=live |archive-url=https://web.archive.org/web/20161226214838/https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=profootballfocus.com}}</ref><ref>{{Cite web |last=Gonzalez |first=Jason |date=October 17, 2016 |title=What's wrong with the Packers? All signs point to Aaron Rodgers |url=http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |url-status=live |archive-url=https://web.archive.org/web/20161226145502/http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=Star Tribune}}</ref><ref>{{Cite web |last=Demovsky |first=Rob |date=October 20, 2016 |title=Experts weigh in on Aaron Rodgers: 'No easy fix' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |url-status=live |archive-url=https://web.archive.org/web/20161226150119/http://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=[[ESPN.com]]}}</ref>
[[File:Pro_Football_Hall_of_Fame_(23945585187).jpg|thumb|Rodgers ein uniform dem exhibit at de Pro Football Hall of Fame]]
Insyd a Week 7 ''Thursday Night Football'' game against de Bears, Rodgers rebound by recording a franchise record den career-high 39 completions, breaking Brett Favre ein previous record of 36 insyd 1993, sanso be against de Bears.<ref>{{Cite web |date=October 21, 2016 |title=Aaron Rodgers sets Green Bay Packers completion record in win over Chicago Bears |url=http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |url-status=live |archive-url=https://web.archive.org/web/20161213015800/http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=United Press International}}</ref> Rodgers record 326 passing yards for ein first 300-yard passing game since Week 10 of de 2015 season insyd de 26–10 win.<ref name="pfr gamelog" /> De following week against de Atlanta Falcons, Rodgers record a career regular season high of 60 rushing yards,<ref name="pfr gamelog">{{Cite web |title=Aaron Rodgers Career Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/ |url-status=dead |archive-url=https://web.archive.org/web/20111219211828/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog |archive-date=December 19, 2011 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> wey he fini plus four touchdown passes den a 125.5 passer rating.<ref>{{Cite web |last=Dubin |first=Jared |date=October 30, 2016 |title=Packers vs. Falcons highlights, score: Matt Ryan Aaron Rodgers trade lasers all day |url=http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |url-status=live |archive-url=https://web.archive.org/web/20161226215154/http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=CBS Sports}}</ref>
After a Week 11 loss to de Redskins—de Packers dema fourth in a row, putting dem at 4–6—Rodgers be optimistic about de remainder of de season, saying, "I feel like we fi run de table, I really do."<ref name="runtable1">{{Cite web |last=Demovsky |first=Rob |date=November 23, 2016 |title=Aaron Rodgers: Packers, at 4–6, can close with 6 straight wins |url=https://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |url-status=live |archive-url=https://web.archive.org/web/20170105180337/http://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref> Despite widespread doubt over de likelihood of such a run,<ref name="runtable2">{{Cite web |last=Demovsky |first=Rob |date=January 2, 2016 |title=Aaron Rodgers' magic carries Packers into playoffs on a run-the-table roll |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |url-status=live |archive-url=https://web.archive.org/web/20170103184508/http://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |archive-date=January 3, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Sipple |first=George |date=January 2, 2017 |title=Packers QB Aaron Rodgers makes good on 'run the table' prediction |url=http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |url-status=live |archive-url=https://web.archive.org/web/20170105175931/http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=Detroit Free Press}}</ref><ref>{{Cite web |last=Gantt |first=Darin |date=November 24, 2016 |title=Aaron Rodgers: "I feel we can run the table" |url=http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |url-status=live |archive-url=https://web.archive.org/web/20170105180803/http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=profootballtalk.nbcsports.com}}</ref> de Packers go go on to finish de season plus six straight wins—as Rodgers say dem go fi.
Insyd a Week 12 ''Monday Night Football'' game Rodgers appeare to injure ein hamstring on a scrambling play against de Eagles.<ref name="packnews">{{Cite web |last=Silverstein |first=Tom |date=November 29, 2016 |title=Hamstring injury sends Rodgers to tent |url=http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |url-status=live |archive-url=https://web.archive.org/web/20161129161247/http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |archive-date=November 29, 2016 |access-date=December 13, 2016 |website=Milwaukee Journal Sentinel}}</ref> After de play, Rodgers go into an injury tent on de sideline to get ein leg taped up.<ref name="packnews" /> Na Rodgers, however, no miss any snaps insyd de game wey he fini 30 out of 39 for 313 yards plus no sacks anaa interceptions.<ref name="2016eagles" /> Ein 300-yard performance be ein fourth of de season den de first wey de Eagles dema defense allow all season.<ref name="2016eagles">{{Cite web |last=Jackson |first=Zac |date=November 28, 2016 |title=Rodgers, defense step up as Packers snap losing streak |url=http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |url-status=live |archive-url=https://web.archive.org/web/20161213165321/http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |archive-date=December 13, 2016 |access-date=December 13, 2016}}</ref> De Packers win, 27–13, snapping dema four-game losing streak.
Insyd a 38–10 victory over de Seahawks insyd a Week 14 game, Rodgers den de Packers continue dema recent offensive den defensive success.<ref name="38-10" /><ref name="38-102">{{Cite web |last=Pelissero |first=Tom |date=December 12, 2016 |title=After rout of Seattle, Packers re-emerge as team no one wants to see in January |url=https://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |url-status=live |archive-url=https://web.archive.org/web/20161213014329/http://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=USA Today Sports}}</ref> Rodgers fini plus 246 passing yards, three touchdown passes den a 150.8 passer rating. De 150.8 passer rating be de best recorded against Seattle ein defense since head coach [[Pete Carroll]] take over insyd 2010.<ref name="38-10">{{Cite web |last=Wesseling |first=Chris |date=December 11, 2016 |title=Aaron Rodgers, Packers dismantle Seahawks |url=https://www.nfl.com/news/aaron-rodgers-packers-dismantle-seahawks-0ap3000000755388 |url-status=live |archive-url=https://web.archive.org/web/20161213001101/http://www.nfl.com/news/story/0ap3000000755388/article/mvp-candidate-rodgers-packers-dismantle-seahawks |archive-date=December 13, 2016 |access-date=December 13, 2016 |publisher=National Football League}}</ref> Rodgers do dis despite suffering a calf injury early insyd de game.<ref name="38-10" /> Na dem name am NFC Offensive Player of de Week for ein performance against de Seahawks.<ref>{{Cite web |last=Lam |first=Quang M. |date=December 14, 2016 |title=Le'Veon Bell, Rodgers among NFL Players of the Week |url=http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |url-status=dead |archive-url=https://web.archive.org/web/20190330021109/http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |archive-date=March 30, 2019 |access-date=November 12, 2019 |publisher=National Football League}}</ref>
On December 20, 2016, na Rodgers be selected to ein third consecutive Pro Bowl den ein sixth overall insyd ein career.<ref name="probowl2016">{{Cite web |date=December 20, 2016 |title=NFL announces 2017 Pro Bowl rosters |url=https://www.nfl.com/news/nfl-announces-2017-pro-bowl-rosters-0ap3000000760503 |url-status=live |archive-url=https://web.archive.org/web/20181117075658/http://www.nfl.com/news/story/0ap3000000760503/article/nfl-announces-2017-pro-bowl-rosters |archive-date=November 17, 2018 |access-date=December 24, 2016 |publisher=National Football League}}</ref>
During Week 16, Rodgers den [[Drew Brees]] tie de NFL record for most seasons plus at least 35 touchdown passes plus four—a record he share plus Peyton Manning den Tom Brady.<ref name="35tdpass">{{Cite web |title=Most seasons with at least 35 passing touchdowns, career |url=http://pfref.com/tiny/ww1Iz |url-status=live |archive-url=https://web.archive.org/web/20220209214231/https://stathead.com/tools/tiny.fcgi?id=ww1Iz |archive-date=February 9, 2022 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref><ref name="mosttdpass">{{Cite web |title=NFL Single-Season Passing Touchdowns Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20210201232241/https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |archive-date=February 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> Insyd de game against de Vikings, Rodgers fini 28 of 38 for 347 yards, four touchdown passes den a rushing touchdown to earn NFC Offensive Player of de Week.<ref name="espnvik2016">{{Cite web |last=Demovsky |first=Rob |date=December 24, 2016 |title=Aaron Rodgers for MVP: Packers QB makes case in win over Vikings |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |url-status=live |archive-url=https://web.archive.org/web/20161225084224/http://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |archive-date=December 25, 2016 |access-date=December 25, 2016 |publisher=[[ESPN]]}}</ref><ref>{{Cite web |title=2016 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2016/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231416/https://www.pro-football-reference.com/years/2016/week_16.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 300-yard performance be de first allowed by de Vikings dema defense all season.<ref name="espnvik2016" /> He sanso set Packer regular season records for most 4,000-yard passing seasons (6), most completions insyd a season (374), den—plus Jordy Nelson—most touchdowns by a quarterback/wide receiver combination plus (59).<ref name="espnvik2016" /> Na dem name Rodgers NFC Offensive Player of de Month for December.<ref>{{Cite web |date=January 5, 2017 |title=Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |url-status=live |archive-url=https://web.archive.org/web/20200724202520/https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |archive-date=July 24, 2020 |access-date=September 13, 2019 |website=packers.com}}</ref>
Rodgers help lead de Packers to a NFC North title den a playoff berth insyd 2016.<ref>{{Cite web |title=2016 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2016 |url-status=live |archive-url=https://web.archive.org/web/20180329001215/https://www.pro-football-reference.com/years/2016/ |archive-date=March 29, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers defeat de Giants insyd de Wild Card Round. Rodgers plete 25 of 40 passes for 364 yards den four touchdowns insyd de victory. Dem defeat de #1-seed Cowboys insyd de Divisional Round. Plua de game tied at 31 plus only 18 seconds remaining plus de ball on dema own 32-yard line, Rodgers throw a 36-yard completion to tight end [[Jared Cook]] to put de Packers insyd Mason Crosby ein field goal range. Crosby convert de 51-yard attempt as time expire to win de game.<ref>{{Cite web |last=Steele |first=David |date=January 15, 2017 |title=Aaron Rodgers-to-Jared-Cook joins list of legendary clutch NFL playoff catches |url=https://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |url-status=live |archive-url=https://web.archive.org/web/20190415003703/http://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |archive-date=April 15, 2019 |access-date=September 13, 2019 |website=Sporting News}}</ref> Overall, Rodgers plete 28 of 43 passes for 355 yards, two touchdowns den an interception insyd de victory.<ref>{{Cite web |title=Wild Card – New York Giants at Green Bay Packers – January 8th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701080gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171011073327/https://www.pro-football-reference.com/boxscores/201701080gnb.htm |archive-date=October 11, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=Divisional Round – Green Bay Packers at Dallas Cowboys – January 15th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701150dal.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030639/https://www.pro-football-reference.com/boxscores/201701150dal.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de Falcons insyd de NFC Championship insyd de final game at de Georgia Dome. Rodgers plete 27 of ein 45 passing attempts for 287 yards plus three touchdowns den an interception insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Atlanta Falcons – January 22nd, 2017 |url=https://www.pro-football-reference.com/boxscores/201701220atl.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003240/https://www.pro-football-reference.com/boxscores/201701220atl.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd 2016, Rodgers fini plus 401 completions den 610 attempts (both career highs), a 65.7% completion percentage, 4,428 passing yards, 40 touchdown passes, seven interceptions, a passer rating of 104.2, 369 rushing yards (career-high), den four rushing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |url-status=live |archive-url=https://web.archive.org/web/20211115205043/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Plus ein 40 touchdown passes, he lead de league insyd de statistic for de first time insyd ein career<ref>{{Cite web |last=Borek |first=Jesse |date=January 1, 2017 |title=Packers' Aaron Rodgers leads NFL in TD passes |url=http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |url-status=dead |archive-url=https://web.archive.org/web/20170104172003/http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |archive-date=January 4, 2017 |access-date=January 4, 2017 |website=fanrangsports.com |publisher=Nafstrops Media, LLC}}</ref> wey he cam be one of only four quarterbacks to pass for at least 40 touchdowns insyd multiple seasons.<ref name="40td">{{Cite web |title=Most seasons with at least 40 passing touchdowns, career |url=http://pfref.com/tiny/6BiBx |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=6BiBx |archive-date=December 1, 2021 |access-date=January 5, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Rodgers sanso fini fourth insyd passing yards, completions, attempts, den passer rating.<ref name="2016leaderspfr">{{Cite web |title=2016 NFL Leaders |url=https://www.pro-football-reference.com/years/2016/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20210108041718/https://www.pro-football-reference.com/years/2016/leaders.htm |archive-date=January 8, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Among quarterbacks, he fini third insyd rushing yards den fifth insyd rushing touchdowns.<ref name="2016qbrush">{{Cite web |title=2016 QB rushing leaders |url=http://pfref.com/tiny/698kQ |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=698kQ |archive-date=December 1, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2017.<ref>{{Cite web |title=2017 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201106081444/https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |archive-date=November 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2017 ====
Insyd a Week 1 victory over de Seahawks, Rodgers get ein 50th career game plus at least 300 passing yards. He fini de game plus 311, buh ein streak of 251 consecutive passes widout an interception cam to an end wen defensive tackle [[Nazair Jones]] pick am off insyd de first quarter.<ref>{{Cite news|date=September 10, 2017|title=Rodgers, Packers' defense spark season-opener win over Seahawks|work=Fox Sports|agency=Associated Press|url=http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|url-status=live|access-date=September 10, 2017|archive-url=https://web.archive.org/web/20170912011719/http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|archive-date=September 12, 2017}}</ref> Insyd a Week 2 loss of 34–23 to de Falcons, he get 343 passing yards, two touchdowns, den an interception insyd de first game insyd de new Mercedes-Benz Stadium insyd Atlanta.<ref>{{Cite web |title=Green Bay Packers at Atlanta Falcons – September 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201709170atl.htm |url-status=live |archive-url=https://web.archive.org/web/20171008080102/https://www.pro-football-reference.com/boxscores/201709170atl.htm |archive-date=October 8, 2017 |access-date=October 13, 2017 |website=[[Pro Football Reference]]}}</ref> Insyd Week 5, down by 28–31 against de Cowboys plus less dan two minutes on de clock, Rodgers lead a nine-play, 75-yard touchdown drive insyd de 35–31 victory, earning am NFC Offensive Player of de Week.<ref>{{Cite web |last=Lewis |first=Edward |date=October 11, 2017 |title=Aaron Rodgers, Earl Thomas among Players of Week |url=https://www.nfl.com/news/aaron-rodgers-earl-thomas-among-players-of-week-0ap3000000859999 |url-status=live |archive-url=https://web.archive.org/web/20190504022932/http://www.nfl.com/news/story/0ap3000000859999/article/aaron-rodgers-earl-thomas-among-players-of-week |archive-date=May 4, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref>
During Week 6 against de Vikings, na dem take Rodgers off de field by ein coaches den medical personnel after suffering a shoulder injury on a hit from [[Anthony Barr (American football)|Anthony Barr]]. Shortly thereafter, na dem reveal say Rodgers suffer a fractured right collarbone.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 15, 2017 |title=Aaron Rodgers has broken collarbone, could miss season |url=https://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |url-status=live |archive-url=https://web.archive.org/web/20190504114010/http://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |archive-date=May 4, 2019 |access-date=October 15, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Wesseling |first=Chris |date=October 15, 2017 |title=Aaron Rodgers suffers broken collarbone vs. Vikings |url=https://www.nfl.com/news/aaron-rodgers-suffers-broken-collarbone-vs-vikings-0ap3000000861006 |url-status=live |archive-url=https://web.archive.org/web/20171015222153/http://www.nfl.com/news/story/0ap3000000861006/article/aaron-rodgers-suffers-broken-collarbone-vs-vikings |archive-date=October 15, 2017 |access-date=October 15, 2017 |website=NFL.com |publisher=National Football League}}</ref> De next day, on October 16, na dem announce say Rodgers go get surgery on ein broken collarbone.<ref>{{Cite web |last=Patra |first=Kevin |date=October 16, 2017 |title=Aaron Rodgers will have surgery on broken collarbone |url=https://www.nfl.com/news/aaron-rodgers-will-have-surgery-on-broken-collarbone-0ap3000000862438 |url-status=live |archive-url=https://web.archive.org/web/20171016214737/http://www.nfl.com/news/story/0ap3000000862438/article/aaron-rodgers-will-have-surgery-on-broken-collarbone |archive-date=October 16, 2017 |access-date=October 16, 2017 |website=NFL.com |publisher=National Football League}}</ref> On October 19, he undergo surgery on ein collarbone, wey na he be officially placed on injured reserve de next day.<ref>{{Cite web |date=October 19, 2017 |title=Aaron Rodgers has surgery on collarbone |url=https://www.nfl.com/news/packers-aaron-rodgers-has-surgery-on-collarbone-0ap3000000864021 |url-status=live |archive-url=https://web.archive.org/web/20171020135141/http://www.nfl.com/news/story/0ap3000000864021/article/packers-aaron-rodgers-has-surgery-on-collarbone |archive-date=October 20, 2017 |access-date=October 19, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |date=October 20, 2017 |title=Packers place QB Rodgers on injured reserve |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |url-status=dead |archive-url=https://web.archive.org/web/20171021061030/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |archive-date=October 21, 2017 |access-date=October 20, 2017 |website=Packers.com}}</ref> Na dem insert a total of 13 screws to stabilize ein collarbone.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 26, 2017 |title=Injury roundup: Rodgers has '13 screws' in collarbone |url=https://www.nfl.com/news/injuries-aaron-rodgers-has-13-screws-in-collarbone-0ap3000000867422 |url-status=live |archive-url=https://web.archive.org/web/20171026222152/http://www.nfl.com/news/story/0ap3000000867422/article/injury-roundup-rodgers-has-13-screws-in-collarbone |archive-date=October 26, 2017 |access-date=October 26, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Knoblauch |first=Austin |date=November 3, 2017 |title=Aaron Rodgers focusing on his health, not return date |url=https://www.nfl.com/news/aaron-rodgers-focusing-on-his-health-not-return-date-0ap3000000871634 |url-status=live |archive-url=https://web.archive.org/web/20171104033909/http://www.nfl.com/news/story/0ap3000000871634/article/aaron-rodgers-focusing-on-his-health-not-return-date |archive-date=November 4, 2017 |access-date=November 3, 2017 |website=NFL.com |publisher=National Football League}}</ref>
Rodgers return to practice on December 2, wey dey make am eligible to play insyd de upcoming Week 15 game.<ref>{{Cite web |last=Bergman |first=Jeremy |date=December 2, 2017 |title=Aaron Rodgers returns to Packers practice Saturday |url=https://www.nfl.com/news/aaron-rodgers-returns-to-packers-practice-saturday-0ap3000000885977 |url-status=live |archive-url=https://web.archive.org/web/20191202121449/http://www.nfl.com/news/story/0ap3000000885977/article/aaron-rodgers-returns-to-packers-practice-saturday |archive-date=December 2, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> On December 12, na dem announce say Rodgers be medically cleared by doctors wey he be set to start de next game against de Panthers.<ref>{{Cite web |last=Lewis |first=Edward |date=December 12, 2017 |title=Aaron Rodgers cleared to return, to start vs. Panthers |url=http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |url-status=dead |archive-url=https://web.archive.org/web/20191109071351/http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |archive-date=November 9, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> He be officially activated on December 16.<ref>{{Cite web |date=December 16, 2017 |title=Aaron Rodgers activated from injured reserve |url=https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |url-status=live |archive-url=https://web.archive.org/web/20190413105005/https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |archive-date=April 13, 2019 |access-date=September 12, 2019 |website=Packers.com}}</ref> As dem plan, Rodgers return insyd Week 15 against de Panthers, wer he fini plus 290 passing yards, three touchdowns, den three interceptions as de Packers loose 24–31.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – December 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201712170car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101135719/https://www.pro-football-reference.com/boxscores/201712170car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> However, on December 19, na dem place Rodgers back on injured reserve after de Packers be eliminated from playoff contention.<ref>{{Cite web |date=December 19, 2017 |title=Packers place QB Aaron Rodgers on IR |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |url-status=dead |archive-url=https://web.archive.org/web/20180326030719/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |archive-date=March 26, 2018 |website=Packers.com}}</ref><ref>{{Cite web |last=Patra |first=Kevin |date=December 19, 2017 |title=Packers place Aaron Rodgers back on injured reserve |url=https://www.nfl.com/news/packers-place-aaron-rodgers-back-on-injured-reserve-0ap3000000895650 |url-status=live |archive-url=https://web.archive.org/web/20190920235723/http://www.nfl.com/news/story/0ap3000000895650/article/packers-place-aaron-rodgers-back-on-injured-reserve |archive-date=September 20, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Rapoport |first=Ian |author-link=Ian Rapoport |date=December 17, 2017 |title=Aaron Rodgers' collarbone still not completely healed |url=https://www.nfl.com/news/aaron-rodgers-collarbone-still-not-completely-healed-0ap3000000893627 |url-status=live |archive-url=https://web.archive.org/web/20171223065547/http://www.nfl.com/news/story/0ap3000000893627/article/aaron-rodgers-collarbone-still-not-completely-healed |archive-date=December 23, 2017 |access-date=December 23, 2017 |website=NFL.com |publisher=National Football League}}</ref> He be ranked No. 10 by ein fellow players on de ''NFL Top 100'' Players of 2018.<ref>{{Cite web |title=2018 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201104205316/https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |archive-date=November 4, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2018 ====
[[File:Rodgersthrowing2018redskins.jpg|thumb|Rodgers dey throw a pass insyd 2018]]
On August 29, 2018, Rodgers sign a four-year extension plus de Packers worth $134 million featuring a $57.5 million signing bonus.<ref>{{Cite web |last=Siegle |first=Evan |date=August 29, 2018 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |url-status=live |archive-url=https://web.archive.org/web/20180830044455/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |archive-date=August 30, 2018 |access-date=August 29, 2018 |website=packers.com}}</ref><ref>{{Cite web |last=Teope |first=Herbie |date=August 29, 2018 |title=Aaron Rodgers agrees to 4-year, $134M extension |url=http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |url-status=dead |archive-url=https://web.archive.org/web/20180830005310/http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |archive-date=August 30, 2018 |access-date=August 29, 2018 |publisher=National Football League}}</ref>
During ''Sunday Night Football'' against de Bears insyd Week 1, Rodgers lef de game plus a knee injury buh he return insyd de third quarter. Down by 20 points, Rodgers fini plus 286 passing yards den three touchdowns, leading de Packers rally to a 24–23 win.<ref>{{Cite web |last=Bergman |first=Jeremy |date=September 9, 2018 |title=Rodgers helps Packers rally against Bears |url=https://www.nfl.com/news/aaron-rodgers-rallies-packers-to-improbable-win-0ap3000000960283 |url-status=live |archive-url=https://web.archive.org/web/20180910164829/http://www.nfl.com/news/story/0ap3000000960283/article/aaron-rodgers-rallies-packers-to-improbable-win |archive-date=September 10, 2018 |access-date=September 10, 2018 |publisher=National Football League}}</ref> Despite a nagging knee injury, Rodgers get at least 40 pass attempts insyd each of de next three games. Insyd de last of these, he throw ein first interception insyd 150 attempts.<ref>{{Cite web |date=September 30, 2018 |title=GAME RECAP: Bills fall on the road in Green Bay |url=https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |url-status=live |archive-url=https://web.archive.org/web/20181008214257/https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |archive-date=October 8, 2018 |access-date=December 17, 2018 |website=buffalobills.com}}</ref> Insyd Week 5, Rodgers pass for 442 yards (de second-best of ein career) den three touchdowns, buh sanso two fumbles, insyd a 31–23 loss to de Lions.<ref>{{Cite web |last=Owczarski |first=Jim |date=October 7, 2018 |title=Packers doomed by slow start, Mason Crosby's misses in loss to Lions |url=https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |url-status=live |archive-url=https://web.archive.org/web/20201109032148/https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |archive-date=November 9, 2020 |access-date=December 17, 2018 |website=USA Today}}</ref> Insyd de following game, a 33–30 victory over de 49ers, he get 425 passing yards den two passing touchdowns.<ref>{{Cite web |date=October 16, 2018 |title=Bloodied Aaron Rodgers leads Packers and Crosby to redemption over 49ers |url=https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |url-status=live |archive-url=https://web.archive.org/web/20181030035759/https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |archive-date=October 30, 2018 |access-date=October 29, 2018 |website=The Guardian |agency=Associated Press}}</ref>
Following de bye-week, despite a continuing knee injury,<ref>{{Cite news|last=Maske|first=Mark|date=October 16, 2018|title=Aaron Rodgers's knee isn't quite right. But he's still good enough to carry the Packers|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|url-status=live|access-date=December 6, 2019|archive-url=https://web.archive.org/web/20191207093807/https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|archive-date=December 7, 2019}}</ref> Rodgers get ein third consecutive week plus a 100+ quarterback rating,<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log (Games 5, 6, and 8) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231012655/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |archive-date=December 31, 2019 |access-date=December 5, 2019 |website=[[Pro Football Reference]]}}</ref> wich include 286 yards passing, no interceptions, den a go-ahead 40-yard touchdown pass to [[Marquez Valdes-Scantling]] insyd a 29–27 loss to de Los Angeles Rams.<ref>{{Cite web |last=Beacham |first=Greg |date=October 29, 2018 |title=Late fumble keeps Rams unbeaten with 29–27 win over Packers |url=https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |url-status=live |archive-url=https://web.archive.org/web/20181217202249/https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref>
Insyd Week 14, against de Falcons, Rodgers set an NFL record by converting ein 359th consecutive pass widout an interception, breaking Tom Brady ein previous record.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 9, 2018 |title=No picks for Packer: Rodgers sets no-INT mark |url=https://www.espn.com/nfl/story/_/id/25491996 |url-status=live |archive-url=https://web.archive.org/web/20181210123157/http://www.espn.com/nfl/story/_/id/25491996 |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=[[ESPN.com]]}}</ref> Insyd Week 15, against de Chicago Bears, Rodgers throw for 274 yards den an interception insyd a 24–17 loss. Rodgers ein record streak widout an interception end plus 402 pass attempts after he be intercepted by free safety [[Eddie Jackson (safety)|Eddie Jackson]].<ref>{{Cite web |last=Cohen |first=Jay |date=December 16, 2018 |title=Rodgers throws interception as Packers lose 24–17 to Bears |url=https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |url-status=live |archive-url=https://web.archive.org/web/20181217145036/https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref> During Week 16 against de Jets, Rodgers fini plus 442 passing yards, two passing touchdowns, den two rushing touchdowns. Trailing at one point by 15 points, Rodgers den de Packers win 44–38 insyd overtime.<ref>{{Cite web |date=December 23, 2018 |title=Rodgers leads Packers to wild 44–38 overtime win over Jets |url=https://www.espn.com/nfl/recap?gameId=401030870 |url-status=live |archive-url=https://web.archive.org/web/20190101002910/http://www.espn.com/nfl/recap?gameId=401030870 |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> He match ein own feat of achieving at least 400 passing yards, two passing touchdowns, deb two rushing touchdowns insyd a single game. De only oda time insyd NFL history wey na e occur be wen Rodgers accomplish am insyd 2011 against de Denver Broncos.<ref>{{Cite web |last=Kruse |first=Zach |date=December 24, 2018 |title=Packers QB Aaron Rodgers matches his own rare feat vs. Jets |url=https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |url-status=live |archive-url=https://web.archive.org/web/20190123071358/https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Packers Wire}}</ref>
On December 18, 2018, na dem name Rodgers to ein seventh Pro Bowl.<ref>{{Cite web |date=December 18, 2018 |title=NFL reveals rosters for 2019 Pro Bowl in Orlando |url=https://www.nfl.com/news/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando-0ap3000001001792 |url-status=live |archive-url=https://web.archive.org/web/20190108220211/http://www.nfl.com/news/story/0ap3000001001792/article/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando |archive-date=January 8, 2019 |access-date=January 1, 2019 |publisher=National Football League}}</ref> He decline de appearance secof injury wey na he be replaced by [[Russell Wilson]].<ref>{{Cite web |last=Fentress |first=Aaron |date=January 9, 2019 |title=Russell Wilson replaces Aaron Rodgers on NFC Pro Bowl team |url=https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |url-status=live |archive-url=https://web.archive.org/web/20190626144630/https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |archive-date=June 26, 2019 |access-date=June 26, 2019 |website=NBC Sports Northwest}}</ref>
Insyd de regular season finale against de Detroit Lions, Rodgers suffer a concussion early insyd de game wey he no go return.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 30, 2018 |title=Aaron Rodgers suffers concussion in Packers' regular season finale |url=https://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |url-status=live |archive-url=https://web.archive.org/web/20190101005826/http://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]]}}</ref> Na den then send am to de hospital to test for concussion symptoms.<ref name="2018conc">{{Cite web |last=Jones |first=Brian |date=December 31, 2018 |title=Aaron Rodgers sent to hospital after suffering concussion |url=https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |url-status=live |archive-url=https://web.archive.org/web/20220427185549/https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |archive-date=April 27, 2022 |access-date=January 1, 2019 |website=247 SPORTS}}</ref> Secof na de Packers already be eliminated from playoff contention, Rodgers answer questions about whether he for be playing, for fear of injury, by saying: "''That's just not the way I lead, and I'm super-competitive, and I want to be out there with the guys and I look forward to being out there."''<ref name="2018conc" /> Na dem later spot Rodgers at de Packers dema facility after de game.<ref name="2018conc" />
Rodgers fini de season plus 372 completions, 597 attempts, 4,442 passing yards, 25 passing touchdowns, two interceptions den a passer rating of 97.6.<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/ |access-date=January 8, 2026 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to setting de record for consecutive passes widout an interception during de season, Rodgers set NFL records for interception percentage for a season, plus only 0.335% of ein passes be intercepted, den for de amount of thrown away passes.<ref name="passintpfr">{{Cite web |title=NFL Pass Interception % Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20190102050903/https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |archive-date=January 2, 2019 |access-date=January 1, 2019 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |last=Smith |first=Michael David |date=December 3, 2018 |title=Aaron Rodgers avoids interceptions by throwing the ball away at a record rate |url=https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |url-status=live |archive-url=https://web.archive.org/web/20190807024232/https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |archive-date=August 7, 2019 |access-date=November 12, 2019 |website=ProFootballTalk}}</ref> Na dem rank am eighth by ein fellow players on de ''NFL Top 100'' Players of 2019.<ref>{{Cite web |title=2019 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112140727/https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2019 ====
[[File:Aaron_Rodgers_2019.jpg|right|thumb|Rodgers insyd a game against de Washington Redskins ]]
Rodgers start de 2019 season plus a new head coach insyd [[Matt LaFleur]] following de departure of Mike McCarthy.<ref>{{Cite web |last=Wilde |first=Jason |date=September 17, 2019 |title=Believing offensive success is 'close,' Matt LaFleur and Aaron Rodgers focus on making more plays |url=https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |url-status=live |archive-url=https://web.archive.org/web/20190927192039/https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=madison.com}}</ref> De Packers offense rely less on Rodgers ein trademark passes den more on heavy formations den play-action throws to take advantage of running back [[Aaron Jones (running back)|Aaron Jones]].<ref>{{Cite web |last=Mays |first=Robert |date=January 17, 2020 |title=The Incalculable Legacy of Aaron Rodgers |url=https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |url-status=live |archive-url=https://web.archive.org/web/20200409091343/https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |archive-date=April 9, 2020 |access-date=April 7, 2020 |website=The Ringer |language=en}}</ref>
Rodgers help lead de Packers to a 3–0 start plus victories over de Bears, Vikings, den Broncos.<ref>{{Cite web |last=Wilner |first=Barry |date=September 6, 2019 |title=Packers' D, Aaron Rodgers beat Bears 10–3 in opener |url=https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |url-status=live |archive-url=https://web.archive.org/web/20190927192201/https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref><ref>{{Cite web |date=September 15, 2019 |title=Packers ride Rodgers' hot start to 21–16 win over Vikings |url=https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |url-status=dead |archive-url=https://web.archive.org/web/20190927192237/https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |publisher=WBAY |agency=Associated Press}}</ref><ref>{{Cite web |last=Jenkins |first=Keith |date=September 22, 2019 |title=Packers remain unbeaten with 27–16 win over Broncos |url=https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |url-status=live |archive-url=https://web.archive.org/web/20190927193720/https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref> Insyd Week 4, against de Eagles on ''Thursday Night Football'', he get 422 passing yards den two passing touchdowns, buh he sanso throw de game-ending interception as de Packers be handed dema first loss of de season by a score of 34–27.<ref>{{Cite web |date=September 27, 2019 |title=Eagles pick off Aaron Rodgers' late pass to beat Packers |url=https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |url-status=live |archive-url=https://web.archive.org/web/20190927063930/https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=Los Angeles Times |agency=Associated Press}}</ref> Insyd Week 7, against de Raiders, Rodgers post ein first-ever game plus a perfect passer rating of 158.3, de first quarterback insyd team history to do so.<ref>{{Cite web |last=Joseph |first=Andrew |date=October 20, 2019 |title=The Packers players were so pumped to find out Aaron Rodgers had a perfect passer rating |url=https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |url-status=live |archive-url=https://web.archive.org/web/20191021004107/https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |archive-date=October 21, 2019 |access-date=October 20, 2019 |website=USA Today}}</ref> He plete 25-of-31 passes for 429 yards den five touchdowns insyd de 42–24 victory.<ref>{{Cite web |last=Kruse |first=Zach |date=October 20, 2019 |title=Perfection: Aaron Rodgers finishes with perfect passer rating vs. Raiders |url=https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |url-status=live |archive-url=https://web.archive.org/web/20191020214833/https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |archive-date=October 20, 2019 |access-date=October 20, 2019 |website=PackersWire}}</ref> Na dem name am de NFC Offensive Player of de Week for ein performance.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 23, 2019 |title=Aaron Rodgers, Jacoby Brissett among Players of the Week |url=https://www.nfl.com/news/aaron-rodgers-jacoby-brissett-among-players-of-the-week-0ap3000001068643 |url-status=live |archive-url=https://web.archive.org/web/20191023124430/http://www.nfl.com/news/story/0ap3000001068643/article/aaron-rodgers-jacoby-brissett-among-players-of-the-week |archive-date=October 23, 2019 |access-date=October 23, 2019 |publisher=National Football League}}</ref> Insyd Week 17, against de Lions, Rodgers help lead de team to a 23–20 comeback win. As a result of de victory, de Packers secure a first round bye insyd de playoffs.<ref>{{Cite web |date=December 29, 2019 |title=Packers barely beat Lions 23–20 to earn first-round bye |url=https://www.espn.com/nfl/recap?gameId=401127983 |url-status=live |archive-url=https://web.archive.org/web/20220415135127/https://www.espn.com/nfl/recap?gameId=401127983 |archive-date=April 15, 2022 |access-date=December 29, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers fini de 2019 season plus 4,002 passing yards, 26 passing touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2019 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |url-status=live |archive-url=https://web.archive.org/web/20191231012649/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |archive-date=December 31, 2019 |access-date=December 31, 2019 |website=[[Pro Football Reference]]}}</ref>
Insyd de Divisional Round of de playoffs against de Seahawks, Rodgers plete 16 passes on 27 attempts wey he throw for 243 yards den two touchdowns during de 28–23 win.<ref>{{Cite web |date=January 12, 2020 |title=Packers hold off Seahawks 28–23 to reach NFC title game |url=https://www.espn.com/nfl/recap?gameId=401131042 |url-status=live |archive-url=https://web.archive.org/web/20200417042143/https://www.espn.com/nfl/recap?gameId=401131042 |archive-date=April 17, 2020 |access-date=January 13, 2020 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd de NFC Championship Game against de 49ers, Rodgers plete 31 passes on 39 attempts wey he throw for 326 yards den two touchdowns, buh he sanso throw two interceptions, wey dey include one to [[Richard Sherman (American football)|Richard Sherman]] insyd de final two minutes of de game as de Packers loose 37–20.<ref>{{Cite web |last=Wagner-McGough |first=Sean |date=January 19, 2020 |title=Packers suffer system-wide failure in ugly NFC Championship loss as clock ticks on the Aaron Rodgers era |url=https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |url-status=live |archive-url=https://web.archive.org/web/20200121163627/https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |archive-date=January 21, 2020 |access-date=January 20, 2020 |website=CBS Sports}}</ref> De loss mark Rodgers ein third consecutive NFC Championship loss (a streak wey go extend to four de following season).<ref name="Clunker">{{Cite web |last=Reischel |first=Rob |date=January 19, 2020 |title=Green Bay Packers' Aaron Rodgers Has Another NFC Championship Game Clunker |url=https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |url-status=live |archive-url=https://web.archive.org/web/20200120124354/https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |archive-date=January 20, 2020 |access-date=January 22, 2020 |website=Forbes}}</ref> Na dem rank am 16th by ein fellow players on de ''NFL Top 100'' Players of 2020.<ref>{{Cite web |title=2020 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200015/https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2020: Third MVP ====
Prior to a Week 5 bye, Rodgers help lead de Packers to a four-game winning streak to start de 2020 season.<ref>{{Cite web |date=October 7, 2020 |title=Packers head into their Week 5 bye |url=https://www.packers.com/news/packers-head-into-their-week-5-bye |url-status=live |archive-url=https://web.archive.org/web/20211115190601/https://www.packers.com/news/packers-head-into-their-week-5-bye |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=packers.com |language=en-US}}</ref> That winning streak go end insyd Week 6 against de Buccaneers, insyd wich Rodgers throw for 160 yards den two interceptions, wey dey include a pick-six (de third of ein professional career), during de 38–10 loss.<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – October 18th, 2020 |url=https://www.pro-football-reference.com/boxscores/202010180tam.htm |url-status=live |archive-url=https://web.archive.org/web/20201019130703/https://www.pro-football-reference.com/boxscores/202010180tam.htm |archive-date=October 19, 2020 |access-date=October 22, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> After a 3–2 stretch give de team, Rodgers throw for 211 yards den four touchdowns insyd a 41–25 victory over de Bears insyd Week 12. During de game, he cam be de 11th player insyd NFL history to eclipse 50,000 career passing yards, achieving de milestone on a 39-yard touchdown pass to tight end [[Robert Tonyan]] midway thru de third quarter.<ref>{{Cite magazine|last=Huber|first=Bill|date=November 29, 2020|title=Rodgers Makes History with 50,000-Yard Milestone|url=https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|url-status=live|archive-url=https://web.archive.org/web/20201130035319/https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|archive-date=November 30, 2020|access-date=November 30, 2020|magazine=Sports Illustrated}}</ref> In Week 13 against de Eagles, Rodgers throw for 295 yards den three touchdowns during de 30–16 win. Rodgers ein third touchdown pass of de game be to wide receiver [[Davante Adams]] wey na e be ein 400th career touchdown pass.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – December 6th, 2020 |url=https://www.pro-football-reference.com/boxscores/202012060gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20201125163729/https://www.pro-football-reference.com/boxscores/202012060gnb.htm |archive-date=November 25, 2020 |access-date=December 8, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Na dem name Rodgers de NFC Offensive Player of de Week for ein performance insyd Week 13.<ref>{{Cite web |last=Gordon |first=Grant |date=December 9, 2020 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |url-status=live |archive-url=https://web.archive.org/web/20201209165050/https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |archive-date=December 9, 2020 |access-date=December 10, 2020 |publisher=National Football League |language=en-US}}</ref> On December 21, 2020, na dem select am for de 2021 Pro Bowl.<ref>{{Cite web |date=December 21, 2020 |title=NFL reveals complete AFC, NFC rosters for 2021 Pro Bowl |url=https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |url-status=live |archive-url=https://web.archive.org/web/20201222000525/https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |archive-date=December 22, 2020 |access-date=December 21, 2020 |publisher=National Football League}}</ref> N dem name Rodgers de NFC Offensive Player of de Month for ein performance insyd December after passing for 15 touchdowns den one interception insyd five victories for de Packers.<ref>{{Cite web |last=Gordon |first=Grant |date=January 7, 2021 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen among Players of the Month |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20210107133506/https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |archive-date=January 7, 2021 |access-date=January 7, 2021 |publisher=National Football League}}</ref>
Overall, Rodgers fini de 2020 regular season plus 4,299 passing yards, 48 passing touchdowns, den five interceptions. Ein passing touchdowns total set a new franchise record.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> He get seven total games plus four passing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2020 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |url-status=live |archive-url=https://web.archive.org/web/20210109144744/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |archive-date=January 9, 2021 |access-date=January 7, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> He lead de league insyd numerous statistical categories, wey dey include completion percentage, touchdown passes, den passer rating.<ref>{{Cite web |last=Kruse |first=Zach |date=January 4, 2021 |title=Packers QB Aaron Rodgers led NFL in all these statistical categories in 2020 |url=https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |url-status=live |archive-url=https://web.archive.org/web/20210104150141/https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |archive-date=January 4, 2021 |access-date=January 7, 2021 |website=Packers Wire |language=en-US}}</ref> On January 8, 2021, he make de 2020 All-Pro Team first-team.<ref>{{Cite web |date=January 8, 2021 |title=2020 NFL All-Pro Team Roster |url=https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |url-status=live |archive-url=https://web.archive.org/web/20210108171953/https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |archive-date=January 8, 2021 |access-date=January 8, 2021 |work=Associated Press News}}</ref> De Pro Football Writers of America name am de NFL MVP.<ref>{{Cite web |last=Werner |first=Barry |date=January 21, 2021 |title=Aaron Rodgers earns PFWA NFL MVP honors |url=https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |url-status=live |archive-url=https://web.archive.org/web/20210131171403/https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |archive-date=January 31, 2021 |access-date=January 24, 2021 |website=Yahoo! Sports}}</ref>
De Packers fini plus a 13–3 record, dem win de NFC North, wey dem earn a first-round bye for de NFC playoffs.<ref>{{Cite web |title=2020 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2020/index.htm |url-status=live |archive-url=https://web.archive.org/web/20211115190600/https://www.pro-football-reference.com/years/2020/index.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de Divisional Round of de playoffs against de Rams, Rodgers throw for 296 yards den two touchdowns wey he sanso rush for anoda touchdown during de 32–18 win.<ref>{{Cite web |title=Divisional Round – Los Angeles Rams at Green Bay Packers – January 16th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210118220025/https://www.pro-football-reference.com/boxscores/202101160gnb.htm |archive-date=January 18, 2021 |access-date=January 20, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de NFC Championship against de Buccaneers, Rodgers throw for 346 yards den three touchdowns, buh he sanso throw an interception wey na he be sacked five times while he be constantly pressured during de 31–26 loss.<ref name="mcatee_01242021">{{Cite news|last=McAtee|first=Riley|date=January 24, 2021|title=The Packers' Championship-Game Curse Continues. Will It Cost Them Aaron Rodgers?|work=The Ringer|url=https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125040540/https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|archive-date=January 25, 2021}}</ref><ref>{{Cite news|last=Hoffman|first=Benjamin|date=January 24, 2021|title=What We Learned From the N.F.L.'s Conference Championships|work=The New York Times|url=https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125041821/https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|archive-date=January 25, 2021}}</ref><ref name="demovsky_01242021">{{Cite web |last=Demovsky |first=Rob |date=January 24, 2021 |title=Aaron Rodgers uncertain about future with Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20210125195535/https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |archive-date=January 25, 2021 |access-date=January 25, 2021 |website=[[ESPN.com]]}}</ref> Rodgers fall to 1–4 insyd conference championship games, becoming de first quarterback insyd NFL history to loose four in a row.<ref name="mcatee_01242021" /><ref name="demovsky_01242021" /><ref>{{Cite web |title=NFC Championship – Tampa Bay Buccaneers at Green Bay Packers – January 24th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101240gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210129001224/https://www.pro-football-reference.com/boxscores/202101240gnb.htm |archive-date=January 29, 2021 |access-date=January 31, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> After de season, he win de AP Most Valuable Player Award<ref>{{Cite web |last=Shook |first=Nick |date=February 6, 2021 |title=Packers QB Aaron Rodgers named 2020 AP NFL Most Valuable Player |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |url-status=live |archive-url=https://web.archive.org/web/20210207034518/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |archive-date=February 7, 2021 |access-date=February 6, 2021 |publisher=National Football League}}</ref> as well as de FedEx Air Player of de Year.<ref>{{Cite web |title=FedEx Air and Ground Players of the Year |url=https://www.nfl.com/voting/air-and-ground/player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20210125192004/https://www.nfl.com/voting/air-and-ground/player-of-the-year |archive-date=January 25, 2021 |access-date=January 25, 2021 |publisher=National Football League}}</ref> Na dem rank am 3rd by ein fellow players on de ''NFL Top 100'' Players of 2021.<ref>{{Cite web |title=2021 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200023/https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2021: Fourth MVP ====
[[File:Aaron_Rodgers_Packers_OCT2021_(cropped).jpg|right|thumb|Rodgers insyd 2021]]
Rodgers ein 2021 season get a rough start, as he plete 15 of 28 passes for 133 yards den two interceptions as Green Bay loose 38–3 to de Saints at TIAA Bank Field.<ref>{{Cite web |last=Benjamin |first=Cody |date=September 12, 2021 |title=Packers bench Aaron Rodgers for Jordan Love as Jameis Winston torches Green Bay in Week 1 |url=https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |url-status=live |archive-url=https://web.archive.org/web/20210913012242/https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |archive-date=September 13, 2021 |access-date=September 13, 2021 |website=CBS Sports |language=en}}</ref> Na dem pull am insyd de fourth quarter for [[Jordan Love]] as na ein chance of a comeback be all buh eliminated.<ref>{{Cite web |last=Polacek |first=Scott |date=September 12, 2021 |title=Packers' Aaron Rodgers Pulled for Jordan Love amid Blowout by Jameis Winston, Saints |url=https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |url-status=live |archive-url=https://web.archive.org/web/20211021021121/https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |archive-date=October 21, 2021 |access-date=October 21, 2021 |website=Bleacher Report |language=en}}</ref> However, Rodgers dem de Packers recover, going on a seven-game winning streak following de loss to New Orleans.<ref>{{Cite web |last1=Hodkiewicz |first1=Wes |last2=Spofford |first2=Mike |date=October 28, 2021 |title=Late interception wins it for Packers, 24–21 over Cardinals |url=https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |url-status=live |archive-url=https://web.archive.org/web/20211030160810/https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |archive-date=October 30, 2021 |access-date=October 30, 2021 |website=packers.com |language=en-US}}</ref>
Insyd Week 6, Rodgers seal a 24–14 victory against de Bears plus a six-yard touchdown run with 4:34 to go insyd de fourth quarter. During ein celebration, he yell at de Chicago crowd, "''All my f***ing life I own you! I still own you!"''<ref>{{cite web |last1=Demovsky |first1=Rob |date=October 17, 2021 |title=Packers QB Aaron Rodgers taunts jeering Bears fans after game-clinching TD run: 'I still own you' |url=https://www.espn.com/nfl/story/_/id/32419669/packers-qb-aaron-rodgers-taunts-jeering-bears-fans-game-clinching-td-run-own-you |access-date=September 3, 2025 |website=ESPN.com |publisher=ESPN}}</ref> Na de utterance be heavily discussed insyd ein aftermath, den two months later- wen Rodgers play de second game against Chicago- he state say na he get no regrets for making de comment.<ref>{{cite web |last1=Goodbread |first1=Chase |date=December 9, 2021 |title=Packers QB Aaron Rodgers has no regrets for saying 'I own you' to Bears fan |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-has-no-regrets-for-saying-i-own-you-to-bears-fan |access-date=September 3, 2025 |website=NFL.com |publisher=NFL}}</ref>
Following a positive test for [[COVID-19]], na dem place Rodgers on de COVID-19 reserve list on November 3.<ref>{{Cite web |date=November 3, 2021 |title=Packers place QB Aaron Rodgers on reserve/COVID-19 list |url=https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211107032353/https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |archive-date=November 7, 2021 |access-date=November 15, 2021 |website=Packers.com}}</ref> He miss 10 days per de league ein COVID-19 policies for unvaccinated players, wey dey include a game against de Chiefs.<ref>{{Cite web |last=Shook |first=Nick |date=November 3, 2021 |title=Packers QB Aaron Rodgers tests positive for COVID-19, will not play in Week 9 versus Chiefs |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |url-status=live |archive-url=https://web.archive.org/web/20211103152721/https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |archive-date=November 3, 2021 |access-date=November 3, 2021 |publisher=National Football League}}</ref> Despite answering "''Yeah, I'm immunized''" wen dem biz am during de preseason if na he be vaccinated against COVID-19, na he no actually receive a vaccination. Instead, he receive homeopathic treatment from ein personal doctor. While unvaccinated, he commit multiple violations of NFL COVID-19 protocols for unvaccinated players, wey dey include attending parties plus teammates while he no dey use PPE den dey appear unmasked at multiple postgame press conferences.<ref>{{Cite news|last=Jenkins|first=Sally|date=November 4, 2021|title=Aaron Rodgers is entitled to stay unvaccinated. He's not entitled to lie about it|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211105053620/https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|archive-date=November 5, 2021}}</ref><ref>{{Cite web |last=Shpigel |first=Ben |date=November 3, 2021 |title=Aaron Rodgers Out After Positive Coronavirus Test |url=https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |url-status=live |archive-url=https://web.archive.org/web/20211105230713/https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |archive-date=November 5, 2021 |access-date=November 6, 2021 |website=[[The New York Times]]}}</ref><ref>{{Cite news|last=Maske|first=Mark|date=November 3, 2021|title=Aaron Rodgers tests positive for coronavirus, is considered unvaccinated under NFL rules|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211103182339/https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|archive-date=November 3, 2021}}</ref><ref name="Paras">{{Cite web |last=Paras |first=Matthew |date=November 8, 2021 |title=State Farm backs Rodgers despite vaccine controversy |url=https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |url-status=live |archive-url=https://web.archive.org/web/20211110054603/https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=The Washington Times |language=en-US}}</ref><ref>{{Cite web |last=Florio |first=Mike |date=November 6, 2021 |title=Aaron Rodgers consulted with Joe Rogan, has taken Ivermectin |url=https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |url-status=live |archive-url=https://web.archive.org/web/20211110054606/https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=ProFootballTalk |language=en-US}}</ref> After a review, na dem fine am $14,650 for violations of de agreed protocols wey na ein team be fined $300,000.<ref name="demosky1">{{Cite web |last=Demovsky |first=Rob |date=November 10, 2021 |title=Green Bay Packers, Aaron Rodgers, Allen Lazard fined for COVID-19 protocol violations, source says |url=https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |url-status=live |archive-url=https://web.archive.org/web/20220417022230/https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |archive-date=April 17, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]]}}</ref><ref name="gordon1">{{Cite web |last=Gordon |first=Grant |date=November 9, 2021 |title=Packers fined $300K, Aaron Rodgers, Allen Lazard fined $14K for violation of COVID protocols |url=https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |url-status=live |archive-url=https://web.archive.org/web/20220415084129/https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |archive-date=April 15, 2022 |access-date=January 23, 2022 |publisher=National Football League}}</ref>
Na Rodgers be activated off de reserve/COVID-19 list on November 13, wey he return to play de next day against de Seahawks, a game de Packers win 17–0.<ref>{{Cite web |date=November 13, 2021 |title=Packers activate QB Aaron Rodgers off reserve/COVID-19 list |url=https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211113210134/https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |archive-date=November 13, 2021 |access-date=November 13, 2021 |website=Packers.com}}</ref> Insyd Week 15, Rodgers throw for 268 yards den three touchdowns insyd a 31–30 win over de Ravens, wich clinch de NFC North title give de Packers for a third consecutive season wey e earn am NFC Offensive Player of de Week honors.<ref>{{Cite web |last=Gordon |first=Grant |date=December 22, 2021 |title=Packers QB Aaron Rodgers, Chiefs TE Travis Kelce lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |url-status=live |archive-url=https://web.archive.org/web/20220113012121/https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |archive-date=January 13, 2022 |access-date=January 17, 2022 |publisher=National Football League}}</ref> On December 23, 2021, na dem name Rodgers to ein tenth Pro Bowl.<ref>{{Cite web |date=December 22, 2021 |title=2022 NFL Pro Bowl rosters for AFC, NFC: Bucs' Tom Brady gets record 15th selection |url=https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |url-status=live |archive-url=https://web.archive.org/web/20211228200849/https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |archive-date=December 28, 2021 |access-date=December 24, 2021 |website=[[ESPN.com]]}}</ref>
Insyd a Week 16 victory over de Browns, Rodgers throw ein 443rd career touchdown pass, passing Brett Favre for de most all-time career touchdown passes insyd Packers history.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 25, 2021 |title=Rodgers tops Favre's Pack record for TD passes |url=https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |url-status=live |archive-url=https://web.archive.org/web/20211227221346/https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |archive-date=December 27, 2021 |access-date=January 17, 2022 |website=[[ESPN.com]] |language=en}}</ref> For ein play insyd de month of December, Rodgers earn NFC Offensive Player of de Month honors.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=December 30, 2021 |title=For 10th time, Packers QB Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20220104191144/https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month#:~:text=GREEN%2520BAY%2520%25E2%2580%2593%2520Following%2520a%2520dominant,10th%2520time%2520in%2520his%2520career |archive-date=January 4, 2022 |access-date=January 17, 2022 |website=Packers.com |language=en-US}}</ref> He fini de 2021 season plus 4,115 passing yards, 37 touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2021 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2021/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> On January 14, 2022, Rodgers earn ein fourth career first-team All-Pro selection.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=January 14, 2022 |title=Three Packers players named first-team All-Pro |url=https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |url-status=live |archive-url=https://web.archive.org/web/20220116105423/https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |archive-date=January 16, 2022 |access-date=January 14, 2022 |website=packers.com}}</ref>
Insyd de Divisional Round against de 49ers, Rodgers throw for 225 yards, buh a poor performance by de special teams unit haunt de Packers, dem loose 13–10. Na e be Rodgers ein fourth loss insyd as many games to de 49ers insyd de postseason den Rodgers ein second home divisional loss.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> He sanso fail to notice a wide–open Allen Lazard (den [[Equanimeous St. Brown]]) on ein last throw of de game, instead targeting Davante Adams insyd double coverage for a Hail Mary attempt.<ref>{{Cite web |last=Farrar |first=Doug |title=What Aaron Rodgers missed on the play that could have saved the Packers' season |url=https://touchdownwire.usatoday.com/story/sports/nfl/touchdown/2022/01/23/aaron-rodgers-davante-adams-allen-lazard-2021-nfl-playoffs/80662791007/ |access-date=2026-08-06 |website=Touchdown Wire |language=en-US}}</ref> After de season, Rodgers win de AP NFL Most Valuable Player Award for de second consecutive season den de fourth time overall.<ref>{{Cite web |last=Shook |first=Nick |date=February 10, 2022 |title=Packers QB Aaron Rodgers named 2021 AP NFL MVP |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20220425153314/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |archive-date=April 25, 2022 |access-date=February 11, 2022 |publisher=National Football League}}</ref> Rodgers cam be de fifth player to win consecutive MVPs den first since Peyton Manning between 2008 den 2009.<ref>{{Cite web |last=Sutelan |first=Edward |date=February 10, 2022 |title=NFL MVP back-to-back winners: Aaron Rodgers set to join rare company in NFL history |url=https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |url-status=live |archive-url=https://web.archive.org/web/20220413074439/https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |archive-date=April 13, 2022 |access-date=February 20, 2022 |website=sportingnews.com |language=en}}</ref> Rodgers join Manning as de only players insyd NFL history to win at least four MVPs.<ref>{{Cite web |last=Spofford |first=Mike |date=February 10, 2022 |title=Packers QB Aaron Rodgers wins fourth NFL MVP award |url=https://www.packers.com/news/packers-qb-aaron-rodgers-wins-fourth-nfl-mvp-award |access-date=January 19, 2023 |website=packers.com |language=en-US}}</ref> Na dem rank am third by ein fellow players on de ''NFL Top 100'' Players of 2022.<ref>{{Cite web |title=2022 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2022-nfl-top-100.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2022 ====
[[File:Aaron_Rodgers_OCT2022_(cropped).jpg|thumb|Rodgers insyd 2022]]
[[File:Aaron_Rodgers_Packers_vs_Commanders_OCT2022.jpg|left|thumb|Rodgers dey play against de Washington Commanders insyd 2022]]
On March 8, Rodgers confirm say he go return den play give de Packers for de 2022 season after speculations dat Rodgers go fi retire anaa demand a trade to anoda team.<ref>{{Cite web |last=Demovsky |first=Rob |date=March 8, 2021 |title=QB Aaron Rodgers returning to play for Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220411070329/https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |archive-date=April 11, 2022 |access-date=March 9, 2021 |website=[[ESPN.com]]}}</ref> Na der be reports say Rodgers den de Packers agree to terms on a 4-year, $200 million contract extension wey go make am de highest-paid player insyd NFL history, buh Rodgers deny those reports on Twitter, wey he state say de numbers on de proposed contract be inaccurate, den dat he be yet to sign such a contract. He confirm, however, say he go return to play ein 18th NFL season plus de Packers.<ref>{{Cite tweet|number=1501282463632568322|user=AaronRodgers12|title=Hey everyone, just wanted to clear some things up; YES I will be playing with the @packers next year, however, reports about me signing a contract are inaccurate, as are the supposed terms of the contract I 'signed'.|date=March 8, 2022|first=Aaron|last=Rodgers}}</ref><ref>{{Cite web |date=March 15, 2022 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |url-status=live |archive-url=https://web.archive.org/web/20220404205504/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |archive-date=April 4, 2022 |access-date=April 27, 2022 |website=Packers.com}}</ref>
On March 16, he officially sign ein contract extension. Na de final terms of de contract be a 3-year contract (wich replace de final year of ein existing contract) worth $150.8 million, plus $101.5 million guaranteed. De new contract make am de highest paid player insyd North American sports history on an annual basis, surpassing de NBA ein [[Damian Lillard]] ein $49 million per annum contract.<ref>{{Cite web |last=Roscher |first=Liz |date=March 15, 2022 |title=Aaron Rodgers' Packers contract is reportedly official, and the numbers are staggering |url=https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |url-status=live |archive-url=https://web.archive.org/web/20220427025539/https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |archive-date=April 27, 2022 |access-date=March 17, 2022 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd de season opener against de Vikings, Rodgers throw for 195 yards den an interception insyd de 23–7 loss.<ref>{{Cite web |last=Demovsky |first=Rob |date=September 12, 2022 |title=Following loss to Minnesota Vikings, QB Aaron Rodgers says Green Bay Packers 'hurting ourselves' with 'too many mental mistakes' |url=https://www.espn.com/nfl/story/_/id/34575984/following-loss-minnesota-vikings-qb-aaron-rodgers-says-green-bay-packers-hurting-ourselves-too-many-mental-mistakes |access-date=September 12, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{cite web |last=Huber |first=Bill |date=September 12, 2022 |title=Mental Mistakes Frustrate Rodgers in Packers' Loss at Vikings |url=https://www.si.com/nfl/packers/gameday/mental-mistakes-frustrate-rodgers-in-packers-loss-at-vikings |access-date=July 1, 2025 |website=SI.com}}</ref> Insyd Week 4 against de Patriots, Rodgers throw for 251 yards den two touchdowns, buh he sanso throw ein fourth career pick-six to [[Jack Jones (American football)|Jack Jones]] insyd de 27–24 overtime win.<ref>{{Cite web |last=Patra |first=Kevin |date=October 3, 2022 |title=Aaron Rodgers on Packers' OT win over Patriots: 'This way of winning, I don't think, is sustainable' |url=https://www.nfl.com/news/aaron-rodgers-packers-patriots-this-way-of-winning-not-sustainable |access-date=October 13, 2022 |publisher=National Football League}}</ref> Insyd Week 5 at London, Rodgers throw for 222 yards den two touchdowns insyd an upset loss against de Giants.<ref>{{Cite news|last=Larrison|first=Ryan|date=October 9, 2022|title=Aaron Rodgers threw two touchdowns in a loss at London|url=https://www.rotoballer.com/player-news/aaron-rodgers-throws-two-touchdowns-during-loss-in-london/1079701|access-date=October 10, 2022|website=rotoballer.com}}</ref> Insyd Week 8 against de Buffalo Bills on Sunday Night Football, Rodgers throw for 203 yards, two touchdowns den one interception as de Packers loose dema fourth consecutive game insyd de 27–17 defeat.<ref>{{Cite web |last=Patra |first=Kevin |date=October 31, 2022 |title=Aaron Rodgers on the Packers' 3–5 start |url=https://www.nfl.com/news/aaron-rodgers-packers-3-5-start-nobody-feels-sorry-for-us-bills |access-date=November 5, 2022 |publisher=National Football League |language=en-US}}</ref> De next week against de Lions, Rodgers throw for 291 yards, a touchdown, den three interceptions insyd de 15–9 loss. Na e be de first time since Week 15 of de 2017 season wey Rodgers throw three interceptions insyd a game.<ref>{{Cite web |date=November 6, 2022 |title=Aaron Rodgers throws 3 INTs, lets Lions beat Packers 15–9 |url=https://www.cbssports.com/nfl/news/aaron-rodgers-throws-3-ints-lets-lions-beat-packers-15-9/ |access-date=November 6, 2022 |website=CBSSports.com |language=en |agency=Associated Press}}</ref> Rodgers bounce back de following week against de Cowboys, completing 14-of-20 passes for 224 yards den three touchdowns insyd 31–28 overtime victory.<ref>{{Cite web |last=Bubel |first=Jennifer |date=November 13, 2022 |title=Dallas Cowboys vs. Green Bay Packers: Stats, Scores, Highlights |url=https://en.as.com/nfl/dallas-cowboys-vs-green-bay-packers-live-online-stats-scores-and-highlights-nfl-week-10-n/ |access-date=November 15, 2022 |website=AS USA |language=en-us}}</ref><ref>{{Cite web |date=November 13, 2022 |title=Rodgers rallies Packers past McCarthy's Cowboys 31–28 in OT |url=https://www.espn.com/nfl/recap/_/gameId/401437131 |access-date=November 15, 2022 |website=[[ESPN.com]] |language=en-us |agency=Associated Press}}</ref> Following a Week 11 loss to de Titans, Rodgers confirm na he dey play plus a broken thumb on ein throwing hand he suffer insyd Week 5.<ref>{{Cite web |last=Alper |first=Josh |date=November 23, 2022 |title=Aaron Rodgers says he's been playing with a broken thumb |url=https://profootballtalk.nbcsports.com/2022/11/23/aaron-rodgers-says-hes-been-playing-with-a-broken-thumb/ |access-date=December 2, 2022 |website=ProFootballTalk |language=en-US}}</ref><ref>{{Cite web |last=Thompson |first=Scott |date=November 23, 2022 |title=Packers' Aaron Rodgers admits playing through broken thumb since Week 5 |url=https://www.foxnews.com/sports/packers-aaron-rodgers-admits-playing-through-broken-thumb-since-week-5 |access-date=November 24, 2022 |publisher=Fox News}}</ref> A Week 12 loss to de Eagles lef de Packers plus a 4–8 record, buh na de team rally off four consecutive wins to get to 8–8 before de regular season finale.<ref>{{Cite web |title=Green Bay Packers 2022 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2022/gamelog/ |access-date=January 20, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> De Packers fini plus an 8–9 record wey he miss de postseason following a Week 18 loss to de Detroit Lions insyd a win-and-in scenario for Green Bay.<ref>{{Cite web |title=2022 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2022/index.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |date=January 9, 2023 |title=How the Lions beat the Packers: Detroit eliminates rival Green Bay from playoff contention, Seahawks clinch final spot |url=https://www.nytimes.com/athletic/live-blogs/lions-packers-playoff-picture-seeding/Vj6r382oO6N1/ |access-date=January 20, 2023 |website=The Athletic |language=en}}</ref> After de game, Rodgers put ein arm around long-time teammate Cobb, wey he look solemnly around Lambeau Field before de two walked down de tunnel togeda. Sam suspected say dis indicate say Rodgers play ein last game give de Packers.<ref>{{Cite web |last=McKenna |first=Henry |date=January 9, 2023 |title=Has Packers legend Aaron Rodgers walked off Lambeau Field for the last time? |url=https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |url-status=live |archive-url=https://web.archive.org/web/20230109203158/https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |archive-date=January 9, 2023 |access-date=April 5, 2026 |website=[[Fox Sports]] |publisher=[[Fox Corporation]]}}</ref>
Rodgers fini de 2022 season plus 3,695 passing yards, 26 touchdowns, den 12 interceptions, wich mark de most for Rodgers insyd a single season since 2008.<ref>{{Cite web |title=Aaron Rodgers 2022 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2022/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |last=Kruse |first=Zach |date=January 9, 2023 |title=Aaron Rodgers throws interception on final pass of disappointing 2022 season |url=https://news.yahoo.com/aaron-rodgers-throws-interception-final-144926791.html |access-date=January 19, 2023 |publisher=Yahoo! News |language=en-US}}</ref> Na dem rank am 51st by ein fellow players on de ''NFL Top 100'' Players of 2023.<ref>{{Cite web |title=2023 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2023-nfl-top-100.htm |access-date=January 20, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
=== New York Jets ===
==== 2023: Achilles injury ====
[[File:Rodgers_vs_Bills_2.jpg|right|thumb|Rodgers (white, #8) dey take a snap against de Bills, shortly before ein injury.]]
On April 26, 2023, Rodgers be traded to de Jets, along plus de Packers dema first den fifth-round selections insyd de 2023 NFL draft, in exchange for de Jets dema first, second (via Cleveland) den sixth-round selections insyd de 2023 draft den a conditional second-round selection (wich na go convert to a first if Rodgers play 65% of de offensive snaps insyd 2023, buh na e it no happen) insyd de 2024 NFL draft.<ref>{{Cite web |last=Allen |first=Eric |date=April 26, 2023 |title=OFFICIAL Jets Acquire QB Aaron Rodgers From Green Bay Packers |url=https://www.newyorkjets.com/news/jets-acquire-qb-aaron-rodgers-from-green-bay-packers |access-date=July 28, 2023 |website=NewYorkJets.com}}</ref> De move echo de career path of ein predecessor Brett Favre, wey similarly spend over fifteen years as quarterback of de Packers before he be traded to de Jets.<ref>{{Cite web |last=Kerr |first=Jeff |date=April 24, 2023 |title=Aaron Rodgers traded to Jets: Ex-Packers QB taking eerily similar path as Brett Favre in journey to New York |url=https://www.cbssports.com/nfl/news/aaron-rodgers-traded-to-jets-ex-packers-qb-taking-eerily-similar-path-as-brett-favre-in-journey-to-new-york/ |access-date=May 1, 2023 |website=CBS Sports}}</ref> Although [[Joe Namath]] grant Rodgers permission to wear ein retired No. 12 jersey, Rodgers announce say he go return to wearing de No. 8 jersey, wich na he wear thru out ein college career plus de California Golden Bears.<ref>{{Cite web |last=Riccette |first=Billy |date=April 26, 2023 |title=Aaron Rodgers on number change: 'To me, No. 12 is Broadway Joe' |url=https://sports.yahoo.com/aaron-rodgers-number-change-no-185505111.html |access-date=July 19, 2023 |website=Yahoo! Sports}}</ref> On July 26, 2023, Rodgers take a pay cut wey he agree to a rework contract plus de Jets.<ref>{{cite web |last1=Cimini |first1=Rich |date=July 26, 2023 |title=Aaron Rodgers signs reworked contract with Jets |url=https://www.espn.com/nfl/story/_/id/38075863/aaron-rodgers-agrees-reworked-contract-jets |access-date=July 26, 2023 |website=[[ESPN.com]]}}</ref>
Making ein Jets debut insyd Week 1 on ''Monday Night Football'' against de Bills at MetLife Stadium, Rodgers injure ein left ankle on just ein fourth offensive snap after he be sacked by Bills dema defensive end [[Leonard Floyd]]. Na dem help Rodgers off de field wey dem later cart am to de locker room for further evaluation.<ref>{{Cite web |last=Cimini |first=Rich |date=September 12, 2023 |title=Jets fear QB Aaron Rodgers suffered serious Achilles injury |url=https://www.espn.com/nfl/story/_/id/38381823/qb-aaron-rodgers-injures-ankle-opening-drive-new-york-jets-debut |access-date=September 12, 2023 |website=[[ESPN.com]] |language=en}}</ref> Rodgers ein backup [[Zach Wilson]] go on to lead de Jets to a 22–16 win insyd overtime.<ref>{{Cite web |last=Kownack |first=Bobby |date=September 11, 2023 |title=Jets QB Aaron Rodgers exits Monday's overtime win against Bills on first drive; ankle X-rays negative |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-ankle-questionable-to-return-to-monday-s-game-against-bill |access-date=September 12, 2023 |website=NFL.com |language=en-US}}</ref> De next day, na dem diagnose Rodgers plus an Achilles tendon rupture wey na dem later place am on injured reserve.<ref>{{Cite web |last=Dajani |first=Jordan |date=September 12, 2023 |title=Aaron Rodgers injury update: MRI reveals Jets QB suffered a complete tear of Achilles tendon |url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-update-mri-reveals-jets-qb-suffered-a-complete-tear-of-achilles-tendon/ |access-date=September 12, 2023 |website=CBS Sports |language=en}}</ref><ref>{{Cite web |last=Sullivan |first=Phil |date=September 12, 2023 |title=Jets Place Aaron Rodgers on Injured Reserve; Saleh Commits To Zach Wilson |url=https://www.jetnation.com/2023/09/13/jets-place-aaron-rodgers-on-injured-reserve-saleh-commits-to-zach-wilson/ |access-date=September 14, 2023 |website=JetNation.com}}</ref> Rodgers undergo surgery on September 13, plus Dr. [[Neal ElAttrache]] placing an internal brace insyd ein left Achilles plus de goal of a mid-January return at de earliest.<ref>{{Cite web |last1=Rapoport |first1=Ian |author-link1=Ian Rapoport |last2=Pelissero |first2=Tom |author-link2=Tom Pelissero |date=September 16, 2023 |title=Jets QB Aaron Rodgers aims for potential playoff return after innovative surgery on torn Achilles |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-aims-for-potential-playoff-return-after-innovative-surgery |access-date=September 17, 2023 |website=NFL.com}}</ref> On November 29, de New York Jets open de 21-day practice window for Rodgers. Limited insyd practice, na Rodgers be cleared for functional activity buh no contact.<ref>{{Cite web |last=Patra |first=Kevin |date=November 29, 2023 |title=Jets opening QB Aaron Rodgers' 21-day practice window |url=https://www.nfl.com/news/jets-opening-qb-aaron-rodgers-21-day-practice-window |access-date=November 30, 2023 |website=NFL.com |language=en-US}}</ref> He be activated off injured reserve on December 20, buh de Jets announce he no go san play dis season after dema Week 15 loss to de Dolphins dem mathematically eliminate dem from playoff contention.<ref>{{Cite web |last=Shook |first=Nick |date=December 20, 2023 |title=Jets to activate Aaron Rodgers off IR to allow QB to continue to practice with team |url=https://www.nfl.com/news/jets-to-activate-aaron-rodgers-off-ir-to-allow-qb-to-continue-to-practice-with-t |access-date=December 20, 2023 |website=NFL.com}}</ref><ref>{{cite web |last=Reyes |first=Lorenzo |date=December 20, 2023 |title=Aaron Rodgers' season is over, so why are the Jets activating him? |url=https://www.usatoday.com/story/sports/nfl/jets/2023/12/20/aaron-rodgers-comeback-jets-shut-down-achilles-tear/71825680007/ |access-date=July 24, 2024 |website=USA TODAY}}</ref> Despite missing most of de season, he be ranked 92nd by ein fellow players on de NFL Top 100 Players of 2024.<ref>{{cite web |last=Hetherington |first=Krissy |date=July 23, 2024 |title=Top 100 Players of 2024, Nos. 100–91: Aaron Rodgers falls to lowest ranking in his career |url=https://www.nfl.com/news/top-100-players-of-2024-nos-100-91-aaron-rodgers-trevor-lawrence |access-date=July 6, 2025 |website=NFL.com}}</ref>
==== 2024 ====
[[File:Aaron_Rodgers_Jets_vs_Titans_SEPT2024.png|thumb|Rodgers dey play against de Tennessee Titans at Nissan Stadium insyd 2024]]
After playing just four offensive snaps insyd ein first season plus de Jets secof an Achilles injury, Rodgers make ein return on ''Monday Night Football'' insyd Week 1 to kick off de 2024 campaign. Insyd ein highly anticipated return, Rodgers plete 13 of 21 passes for 167 yards, one touchdown den one interception insyd a 32–19 loss to de defending NFC champion San Francisco 49ers.<ref>{{Cite web |last=Patra |first=Kevin |date=September 9, 2024 |title=Aaron Rodgers on Jets' loss to 49ers: 'I can play better' |url=https://www.nfl.com/news/aaron-rodgers-on-jets-loss-to-49ers-i-can-play-better |access-date=September 10, 2024 |website=[[NFL.com]] |language=en}}</ref> Insyd de Jets dema home opener against de New England Patriots, Rodgers plete 27 of 35 passes for 281 yards den two touchdowns as de Jets cruise to a 24–3 victory.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=September 19, 2024 |title='Thursday Night Football' highlights: Aaron Rodgers, Jets dominate Patriots |url=https://www.nbcnews.com/news/sports/live-blog/patriots-vs-jets-live-updates-jacoby-brissett-takes-aaron-rodgers-new-rcna171577 |access-date=September 22, 2024 |website=NBC News}}</ref> Insyd Week 5 insyd London, Rodgers cam be de ninth quarterback insyd NFL history to reach 60,000 passing yards buh he tie ein career-high plus three interceptions, wey dey include a game-sealing pick plus under a minute left as de Jets loose 23–17 to de Vikings.<ref>{{Cite web |last=Cimini |first=Rich |date=October 6, 2024 |title=Aaron Rodgers 9th QB to pass for 60K yards, but 3 INTs doom Jets |url=https://www.espn.com/nfl/story/_/id/41642251/jets-aaron-rodgers-becomes-9th-qb-pass-60000-yards |access-date=October 6, 2024 |website=ESPN.com}}</ref> Jets head coach [[Robert Saleh]] unexpectedly be fired after de London loss, plus sam analysts dey perceive say na he no get along plus Rodgers.<ref>{{Cite web |last1=Li |first1=David K. |last2=Abdelkader |first2=Rima |date=October 8, 2024 |title=New York Jets fire coach Robert Saleh after 2–3 start and apparent tension with Aaron Rodgers |url=https://www.nbcnews.com/sports/nfl/jets-robert-saleh-fired-rcna174473 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref> Wen dem biz am about am on ''The Pat McAfee Show'', de quarterback firmly deny accusations say he get a role insyd Saleh ein termination.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=October 9, 2024 |title=Aaron Rodgers on accusations he wanted Jets coach Robert Saleh fired: 'Patently false' |url=https://www.nbcnews.com/sports/nfl/aaron-rodgers-robert-saleh-fired-rcna174701 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref>
Insyd Week 6, de Jets dema first game after Saleh ein termination, Rodgers throw for 294 yards den two touchdowns, wey dey include a 52-yard Hail Mary pass to [[Allen Lazard]] to close out de first half, ein fourth career such pass completion.<ref>{{Cite news|last=Waszak Jr.|first=Dennis|date=October 14, 2024|title=Jets' Aaron Rodgers throws a 52-yard Hail Mary to Allen Lazard to end the first half vs. Bills|url=https://apnews.com/article/jets-rodgers-hail-mary-lazard-49f7dbe5569749c60e9878cc7ea5d606|access-date=October 20, 2024|work=AP News}}</ref> However, anoda interception on de Jets dema final drive doomed dem as dem loose 23–20 to de Buffalo Bills.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=After 'weird' week, Rodgers and Jets can't overcome mistakes and missed chances in loss to Bills|url=https://apnews.com/article/jets-bills-rodgers-ulbrich-0a14afca36a55c2cbb0f9aa35c3a7855|access-date=October 15, 2024|work=AP News|date=October 14, 2024}}</ref> Following de loss, se Jets trade for [[Davante Adams]], plus whom Rodgers previously combine for over 600 receptions den 68 touchdowns during dema eight seasons togeda insyd Green Bay.<ref>{{Cite news|last1=Cimini|first1=Rich|last2=Fowler|first2=Jeremy|last3=Walder|first3=Seth|last4=Reid|first4=Jordan|last5=Gutierrez|first5=Paul|last6=Karabell|first6=Eric|date=October 15, 2024|title=How Davante Adams affects the Jets, Aaron Rodgers' playoff hopes|url=https://www.espn.com/nfl/story/_/id/41809450/new-york-jets-future-davante-adams-trade-las-vegas-raiders|access-date=October 15, 2024|work=ESPN}}</ref> However, de Jets continue to struggle, as Rodgers throw two interceptions wey he lead de offense to zero points insyd de second half of dema Week 7 matchup against de Steelers, losing dema fourth consecutive game.<ref>{{cite news|last=Cimini|first=Rich|title=Aaron Rodgers, Davante Adams reunion fails to spark Jets|url=https://www.espn.com/nfl/story/_/id/41917779/aaron-rodgers-davante-adams-reunion-fails-spark-jets-drop-4th-straight-vs-steelers|access-date=October 21, 2024|work=ESPN|date=October 21, 2024}}</ref> After a loss to de Patriots, Rodgers help de Jets snap dema five-game losing streak insyd Week 9 against de Houston Texans, throwing for 179 yards den three touchdowns insyd de second half after he be shutout insyd de first half as de Jets win 21–13.<ref>{{cite news|last=Fried|first=Justin|title=Aaron Rodgers saves NY Jets' season with vintage performance amidst fan revolt|url=https://thejetpress.com/aaron-rodgers-saves-ny-jets-season-vintage-performance-fan-revolt-01jbjvhkx6k7|access-date=October 31, 2024|work=The Jet Press|date=October 31, 2024}}</ref>
Insyd Week 11 against de Colts, Rodgers throw two touchdowns wey he lead de Jets to a season-high insyd points, buh na dem fall short insyd a 28–27 loss, dropping to 3–7.<ref>{{Cite web |last=Miller |first=Colin |date=November 19, 2024 |title=Jets' Aaron Rodgers Not a Fan of Reporter's 'Buzzword' After Another Loss |url=https://athlonsports.com/nfl/new-york-jets-aaron-rodgers-familiar-response-loss-indianapolis-colts-recap-shock-buzz-word |access-date=November 26, 2024 |website=Athlon Sports |language=en}}</ref> During dema bye week, na dem reveal say na Rodgers dey play thru hamstring, knee, den ankle injuries buh na he refuse to get scans done in fear of how severe dem go be.<ref>{{Cite web |last=McCarriston |first=Shanna |date=November 24, 2024 |title=Jets' Aaron Rodgers played through multiple injuries this season, resisted getting scans, per report |url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-played-through-multiple-injuries-this-season-resisted-getting-scans-per-report/ |access-date=November 26, 2024 |website=CBSSports.com |language=en}}</ref> Despite dis, he remain de starter following de bye week.<ref>{{cite news|last=Cimini|first=Rich|title=Jeff Ulbrich says Aaron Rodgers to remain Jets' starting QB|url=https://www.espn.com/nfl/story/_/id/42738131/jeff-ulbrich-says-aaron-rodgers-remain-jets-starting-qb|access-date=December 9, 2024|work=ESPN|date=December 2, 2024}}</ref> Entering Week 14, Rodgers hold an NFL-record 34-game drought widout a 300-yard passing performance, wich he break on December 8 against de Dolphins.<ref>{{cite news|last=Benjamin|first=Cody|title=Jets' Aaron Rodgers halts historic drought of 300-yard passing games in Week 14 loss to Dolphins|url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-halts-historic-drought-of-300-yard-passing-games-in-week-14-loss-to-dolphins/|access-date=December 9, 2024|work=CBS Sports|date=December 8, 2024}}</ref> Despite recording ein first 300-yard game insyd three years, de Jets fall 32–26 insyd overtime, eliminating dem from playoff contention.<ref>{{cite news|last=Cimini|first=Rich|title=Jets collapse again, extend postseason drought to 14 seasons|url=https://www.espn.com/nfl/story/_/id/42862200/jets-collapse-again-extend-postseason-drought-14-seasons|access-date=December 9, 2024|work=ESPN|date=December 8, 2024}}</ref> On January 5, 2025, Rodgers plete ein 500th touchdown pass to [[Tyler Conklin]] at MetLife Stadium against de Dolphins, becoming de fifth quarterback insyd NFL history plus 500 touchdown passes.<ref>{{cite news|last=Cimini|first=Rich|title=Jets QB Aaron Rodgers joins prestigious 500 touchdown club|url=https://www.espn.com/nfl/story/_/id/43300286/jets-qb-aaron-rodgers-joins-prestigious-500-touchdown-club|access-date=January 5, 2025|work=ESPN|date=January 5, 2025}}</ref> He fini de final game of de season plus 274 yards, a season-high four touchdowns, den an interception as de Jets win 32–20, finishing plus a record of 5–12.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=Rodgers throws a season-high 4 touchdown passes in possible final game as Jets top Dolphins 32–20|url=https://apnews.com/article/dolphins-jets-score-rodgers-8013b4de0ea591a84d721f5c4dd17111|access-date=January 5, 2025|work=Associated Press|date=January 5, 2025}}</ref> He fini de 2024 season plus 3,897 yards, 28 touchdowns, den 11 interceptions.<ref>{{Cite web |title=Aaron Rodgers 2024 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2024/ |access-date=January 15, 2025 |website=[[Pro Football Reference]] |language=en}}</ref>
On February 13, 2025, na de Jets announce dema intention to part ways plus Rodgers after two seasons.<ref>{{Cite web |last=Allen |first=Eric |date=February 13, 2025 |title=Jets to move on from Aaron Rodgers |url=https://www.newyorkjets.com/news/jets-moving-on-from-aaron-rodgers |access-date=February 13, 2025 |website=NewYorkJets.com |language=en-US}}</ref> Na Rodgers be released as a post-June 1 designation, allowing de Jets to split ein salary cap charges ($49 million) over two years. De Jets therefore keep am on de roster til March 12, de start of de 2025 NFL year, wen na dem officially released am.<ref>{{cite web |last=Cimini |first=Rich |date=February 13, 2025 |title=Jets announce split with Aaron Rodgers, wish him success |url=https://www.espn.com/nfl/story/_/id/43826969/jets-announce-split-aaron-rodgers-wish-success |accessdate=February 25, 2025}}</ref>
=== Pittsburgh Steelers ===
[[File:McCormickRodgersFrazier.jpg|thumb|Rodgers (middle) at Steelers training camp insyd 2025]]
==== 2025 ====
On June 6, 2025, de Pittsburgh Steelers agree to terms plus Rodgers on a one-year deal.<ref>{{Cite web |last=Varley |first=Teresa |date=June 5, 2025 |title=Steelers agree to terms with Rodgers |url=https://www.steelers.com/news/steelers-agree-to-terms-with-rodgers |access-date=June 6, 2025 |website=Steelers.com |language=en-US}}</ref> De following day, he officially sign ein one-year, $13.65 million contract, wich dey include $10 million guaranteed wey fi be worth up to $19.5 million plus incentives.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Sources: QB Rodgers with Steelers, signs one-year, $13.65M deal|url=https://www.espn.com/nfl/story/_/id/45470407/sources-qb-rodgers-steelers-signs-one-year-1365m-deal|access-date=June 7, 2025|work=ESPN|date=June 7, 2025}}</ref> De team subsequently announce say Rodgers go continue to wear ein number 8 from Cal den de Jets, since ein number 12 plus de Packers unofficially be retired for [[Terry Bradshaw]]; neither de Steelers nor Bradshaw sign off on allowing Rodgers to wear number 12.<ref>{{cite web |last1=Goldstein |first1=Jeremy |date=June 7, 2025 |title=Aaron Rodgers suffers early Steelers setback thanks to Terry Bradshaw |url=https://www.themirror.com/sport/american-football/aaron-rodgers-terry-bradshaw-steelers-1194927 |website=[[Daily Mirror]]}}</ref>
Na Rodgers ein months-long courtship den subsequent signing be met plus mixed to negative reaction among Steeler fans as well as ex-Steelers Bradshaw den [[Ryan Clark (American football)|Ryan Clark]] secof ein polarizing attitude,<ref>{{cite web |last=Sayer |first=Ricky |date=June 5, 2025 |title=Aaron Rodgers signing brings mixed reactions from Steelers fans |url=https://www.cbsnews.com/pittsburgh/news/steelers-fans-aaron-rodgers-signing-reaction/ |access-date=June 10, 2025 |work=CBS News}}</ref><ref>{{cite web |last=Gamba-Ellis |first=Thomas |date=June 6, 2025 |title=Aaron Rodgers signing is 'worst-case scenario' for Steelers: Ryan Clark |url=https://nypost.com/2025/06/06/sports/aaron-rodgers-signing-is-worst-case-scenario-for-the-steelers-ryan-clark/ |access-date=June 10, 2025 |work=New York Post}}</ref><ref>{{cite web |last=Baca |first=Michael |date=May 28, 2025 |title=Steelers legend Terry Bradshaw calls Pittsburgh's interest in QB Aaron Rodgers 'a joke' |url=https://www.nfl.com/news/steelers-legend-terry-bradshaw-calls-pittsburgh-interest-aaron-rodgers-a-joke |access-date=September 25, 2025 |website=NFL.com}}</ref> wey sam fans feeling like he no fit Western Pennsylvania dema traditional blue collar base.<ref>{{cite web |last1=Cioppa |first1=Jordan |date=June 5, 2025 |title=Steelers fans react to Aaron Rodgers coming to Pittsburgh |url=https://www.wtae.com/article/steelers-fans-reaction-aaron-rodgers-pittsburgh-quarterback/64985539 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> Sam speculate say Rodgers fi be swayed to sign plus de Steelers by ein friendship plus former Indianapolis Colts punter den Pittsburgh-area native [[Pat McAfee]].<ref>{{cite web |last1=Ciampi |first1=Raquel |date=April 17, 2025 |title=Aaron Rodgers talks sneaking into Pittsburgh for first visit with Steelers on McAfee Show |url=https://www.wtae.com/article/steelers-aaron-rodgers-mcafee-show/64514048 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> On June 23, 2025, Rodgers flow McAfee on ein show say he go likely retire after de 2025 season.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Steelers' Aaron Rodgers 'pretty sure' this will be final season|url=https://www.espn.com/nfl/story/_/id/45575766/steelers-aaron-rodgers-pretty-sure-final-season|access-date=June 29, 2025|work=ESPN|date=June 29, 2025}}</ref>
On September 7, Rodgers make ein Steelers debut against ein former team, de New York Jets. During ein first outing plus Pittsburgh, he plete 22 of 30 pass attempts for 244 yards den four touchdowns while committing no turnovers. De game end plus a 34–32 Steelers victory.<ref>{{cite web |last=Maaddi |first=Rob |date=September 9, 2025 |title=Aaron Rodgers showed he has plenty left to help the Steelers |url=https://sports.yahoo.com/article/aaron-rodgers-showed-plenty-left-191014645.html |access-date=September 25, 2025 |website=Yahoo! Sports}}</ref> Later dat month, Rodgers surpasse [[Brett Favre]], ein former Packers teammate, insyd career touchdown passes wen he throw a scoring pass to [[D.K. Metcalf]] insyd a win over de New England Patriots. Dis move Rodgers into fourth place for most career touchdown passes (509), only behind [[Peyton Manning]], [[Drew Brees]] den [[Tom Brady]].<ref name="u989">{{cite web |last=Gordon |first=Grant |date=September 21, 2025 |title=Aaron Rodgers moves past former teammate Brett Favre with 509th career touchdown pass |url=https://www.nfl.com/news/aaron-rodgers-moves-past-brett-favre-509-career-touchdown-pass |access-date=October 14, 2025 |website=NFL.com}}</ref>
During de second quarter of de Steelers dema Week 11 victory over de Cincinnati Bengals, Rodgers suffer a small fracture insyd ein left wrist.<ref>{{cite news|last=DeArdo|first=Bryan|url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-steelers-qb-hand-injury/|title=Aaron Rodgers has small fracture in wrist, Steelers QB reportedly pushing to play this week|website=[[CBSSports.com]]|publisher=[[CBS Sports]]|date=November 17, 2025|access-date=November 30, 2025}}</ref> De injury prevent am from playing de following game against de Bears, wich [[Mason Rudolph (American football)|Mason Rudolph]] start insyd ein place.<ref>{{cite news|last=Cohen|first=Jay|url=https://www.kare11.com/article/syndication/associatedpress/steelers-qb-aaron-rodgers-misses-game-against-bears-because-of-a-broken-left-wrist/616-e94370ae-9cda-4db9-891f-56092ba44dd1|title=With Aaron Rodgers sidelined, Mason Rudolph and the Steelers fall short in Chicago|agency=[[Associated Press|AP]]|publisher=[[KARE (TV)]]|date=November 23, 2025|access-date=November 30, 2025}}</ref> Rodgers return for Week 13 insyd Buffalo.<ref>{{cite news|last=Guise|first=Michael|url=https://www.cbsnews.com/pittsburgh/news/is-aaron-rodgers-playing-steelers-bills-nfl-news/|title=Is Aaron Rodgers playing against the Bills? Steelers give update on starting quarterback.|publisher=[[CBS News]]|date=November 28, 2025|access-date=November 30, 2025}}</ref>
Rodgers lead de Steelers to an AFC North title den a playoff berth following a Week 18 win over de Baltimore Ravens.<ref>{{Cite web |last=Pryor |first=Brooke |date=January 5, 2026 |title=Steelers take AFC North as Ravens FG sails wide |url=https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-url=https://web.archive.org/web/20260105045214/https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-date=January 5, 2026 |access-date=January 5, 2026 |website=ESPN.com |language=en}}</ref> He fini de 2025 season throwing for 3,322 yards, 24 touchdowns, den seven interceptions, den rushing for a touchdown.<ref>{{Cite web |title=Aaron Rodgers 2025 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2025/ |access-date=January 8, 2026 |website=Pro-Football-Reference.com |language=en}}</ref>
Insyd de Steelers dema playoff loss to de Houston Texans, Rodgers play poorly, completing 17 passes out of 33 attempts for 146 yards, getting sacked 4 times for 36 yards, den throwing a pick-six.<ref>{{cite news|last1=Heyen|first1=Billy|title=Texans defense made Steelers' Aaron Rodgers play the worst playoff game by a QB in a dozen years|url=https://sports.yahoo.com/articles/texans-defense-made-steelers-aaron-131529479.html?guccounter=1|access-date=January 13, 2026|work=Yahoo Sports|date=January 13, 2026}}</ref> Rodgers sanso fumble on one of de sacks, wich dem return for a Texans touchdown.<ref>{{cite news|last1=Brinkerhoff|first1=Nick|title=Aaron Rodgers crushed on strip-sack, leads to critical Texans score|url=https://www.usatoday.com/story/sports/nfl/playoffs/2026/01/12/aaron-rodgers-strip-sack-crushed-texans-packers/88153423007/|access-date=January 13, 2026|work=USA Today|date=January 12, 2026}}</ref>
==== 2026 ====
[[File:RodgersandMcCarthy.jpg|thumb|Rodgers plus [[Mike McCarthy]] during training camp insyd 2026]]
On May 16, 2026, Rodgers return to de Steelers for ein 22nd season, signing a one-year deal worth up to $25 million.<ref>{{Cite web |last=Pryor |first=Brooke |date=May 16, 2026 |title=Sources: Aaron Rodgers to sign 1-year deal with Steelers |url=https://www.espn.com/nfl/story/_/id/48791130/aaron-rodgers-sign-1-year-deal-steelers |access-date=May 16, 2026 |website=ESPN}}</ref> De signing reunite am plus head coach Mike McCarthy.<ref>{{Cite web |last=Middlehurst-Schwartz |first=Michael |date=May 16, 2026 |title=Aaron Rodgers to re-sign with Steelers, reunite with coach Mike McCarthy |url=https://www.usatoday.com/story/sports/nfl/steelers/2026/05/16/aaron-rodgers-contract-pittsburgh-steelers-mike-mccarthy/88698339007/ |access-date=May 16, 2026 |website=USA Today}}</ref> Rodgers later announce say de 2026 season go be ein final season insyd de NFL.<ref>{{Cite web |last=Ulrich |first=Logan |date=2026-05-20 |title=Aaron Rodgers Says 2026 Will Be His Final Season |url=https://nfltraderumors.co/aaron-rodgers-says-2026-will-be-his-final-season/ |access-date=2026-05-20 |website=NFLTradeRumors.co |language=en-US}}</ref>
== Touchdown celebration ==
Since becoming an NFL starter insyd 2008, Rodgers cam be known for ein unique touchdown celebration, wich he den ein teammates dub de "Championship Belt." After a scoring play, Rodgers dey celebrate by making a motion as if he dey put an invisible championship belt on around ein waist.<ref>{{Cite web |last=Sayler |first=Ryan |date=January 10, 2011 |title=The Evolution of Aaron Rodgers' Weird "Belt Dance" |url=http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120416003749/http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |archive-date=April 16, 2012 |access-date=May 10, 2012 |website=Real Fantasy}}</ref><ref>{{Cite web |date=January 16, 2011 |title=Aaron Rodgers | Championship Belt Celebration |url=http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |url-status=live |archive-url=https://web.archive.org/web/20120322064628/http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |archive-date=March 22, 2012 |access-date=May 10, 2012 |website=SportsGrid}}</ref> Teammate Greg Jennings say of de celebration: "''It's just something fun that he does. We get excited when we see it cause we know that he's made a play or we've made a play as offense."''<ref name="youtube1">{{Cite web |date=January 25, 2011 |title=Aaron Rodgers Championship Belt Special on ESPN |url=https://www.youtube.com/watch?v=mcwa2EvQ61Y |url-status=live |archive-url=https://web.archive.org/web/20111225110056/http://www.youtube.com/watch?v=mcwa2EvQ61Y |archive-date=December 25, 2011 |access-date=May 10, 2012 |publisher=ESPN |via=YouTube}}</ref> De gesture draw de praise of WWE wrestler Triple H wey e cam be common for Green Bay fans to mimic during games.<ref>{{Cite web |last=Anderson |first=Kyle |date=February 7, 2011 |title=Aaron Rodgers Wins Super Bowl MVP, Celebrates With Championship Belt |url=http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |url-status=dead |archive-url=https://web.archive.org/web/20191206042749/http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |archive-date=December 6, 2019 |access-date=December 6, 2019 |publisher=MTV}}</ref> Na he sanso celebrate by doing de shoryuken, a jumping uppercut move from de ''Street Fighter'' series.<ref>{{Cite web |last=Kunnath |first=Avinash |date=February 17, 2011 |title=Aaron Rodgers Best Touchdown Celebration: Championship Belt, Super Mario Jump, Or Shoryuken? |url=https://bayarea.sbnation.com/california-golden-bears/2011/2/17/1998750/aaron-rodgers-best-touchdown-celebration-championship-belt-super-mario-jump-shoryuken |access-date=January 19, 2023 |website=SB Nation Bay Area |language=en}}</ref>
== Alternative medicine advocacy ==
Rodgers be vocal about ein use of alternative medicine,<ref>{{Cite web |last=Mole |first=Beth |date=February 23, 2022 |title=Aaron Rodgers' go-to cleanse could involve oily enemas, bloodletting, vomiting |url=https://arstechnica.com/science/2022/02/everything-you-didnt-need-to-know-about-aaron-rodgers-oily-enema-cleanse/ |access-date=August 8, 2022 |website=[[Ars Technica]] |language=en}}</ref><ref>{{Cite web |last=McLaughlin |first=Kelly |date=November 3, 2021 |title=Aaron Rodgers reportedly petitioned the NFL to have an alternative treatment count as being vaccinated against COVID-19 |url=https://sports.yahoo.com/aaron-rodgers-reportedly-petitioned-nfl-163711629.html |access-date=August 8, 2022 |website=[[Yahoo! Sports]] |language=en}}</ref> wey he be a proponent of de legalization of psychedelic drugs.<ref>{{cite magazine|last=Chavkin|first=Daniel|date=June 23, 2023|title=Aaron Rodgers Touts Legalization of Psychedelics at Conference|url=https://www.si.com/extra-mustard/2023/06/23/new-york-jets-aaron-rodgers-touts-psychedelics-legalization|access-date=June 23, 2023|magazine=[[Sports Illustrated]]|language=en}}</ref> He reveal insyd 2022 say na he previously make offseason trips to Peru, wer he consume ayahuasca.<ref>{{Cite web |last=Demovsky |first=Rob |date=August 8, 2022 |title=NFL says Green Bay Packers QB Aaron Rodgers' use of ayahuasca didn't violate drug policy |url=https://www.espn.com/nfl/story/_/id/34371733/nfl-says-green-bay-packers-qb-aaron-rodgers-use-ayahuasca-violate-drug-policy |access-date=August 8, 2022 |website=[[ESPN.com]] |language=en |agency=[[Associated Press]]}}</ref>
=== Views on COVID-19 ===
Rodgers be one of de most prominent American athletes to choose he no go get vaccinated against de [[COVID-19]] virus,<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref> wey na he be critical of de NFL dema health den safety protocols during de COVID-19 pandemic.<ref>{{Cite web |last=Wood |first=Ryan |date=November 5, 2021 |title=Packers quarterback Aaron Rodgers blasts 'woke mob' over COVID-19 news on Pat McAfee show, rips NFL's 'draconian' protocols |url=https://www.jsonline.com/story/sports/nfl/packers/2021/11/05/packers-quarterback-aaron-rodgers-talks-covid-19-sounds-off-nfl-protocols/6280790001/ |access-date=January 5, 2024 |website=[[Milwaukee Journal Sentinel]] |language=en}}</ref> Ein stances on de COVID-19 vaccine be criticized by scientists, health officials, den sam former players den commentators, secof concerns say na Rodgers dey spread vaccine misinformation wey he dey potentially risk de health of ein teammates.<ref>{{Cite web |last1=Belson |first1=Ken |last2=Anthes |first2=Emily |date=November 8, 2021 |title=Scientists Fight a New Source of Vaccine Misinformation: Aaron Rodgers |url=https://www.nytimes.com/2021/11/08/sports/football/aaron-rodgers-vaccine.html |access-date=January 5, 2024 |work=[[The New York Times]] |language=en}}</ref>
During de NFL season, Rodgers frequently appear on ''The Pat McAfee Show''.<ref>{{Cite magazine|last=Hladik|first=Matt|date=January 26, 2021|title=Aaron Rodgers Explains Why He Appears on the Pat McAfee Show|url=https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|url-status=live|archive-url=https://web.archive.org/web/20210924043905/https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|archive-date=September 24, 2021|access-date=December 1, 2021|magazine=The Spun by [[Sports Illustrated]]}}</ref> One such interview insyd 2021 make headlines after Rodgers make several false den misleading statements about COVID-19,<ref name="Rosenberg">{{Cite magazine|last=Rosenberg|first=Michael|date=November 5, 2021|title=The Problem Is Aaron Rodgers Thinks He Has All the Answers|url=https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|url-status=live|archive-url=https://web.archive.org/web/20211108000052/https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|archive-date=November 8, 2021|access-date=November 8, 2021|magazine=[[Sports Illustrated]]|language=en-us}}</ref><ref>{{Cite news|last=Kornfield|first=Meryl|date=November 5, 2021|title=Aaron Rodgers said he did the research on covid vaccines. Here's how he was wrong, according to experts|url=https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|url-status=live|archive-url=https://web.archive.org/web/20211109160437/https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|archive-date=November 9, 2021|access-date=November 15, 2021|newspaper=[[The Washington Post]]}}</ref> wey dey imply say na unvaccinated people no be de group most affected by de pandemic den dat [[ivermectin]] be beneficial for people plus COVID-19.<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |last=Schad |first=Tom |date=November 5, 2021 |title=Fact check: 6 of Aaron Rodgers' false and misleading claims about COVID-19 vaccine |url=https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |url-status=live |archive-url=https://web.archive.org/web/20211108002751/https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=[[USA Today]] |language=en-US}}</ref><ref>{{Cite web |last=Sutelan |first=Edward |date=November 14, 2021 |title=Fact-checking Aaron Rodgers' bizarre COVID beliefs and 'woke mob' claim made on Pat McAfee Show |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |url-status=live |archive-url=https://web.archive.org/web/20211108035450/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=Sporting News |language=en}}</ref><ref>{{Cite web |last=Reinwald |first=Caroline |date=November 6, 2021 |title=Aaron Rodgers vaccine fact check: Doctor responds to quarterback's concerns |url=https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |url-status=live |archive-url=https://web.archive.org/web/20211108035459/https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |archive-date=November 8, 2021 |access-date=November 8, 2021 |publisher=[[WISN-TV]] |language=en}}</ref> Dese den similar claims lead sam reporters to describe Rodgers as a conspiracy theorist.<ref name="Rosenberg" /><ref>{{Cite web |last=Jones |first=Ja'han |date=November 9, 2021 |title=Aaron Rodgers should keep Martin Luther King Jr. out of his foolish Covid claims |url=https://www.msnbc.com/the-reidout/reidout-blog/aaron-rodgers-martin-luther-king-jr-covid-vaccine-rcna4872 |access-date=November 13, 2021 |publisher=MSNBC |language=en}}</ref>
== Political den social commentary ==
Rodgers voice support give [[Robert F. Kennedy Jr.]] den ein presidential campaign of 2024.<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref> Kennedy reportedly include Rodgers on ein "short list" of possible vice presidential running mates, along plus odas, wey dey include [[Jesse Ventura]] den [[Nicole Shanahan]].<ref name=":0">{{Cite news|last=O’Brien|first=Rebecca Davis|date=March 12, 2024|title=Aaron Rodgers and Jesse Ventura Top R.F.K. Jr.'s List for Running Mate|url=https://www.nytimes.com/2024/03/12/us/politics/rfk-jr-aaron-rodgers-jesse-ventura.html|access-date=March 13, 2024|work=The New York Times|language=en-US|issn=0362-4331}}</ref><ref name="OBrienMar172024">{{Cite news|last=O'Brien|first=Rebecca Davis|date=March 17, 2024|title=Nicole Shanahan Emerges as a Top Candidate to Be R.F.K. Jr.'s Running Mate|url=https://www.nytimes.com/2024/03/17/us/politics/nicole-shanahan-rfk-jr-running-mate.html|access-date=May 30, 2024|work=[[The New York Times]]}}</ref>
On [[Adam Breneman]] ein podcast insyd 2022, former Packers backup quarterback [[DeShone Kizer]] talk say Rodgers express interest insyd 9/11 conspiracy theories at one of de first meetings between de two quarterbacks. Kizer describe dema discussion of conspiracy theories as "a real thought experiment".<ref name="nypost-2022-11-29">{{cite news|last1=Hendricks|first1=Jaclyn|date=November 29, 2022|title=DeShone Kizer: Aaron Rodgers pressed me on 9/11 conspiracies|url=https://nypost.com/2022/11/29/deshone-kizer-aaron-rodgers-pressed-me-on-9-11-conspiracies/|access-date=January 8, 2023|work=[[The New York Post]]}}</ref><ref name="si-2022-11-29">{{cite magazine|last1=Salvador|first1=Joseph|date=November 29, 2022|title=Former Packers QB Says Aaron Rodgers Once Asked Him Whether He Believes in 9/11|url=https://www.si.com/nfl/2022/11/29/packers-deshone-kizer-aaron-rodgers-once-asked-him-if-he-believes-in-9-11-conspiracy-theories|access-date=January 8, 2022|magazine=[[Sports Illustrated]]|language=en-us}}</ref> Rodgers sanso promote de Tartarian architecture conspiracy theory.<ref name="tart">{{Cite web |last=Silverman |first=Robert |date=March 8, 2024 |title=Aaron Rodgers Dabbles in the 'QAnon of Architecture' |url=https://www.yahoo.com/entertainment/aaron-rodgers-dabbles-qanon-architecture-234934271.html |access-date=January 15, 2025 |website=Yahoo! Entertainment}}</ref>
Insyd a January 2024 appearance on ''The Pat McAfee Show'', Rodgers, widout evidence, imply say na comedian [[Jimmy Kimmel]] be an acquaintance of disgraced financier den sex offender [[Jeffrey Epstein]], den dat Kimmel ein name go possibly appear in soon to be released court documents listing Epstein ein associates.<ref>{{Cite web |last=Simonetti |first=Isabella |date=January 9, 2024 |title=ESPN's Pat McAfee Said He Doesn't 'Take Back Anything' After Skewering Colleague |url=https://www.wsj.com/business/media/pat-mcafee-show-espn-aaron-rodgers-ede1d63b |access-date=January 9, 2024 |website=WSJ |language=en-US}}</ref> Kimmel deny de allegations den threatened to sue Rodgers for defamation if he repeat de claim.<ref>{{Cite web |last=Kimmel |first=Jimmy |author-link=Jimmy Kimmel |date=January 2, 2024 |title=X Post |url=https://twitter.com/jimmykimmel/status/1742324477323833546 |access-date=January 9, 2024 |website=X}}</ref> Insyd a follow-up appearance on McAfee ein show de following week, Rodgers state say: "''I'm glad that Jimmy is not on the list. I really am. I don't think he's the P-word [pedophile]."''<ref>{{Cite web |last=France |first=Lisa |date=January 9, 2024 |title=Aaron Rodgers blames media in response to Jimmy Kimmel's comments about him |url=https://www.cnn.com/2024/01/09/entertainment/jimmy-kimmel-aaron-rodgers-monologue/index.html |access-date=January 9, 2024 |website=CNN |language=en}}</ref>
During a February 2024 appearance on de conspiracy-focused ''Look Into It'' podcast wey [[Eddie Bravo]] host, Rodgers espouse numerous conspiracy theories on medicine, immigration, den John F. Kennedy.<ref>{{Cite web |last=Keeley |first=Sean |date=March 14, 2024 |title=Here's all the dumb shit Aaron Rodgers recently said on a conspiracy theory podcast |url=https://awfulannouncing.com/nfl/aaron-rodgers-conspiracy-theory-podcast-tartaria-immigrants-trump-biden.html |access-date=April 17, 2024 |website=Awful Announcing |language=en}}</ref> Na ein claims include say na dem create [[HIV/AIDS|AIDS]] den COVID by de government for de sake of pharmaceutical industry profits (sanso spy discredited HIV/AIDS origins theories den Operation Denver).<ref>{{Cite web |last=Buzinski |first=Jim |date=April 17, 2024 |title=Aaron Rodgers says AIDS was created by the U.S. government in the 1980s |url=https://www.outsports.com/2024/4/17/24091797/aaron-rodgers-says-aids-was-created-by-the-u-s-government-in-the-1980s/ |access-date=April 17, 2024 |website=outsports.com |language=en}}</ref>
Insyd 2024, CNN reporter [[Pamela Brown (journalist)|Pamela Brown]] report say na Rodgers insyd 2013 share false conspiracy theories about de Sandy Hook massacre, wey dey claim say na de attack be an "inside job" perpetrated by de government. Na CNN simultaneously report an allegation by an anonymous source say na Rodgers for several years prior say "''Sandy Hook never happened....All those children never existed. They were all actors.''"<ref name="SandyHook1">{{Cite web |last1=Brown |first1=Pamela |last2=Tapper |first2=Jake |date=March 14, 2024 |title=RFK Jr.'s VP prospect Aaron Rodgers has shared false Sandy Hook conspiracy theories in private conversations |url=https://www.cnn.com/2024/03/13/politics/aaron-rodgers-sandy-hook-conspiracy-theories/index.html |access-date=March 17, 2024 |website=CNN.com |language=en}}</ref> In response, Rodgers say, "''I am not and have never been of the opinion that the events did not take place" but did not say whether he had ever believed the Sandy Hook massacre was an "inside job.''"<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref>
== Personal life ==
=== Family den relationships ===
Rodgers get two bros; de younger, [[Jordan Rodgers|Jordan]], play quarterback at Vanderbilt University wey he get a brief NFL career plus de Jacksonville Jaguars den Tampa Bay Buccaneers.<ref>{{Cite web |title=Jordan Rodgers Vanderbilt Bio |url=http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-url=https://web.archive.org/web/20111126203900/http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-date=November 26, 2011 |access-date=June 19, 2017 |website=VUCommodores.com}}</ref><ref>{{Cite web |last=Imig |first=Paul |date=April 27, 2013 |title=Rodgers' younger brother Jordan signs with Jacksonville |url=http://www.foxsportswisconsin.com/fox-sports-networks/story/Rodgers-brother-Jordan-signs-with-Jackso?blockID=896957 |url-status=live |archive-url=https://web.archive.org/web/20220310191855/https://www.foxsports.com/wisconsin/story/rodgers-younger-brother-jordan-signs-with-jacksonville-042713 |archive-date=March 10, 2022 |access-date=June 19, 2017 |work=Fox Sports}}</ref><ref>{{Cite web |last=Eisenband |first=Jeff |date=October 8, 2018 |title=Jordan Rodgers Remembers His 'Good Little' Football Career |url=http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |url-status=dead |archive-url=https://web.archive.org/web/20190308081753/http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |archive-date=March 8, 2019 |access-date=March 7, 2019 |website=ThePostGame.com}}</ref> Although na dem raise Rodgers den ein bros Christian, insyd an interview insyd 2017 he state say he no longer affiliate einself plus any organized religion.<ref>{{Cite web |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=Aaron Rodgers, unmasked |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |url-status=live |archive-url=https://web.archive.org/web/20211114183324/http://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |archive-date=November 14, 2021 |access-date=March 7, 2019 |website=[[ESPN.com]]}}</ref>
Rodgers be de godfather to Cade Cobb, de second son of ein long-time NFL teammate, [[Randall Cobb (American football)|Randall Cobb]].<ref>{{cite web |last=Demovsky |first=Rob |date=October 28, 2021 |title=The 'beautiful, chaotic mess' that brought Randall Cobb's family back to Green Bay |url=https://www.espn.com/blog/green-bay-packers/post/_/id/51394/the-beautiful-chaotic-mess-that-brought-randall-cobbs-family-back-to-green-bay |accessdate=September 1, 2023 |work=[[ESPN.com]]}}</ref>
Na Rodgers dey insyd a relationship plus actress [[Olivia Munn]] from 2014 to 2017 den plus former professional racing driver [[Danica Patrick]] from 2018 to 2020.<ref name="peoplemag">{{Cite web |last=Mizoguchi |first=Karen |date=April 7, 2017 |title=Olivia Munn and Aaron Rodgers Break Up |url=http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |url-status=live |archive-url=https://web.archive.org/web/20170408081606/http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |archive-date=April 8, 2017 |access-date=April 7, 2017 |website=[[People (magazine)|People]]}}</ref><ref name="AP">{{Cite web |date=January 15, 2018 |title=Danica Patrick finds love away from track with Aaron Rodgers |url=https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |url-status=live |archive-url=https://web.archive.org/web/20180219090141/https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |archive-date=February 19, 2018 |access-date=February 18, 2018 |work=[[Associated Press News]]}}</ref><ref>{{Cite web |date=July 16, 2020 |title=Danica, Rodgers call off two-year relationship |url=https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |url-status=live |archive-url=https://web.archive.org/web/20210203195658/https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |archive-date=February 3, 2021 |access-date=February 7, 2021 |website=[[ESPN.com]]}}</ref> He start dey date actress [[Shailene Woodley]] insyd de second half of 2020.<ref>{{Cite web |last=Weinberg |first=Lindsay |date=February 2, 2021 |title=Inside Shailene Woodley and Aaron Rodgers' "Private and Low Key" Romance |url=https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |url-status=live |archive-url=https://web.archive.org/web/20210207071957/https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |archive-date=February 7, 2021 |access-date=February 7, 2021 |website=[[E!]]}}</ref> Insyd an appearance on ''The Tonight Show Starring Jimmy Fallon'' insyd 2021, Woodley confirm say na she be engaged to Rodgers.<ref>{{Cite web |last=Kubota |first=Samantha |date=February 22, 2021 |title=Shailene Woodley engaged to Aaron Rodgers, says she's 'still learning' about football |url=https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |url-status=live |archive-url=https://web.archive.org/web/20210223055422/https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |archive-date=February 23, 2021 |access-date=February 23, 2021 |website=[[Today.com]]}}</ref> On February 16, 2022, na Rodgers den Woodley call off dema engagement.<ref>{{Cite web |last=Wang |first=Jessica |date=February 16, 2022 |title=Shailene Woodley and Aaron Rodgers split, call off engagement |url=https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |url-status=live |archive-url=https://web.archive.org/web/20220409131033/https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |archive-date=April 9, 2022 |access-date=February 16, 2022 |website=[[Yahoo!]] |language=en-US}}</ref>
Insyd December 2024, na Rodgers state say na he dey date a woman dem name Brittani. Insyd June 2025, Rodgers state say dem marry a few months prior.<ref>{{Cite web |last=Comiter |first=Jordana |date=June 10, 2025 |title=Who Is Aaron Rodgers' Wife, Brittani? All About Her Private Relationship with the NFL Quarterback |url=https://people.com/who-is-brittani-aaron-rodgers-11718036 |access-date=June 22, 2025 |website=People.com |language=en}}</ref><ref>{{cite web |last=Hooks |first=Kalan |date=June 10, 2025 |title=Aaron Rodgers announces marriage at Steelers minicamp |url=https://www.espn.com/nfl/story/_/id/45481936/aaron-rodgers-pittsburgh-steelers-announces-marriage |access-date=June 10, 2025 |website=[[ESPN]]}}</ref>
=== Honorary memberships den business ventures ===
Na dem initiate Rodgers as an honorary member of Tau Kappa Epsilon (TKE) on January 5, 2012, at de Sigma-Xi Chapter at St. Norbert College.<ref>{{Cite web |last=Zegers |first=Dan |date=January 6, 2012 |title=MEET FRATERS AARON RODGERS & GRAHAM HARRELL |url=https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |url-status=live |archive-url=https://web.archive.org/web/20221229085550/https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |archive-date=December 29, 2022 |access-date=December 29, 2022 |publisher=Tau Kappa Epsilon}}</ref>
Insyd April 2018, na dem annouce Rodgers as a limited partner insyd de Milwaukee Bucks ownership group, wey dey make am de first active NFL player plus an ownership stake insyd an NBA franchise.<ref>{{Cite web |last=Demovsky |first=Rob |date=April 20, 2018 |title=Aaron Rodgers buys minority stake in Bucks: 'A dream come true' |url=https://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |url-status=live |archive-url=https://web.archive.org/web/20180422052450/http://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |archive-date=April 22, 2018 |access-date=April 22, 2018 |website=[[ESPN.com]]}}</ref> De team later win de NBA Finals insyd 2021.<ref>{{Cite news|last=Deb|first=Sopan|date=July 21, 2021|title=The Milwaukee Bucks Win the N.B.A. Championship|url=https://www.nytimes.com/2021/07/20/sports/basketball/milwaukee-bucks-nba-finals-championship.html|access-date=February 12, 2026|work=The New York Times|language=en-US|issn=0362-4331}}</ref>
== Media appearances ==
Na Rodgers be a longtime spokesperson for State Farm Insurance wey na he frequently feature insyd dema commercials. Insyd de commercials, Rodgers often dey highlight ein "Championship Belt" touchdown celebration, wich State Farm rename as de "Discount Double Check".<ref>{{Cite web |title=State Farm® State of Imitation (Aaron Rodgers) |url=https://www.youtube.com/watch?v=j9Rv7czl9cU |url-status=live |archive-url=https://web.archive.org/web/20121017234148/http://www.youtube.com/watch?v=j9Rv7czl9cU |archive-date=October 17, 2012 |access-date=May 10, 2012 |publisher=State Farm |via=YouTube}}</ref> Rodgers sanso be featured insyd Pizza Hut advertisements,<ref>{{Cite web |last=Rovell |first=Darren |author-link=Darren Rovell |date=September 4, 2012 |title=Pizza Hut uses Aaron Rodgers in new ads |url=https://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |url-status=live |archive-url=https://web.archive.org/web/20161229100812/http://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=[[ESPN.com]]}}</ref> as well as numerous local Wisconsin-based advertisements.<ref name="milcomm">{{Cite web |last=Kirchen |first=Rich |date=August 20, 2015 |title=Aaron Rodgers' commercial work in Wisconsin appears to be dwindling |url=http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |url-status=live |archive-url=https://web.archive.org/web/20151008232237/http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |archive-date=October 8, 2015 |access-date=December 29, 2016 |website=Milwaukee Business Journal}}</ref>
Insyd May 2015, Rodgers appear as a contestant on ''Celebrity Jeopardy!''; he defeat ''Shark Tank'' investor [[Kevin O'Leary]] den astronaut den future United States Senator [[Mark Kelly]], winning $50,000 for ein charity. Insyd April 2021, Rodgers get a two-week stint as guest host on ''Jeopardy!'' from April 5–16.<ref>{{Cite web |last=Demovsky |first=Rob |date=January 12, 2021 |title=Green Bay Packers QB Aaron Rodgers says he'll be a 'Jeopardy!' guest host |url=https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |url-status=live |archive-url=https://web.archive.org/web/20210116152354/https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |archive-date=January 16, 2021 |access-date=January 16, 2021 |publisher=[[ESPN]]}}</ref><ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers sanso make numerous cameo appearances on television, wey dey include insyd a 2013 episode of ''The Office'', a 2019 episode of ''Game of Thrones'', den a 2015 episode of de sketch comedy television series ''Key & Peele''.<ref>{{Cite web |last=Zaldivar |first=Gabe |date=May 10, 2013 |title=Aaron Rodgers Judges Andy Bernard Breakdown on 'The Office' |url=https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |url-status=live |archive-url=https://web.archive.org/web/20210720173445/https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |archive-date=July 20, 2021 |access-date=July 20, 2021 |website=Bleacher Report}}</ref><ref>{{Cite web |date=May 13, 2019 |title=Video NFL star makes surprise cameo on 'Game of Thrones' |url=https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |url-status=live |archive-url=https://web.archive.org/web/20211018165222/https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |archive-date=October 18, 2021 |access-date=October 18, 2021 |website=ABC News |language=en}}</ref><ref>{{Cite web |last=Dubin |first=Jared |date=January 28, 2015 |title=WATCH: Key & Peele, Aaron Rodgers spoof player introductions |url=https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |url-status=live |archive-url=https://web.archive.org/web/20180831104426/https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |archive-date=August 31, 2018 |access-date=August 30, 2018 |website=CBS Sports}}</ref> He sanso tape a cameo as ''Jeopardy!'' host for an episode of ''The Conners''.<ref>{{Cite web |last=Cwik |first=Chris |date=May 8, 2021 |title=Aaron Rodgers guest starring as 'Jeopardy!' host on 'The Conners,' prompting speculation about future |url=https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |url-status=live |archive-url=https://web.archive.org/web/20210508190417/https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |archive-date=May 8, 2021 |access-date=May 8, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd 2021, Rodgers take part insyd ''The Match IV'', wich be de fourth installment insyd de exhibition match play golf series. Na he be paired plus professional golfer [[Bryson DeChambeau]]. De team go up against [[Phil Mickelson]] den Tom Brady.<ref>{{Cite web |last=Wells |first=Adam |date=May 26, 2021 |title=Mickelson, Tom Brady vs. DeChambeau, Aaron Rodgers Set for Capital One's 'The Match' |url=https://bleacherreport.com/articles/10003839-mickelson-tom-brady-vs-dechambeau-aaron-rodgers-set-for-capital-ones-the-match |access-date=May 26, 2021 |website=BleacherReport |publisher=Turner Broadcasting System, Inc.}}</ref> DeChambeau den Rodgers win de match 3 den 2.<ref>{{Cite web |last=VanHaaren |first=Tom |date=July 6, 2021 |title=Bryson DeChambeau, Aaron Rodgers beat Phil Mickelson, Tom Brady in 'The Match' |url=https://www.espn.co.uk/golf/story/_/id/31773982/bryson-dechambeau-aaron-rodgers-beat-phil-mickelson-tom-brady-match |access-date=May 26, 2022 |website=[[ESPN.com]]}}</ref> Rodgers sanso take part insyd de sixth edition of ''The Match'', wer na he team up plus Brady against fellow quarterbacks [[Josh Allen]] den [[Patrick Mahomes]].<ref>{{Cite web |date=April 18, 2022 |title=Tom Brady and Aaron Rodgers to Play Patrick Mahomes and Josh Allen in 'The Match' on June 1 |url=https://www.si.com/golf/news/tom-brady-aaron-rodgers-to-play-patrick-mahomes-josh-allen-in-the-match-june-1 |access-date=May 26, 2022 |website=Morning Read |language=en}}</ref> Rodgers den Brady defeat Mahomes den Allen 1 up.<ref>{{Cite web |last=Hamel |first=Riley |date=June 1, 2022 |title=Aaron Rodgers buries a birdie at the last, teams with Tom Brady to take down Patrick Mahomes, Josh Allen in Capital One's: The Match VI |url=https://golfweek.usatoday.com/lists/tracker-shot-to-shot-updates-of-the-match-vi-at-wynn-las-vegas/ |access-date=June 28, 2022 |website=Golfweek |language=en-US}}</ref>
== Humanitarian den charitable efforts ==
Rodgers be de founder, den de co-creator, along plus David Gruber, of itsAaron,<ref>{{Cite web |last=Littman |first=Chris |date=December 4, 2014 |title=Aaron Rodgers' surprise visit makes school dean scream with joy |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |url-status=live |archive-url=https://web.archive.org/web/20191017184232/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |archive-date=October 17, 2019 |access-date=October 17, 2019 |website=Sporting News}}</ref> a charity plus a mission of "creating awareness for organizations den people wey dey change de world".<ref name="Rodgers Charity">{{Cite web |title=It's Aaron & Gruber Law |url=https://www.gruber-law.com/itsaaron/ |url-status=live |archive-url=https://web.archive.org/web/20250523173120/https://www.gruber-law.com/itsaaron/ |archive-date=May 23, 2025 |access-date=July 1, 2025 |website=Gruber Law |language=en}}</ref><ref>{{Cite web |date=September 4, 2013 |title=Gruber Law Brings Awareness Through 'Its Aaron' with Aaron Rodgers |url=https://www.gruber-law.com/itsaaron/ |archive-url=https://web.archive.org/web/20190414173233/https://www.gruber-law.com/itsaaron/ |archive-date=April 14, 2019 |access-date=March 7, 2019 |website=Gruber Law Offices}}</ref>
He sanso be a supporter of de MACC Fund,<ref name="Nickel">{{Cite web |last=Nickel |first=Lori |date=May 14, 2013 |title=Aaron Rodgers Shines at MACC Fund Event |url=https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |url-status=live |archive-url=https://web.archive.org/web/20250306103414/https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |archive-date=March 6, 2025 |access-date=February 2, 2014 |website=Milwaukee Journal Sentinel}}</ref><ref name="Demovsky">{{Cite web |last=Demovsky |first=Rob |date=December 31, 2013 |title=Aaron Rodgers address 'crazy rumors' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |url-status=live |archive-url=https://web.archive.org/web/20140204035709/http://espn.go.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |archive-date=February 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> Raise Hope for Congo,<ref name="Garber">{{Cite web |last=Garber |first=Greg |date=January 1, 2014 |title=Aaron Rodgers makes real difference:Packers quarterback uses his clout to bring awareness to Raise Hope For Congo |url=https://www.espn.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |url-status=live |archive-url=https://web.archive.org/web/20140104044126/http://espn.go.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |archive-date=January 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> den oda humanitarian den charitable efforts.<ref>{{Cite web |title=Aaron Rodgers: Charity Work & Causes |url=https://www.looktothestars.org/celebrity/aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20211115164124/https://www.looktothestars.org/celebrity/aaron-rodgers |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=Look to the Stars |language=en}}</ref><ref>{{Cite web |date=March 1, 2021 |title=Aaron Rodgers donates $1 million to aid 80 small businesses in hometown |url=https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |url-status=live |archive-url=https://web.archive.org/web/20211115164225/https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=NFL.com |language=en-US}}</ref>
Rodgers ein ''[[List of Jeopardy! tournaments and events|Celebrity Jeopardy!]]'' win earn $50,000 for de MACC Fund.<ref name="Kaduk2015">{{Cite web |last=Kaduk |first=Kevin |date=May 12, 2015 |title=Aaron Rodgers wins his episode of Celebrity Jeopardy |url=https://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |url-status=live |archive-url=https://web.archive.org/web/20150514165207/http://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=[[Yahoo! Sports]]}}</ref><ref>{{Cite web |last=Hanzus |first=Dan |date=May 12, 2015 |title=Aaron Rodgers comes up clutch on Celebrity Jeopardy |url=https://www.nfl.com/news/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy-0ap3000000492438 |url-status=live |archive-url=https://web.archive.org/web/20150514155518/http://www.nfl.com/news/story/0ap3000000492438/article/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=NFL.com}}</ref> During ein 2021 appearance as ''Jeopardy!'' guest host, de show make a charitable donation equal to de cumulative winnings of de contestants (wey dey include de runners-up) for those ten shows.<ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers be a supporter of ein alma mater, University of California, Berkeley. He donate funds to renovate de athletic facilities<ref>{{Cite web |last=Kercheval |first=Ben |date=June 11, 2019 |title=Aaron Rodgers gives Cal football 'seven-figure gift' for locker room renovations, scholarship |url=https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |url-status=live |archive-url=https://web.archive.org/web/20210709182238/https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=CBS Sports |language=en}}</ref> wey he sanso establish an endowed scholarship give transfer students at de school. Insyd 2021, dem honor am by de school for ein charitable work.<ref>{{Cite web |date=June 1, 2021 |title=2021's Best and Brightest Alumni, Faculty Honored at Berkeley Charter Gala |url=https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |url-status=live |archive-url=https://web.archive.org/web/20210709182728/https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=Cal Alumni Association}}</ref>
Insyd 2021, Rodgers donate $1 million to help small businesses insyd Chico den Butte County, California.<ref>{{Cite web |date=March 1, 2021 |title=Packers QB Aaron Rodgers donates $1 million to help his hometown's small businesses |url=https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |url-status=dead |archive-url=https://web.archive.org/web/20230119205343/https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |archive-date=January 19, 2023 |access-date=January 19, 2023 |website=Packers.com |language=en-US}}</ref>
Insyd 2024, Rodgers raise $3 million for charities plus a flag football tournament.<ref>{{Cite web |last=Williams |first=Randall |date=May 4, 2024 |title=Aaron Rodgers Is Bullish on Flag Football, Uses to Raise Millions for Charity |url=https://www.bloomberg.com/news/articles/2024-05-04/nfl-qb-aaron-rodgers-says-olympic-flag-football-might-be-next-chapter |access-date=May 30, 2024 |website=Bloomberg.com}}</ref>
aoosz5mnd0v6108dpbictu4so88f10p
111296
111290
2026-08-29T22:09:05Z
DaSupremo
9
/* 2022 */ Remove error
111296
wikitext
text/x-wiki
'''Aaron Charles Rodgers''' (born December 2, 1983) be an American professional [[American football|football]] quarterback give de Pittsburgh Steelers of de National Football League (NFL). He play college football give de California Golden Bears, setting de school ein record for lowest single-season den career interception rates before he be selected by de Green Bay Packers insyd de first round of de 2005 NFL draft.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{cite web |date=April 23, 2005 |title=Aaron Rodgers Selected by Green Bay |url=https://calbears.com/sports/2005/4/23/207736054 |access-date=September 25, 2025 |website=California Golden Bears Athletics}}</ref> He be regarded as one of de greatest den most talented quarterbacks of all time.<ref name="GOAT"></ref>
After backing up [[Brett Favre]] for de first three years of ein NFL career, Rodgers cam be de Packers dema starting quarterback insyd 2008. Insyd de 2010 season, he lead dem to a victory insyd Super Bowl XLV, earning de Super Bowl MVP. Na dem name am Associated Press Athlete of de Year insyd 2011,<ref name="Male Athlete of the year">{{Cite news|date=December 21, 2011|title=Rodgers named Male Athlete of the Year|work=[[Fox Sports]]|agency=[[Associated Press]]|url=http://msn.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|url-status=dead|access-date=May 13, 2011|archive-url=https://web.archive.org/web/20190718082529/https://www.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|archive-date=July 18, 2019}}</ref> wey na dem vote am league MVP by de Associated Press for de 2011, 2014, 2020, den 2021 NFL seasons. Rodgers be de fifth player to win NFL MVP insyd consecutive seasons, joining [[Peyton Manning]], Favre, [[Joe Montana]] den [[Jim Brown]]. Rodgers lead de NFL six times insyd touchdown-to-interception ratio (2011, 2012, 2014, 2018, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Leaders – Passing Touchdown/Interception Ratio |url=https://www.footballdb.com/leaders/yearly-passing-tdintratio |url-status=live |archive-url=https://web.archive.org/web/20190407190912/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=April 7, 2019 |access-date=April 7, 2019 |website=FootballDB.com}}</ref> six times insyd lowest passing interception percentage (2009, 2014, 2018, 2019, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passing Interception Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-intpct |url-status=live |archive-url=https://web.archive.org/web/20200724202503/https://www.footballdb.com/leaders/yearly-passing-intpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> four times insyd passer rating (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passer Rating Leaders |url=https://www.footballdb.com/leaders/yearly-passing-rating |url-status=live |archive-url=https://web.archive.org/web/20200724211550/https://www.footballdb.com/leaders/yearly-passing-rating |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den four times insyd touchdown passing percentage (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Touchdown Pass Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-tdpct |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.footballdb.com/leaders/yearly-passing-tdpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> three times insyd total touchdowns (2011, 2016, 2020); twice insyd touchdown passes (2016, 2020)<ref>{{Cite web |title=NFL Yearly Touchdown Passes Leaders |url=https://www.footballdb.com/leaders/yearly-passing-touchdowns |url-status=live |archive-url=https://web.archive.org/web/20200724202559/https://www.footballdb.com/leaders/yearly-passing-touchdowns |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den once insyd yards per attempt (2011) den completion percentage (2020).<ref>{{Cite web |title=NFL Yearly Passing Yards per Attempt Leaders |url=https://www.footballdb.com/leaders/yearly-passing-ydsattempt |url-status=live |archive-url=https://web.archive.org/web/20200724202800/https://www.footballdb.com/leaders/yearly-passing-ydsattempt |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> Insyd 2023, na dem trade Rodgers to de New York Jets, wer he spend two seasons plus de team. Released by de Jets after de 2024 season, Rodgers sign plus de Steelers, whom he lead to a division title dat season.
Ranking first on de NFL ein all-time regular-season career passer rating list,<ref>{{Cite web |last=Brizuela |first=James |date=September 16, 2025 |title=Ravens' Lamar Jackson Has Surpassed Aaron Rodgers in Major NFL Career Stat |url=https://www.newsweek.com/sports/nfl/ravens-lamar-jackson-has-surpassed-aaron-rodgers-major-nfl-career-stat-2130770 |access-date=September 16, 2025 |website=[[Newsweek]]}}</ref> Rodgers be among de most efficient quarterbacks of all time. Apart from a regular-season career passer rating of over 100 (de first to ever have a career rating over 100), he sanso dey hold de best touchdown-to-interception ratio den de lowest passing interception percentage insyd NFL history while he sanso get de highest passer rating insyd NFL history thru out de entire 2010s decade. Insyd de postseason, he be second in both touchdown passes den touchdown-to-interception ratio, fourth insyd passing yards, den eighth insyd all-time passer rating. Insyd de regular season, he get de best touchdown-to-interception ratio insyd NFL history at 4.34,<ref name="Football DB">{{Cite web |title=NFL Career Leaders – Passing Touchdown/Interception Ratio |url=http://www.footballdb.com/leaders/career-passing-tdintratio |archive-url=https://web.archive.org/web/20200508102359/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=May 8, 2020 |access-date=November 3, 2014 |website=FootballDB.com}}</ref> he dey hold de league ein second lowest career interception percentage at 1.4 percent<ref name="a">{{Cite web |title=NFL Career Pass Interception % Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |url-status=live |archive-url=https://web.archive.org/web/20110815065956/http://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |archive-date=August 15, 2011 |access-date=September 24, 2015 |work=[[Pro Football Reference]]}}</ref> den de highest single-season passer rating record of 122.5.<ref>{{Cite web |last=Mayer |first=Larry |date=September 12, 2012 |title=Bears gearing up to battle Rodgers |url=http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |url-status=dead |archive-url=https://web.archive.org/web/20150925095614/http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |archive-date=September 25, 2015 |access-date=September 24, 2015 |publisher=[[Chicago Bears]]}}</ref> Rodgers sanso be a four-time winner of de Best NFL Player ESPY Award.
== Early life ==
Ba dem born Aaron Charles Rodgers on December 2, 1983, insyd Chico, California,<ref>{{Cite magazine|title=Aaron Rodgers – No. 12 – QB|url=http://sportsillustrated.cnn.com/football/nfl/players/7200|url-status=dead|archive-url=https://web.archive.org/web/20110719095151/http://sportsillustrated.cnn.com/football/nfl/players/7200/|archive-date=July 19, 2011|access-date=February 6, 2011|magazine=[[Sports Illustrated]]}}</ref> de son of Darla Leigh (née Pittman) den Edward Wesley Rodgers. Na ein poppie be a Texas-born chiropractor wey play football as an offensive lineman give de Chico State Wildcats from 1973 to 1976.<ref name="about1">{{Cite web |last=Powell |first=Kimberly |date=October 15, 2018 |title=Ancestry of Aaron Rodgers |url=https://www.thoughtco.com/family-tree-of-aaron-rodgers-1421929 |url-status=live |archive-url=https://web.archive.org/web/20111211212214/http://genealogy.about.com/od/famous_family_trees/ss/aaron-rodgers.htm |archive-date=December 11, 2011 |access-date=May 10, 2012 |website=ThoughtCo.com}}</ref><ref name="Jackel2005">{{Cite web |last=Jackel |first=Pete |date=October 6, 2005 |title=Focus on Football: Rodgers preparing for his moment |url=http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |url-status=live |archive-url=https://web.archive.org/web/20110127115346/http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |archive-date=January 27, 2011 |access-date=March 14, 2012 |website=RacineSportsZone.com |publisher=JournalTimes.com}}</ref> Rodgers be of English, Irish den German ancestry.<ref name="about1" /> De family move go Ukiah, California, wer he attend Oak Manor Elementary School.<ref name="FreeThrows">{{Cite news|date=January 3, 1993|title='Free throws' are his forte|url=https://newspaperarchive.com/ukiah-daily-journal/1993-01-03/|url-status=live|archive-url=https://web.archive.org/web/20211201192340/https://newspaperarchive.com/browse/us/ca/ukiah/ukiah-daily-journal/|archive-date=December 1, 2021|access-date=March 14, 2012|work=Ukiah Daily Journal|via=Newspaper Archive|page=1}}</ref> Edward Rodgers toss a football plus ein sons Luke, Aaron den [[Jordan Rodgers]], wey he flow dem make dem no told drink den no party insyd college anaa dem go limit demaselves insyd sports like he do. Aaron take dis advice to heart.<ref name="Jackel2005" /> At de age of ten, he be featured on de front page of de ''Ukiah Daily Journal'' for ein top performance at a local basketball free throw competition.<ref name="FreeThrows" />
Later, de family move go Beaverton, Oregon, wer Rodgers attend Vose Elementary School den Whitford Middle School, wey he play baseball insyd de Raleigh Hills Little League at shortstop, center field den pitcher.<ref name="Oregonian">{{Cite web |date=February 5, 2011 |title=Green Bay quarterback Aaron Rodgers has strong ties to Beaverton |url=http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |url-status=live |archive-url=https://web.archive.org/web/20110216014347/http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |archive-date=February 16, 2011 |access-date=February 5, 2011 |work=[[The Oregonian]]}}</ref>
De Rodgers family return to Chico insyd 1997, wey Aaron attend Pleasant Valley High School, starting for two years at quarterback den garnering 4,421 passing yards.<ref>{{Cite web |last=Davidson |first=Joe |date=September 5, 2019 |title=Green Bay Packers quarterback Aaron Rodgers donates 354 new helmets to California high schools |url=https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |url-status=live |archive-url=https://web.archive.org/web/20190925105424/https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |archive-date=September 25, 2019 |access-date=September 13, 2019 |work=[[Honolulu Star-Advertiser]]}}</ref> He set single-game records of six touchdowns den 440 all-purpose yards. Rodgers set a single-season school record plus 2,466 total yards insyd 2001.<ref>{{Cite web |last=Carlton |first=Jimmy |date=April 26, 2018 |title=Of brains, Butte and baseball: How a tiny teenager became #Packers MVP Aaron Rodgers |url=https://onmilwaukee.com/articles/packersaaronrodgersjourney |access-date=May 30, 2024 |website=OnMilwaukee}}</ref> He graduate from Pleasant Valley High School insyd spring 2002, after scoring 1310 insyd de SAT den plus an A− average.<ref>{{Cite web |title=#12 Aaron Rodgers |url=http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |url-status=live |archive-url=https://web.archive.org/web/20110716022313/http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |archive-date=July 16, 2011 |access-date=February 6, 2011 |website=Packer Report |publisher=Scout with FoxSports.com}}</ref><ref>{{Cite news|date=November 20, 2002|title=JC Quarterback Commits to Cal, Butte's Rodgers Could Join the Competition to Replace Boller Next Year|url=http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|url-status=live|archive-url=https://web.archive.org/web/20181113165752/http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|archive-date=November 13, 2018|access-date=May 11, 2012|work=Contra Costa Times|location=Walnut Creek, California|via=NewsBank|quote=[He] scored 1310 on the SAT, so Cal's academic reputation was important to him.}}</ref><ref>{{Cite news|last=Crouse|first=Karen|date=January 31, 2011|title=Packers' Rodgers Has Deep Roots in Chico|url=https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|url-status=live|archive-url=https://web.archive.org/web/20190426170034/https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|archive-date=April 26, 2019|access-date=December 5, 2019|work=[[The New York Times]]|page=D1|quote=Despite his athletic prowess, an A-minus average and an SAT score of 1310, Rodgers did not receive an NCAA Division I scholarship offer coming out of high school.}}</ref>
== College career ==
Despite ein impressive high school record, Rodgers attract little interest from Division I programs.<ref>{{Cite web |last=Kalland |first=Robby |date=September 3, 2015 |title=How Aaron Rodgers went from not being recruited to a star at Cal |url=https://www.cbssports.com/college-football/news/how-aaron-rodgers-went-from-not-being-recruited-to-a-star-at-cal/ |access-date=May 30, 2024 |website=CBSSports.com}}</ref> Insyd a 2011 interview plus ''E:60'', he attribute de relative lack of attention insyd de recruiting process to ein unimposing physical stature as a high school player at {{convert|5|ft|10|in|m|abbr=on}} den {{convert|165|lb|kg}}. Na Rodgers want to attend Florida State den play under head coach [[Bobby Bowden]], buh na dem reject am.<ref name="E60 Youtube">{{Cite web |date=October 27, 2011 |title=E:60 – Aaron Rodgers |url=https://www.youtube.com/watch?v=blrmdIfXPwI |url-status=live |archive-url=https://web.archive.org/web/20120302212553/https://www.youtube.com/watch?v=blrmdIfXPwI |archive-date=March 2, 2012 |access-date=May 13, 2012 |publisher=ESPN |via=YouTube}}</ref> Na he only be offered an opportunity to compete for a scholarship as a walk-on from University of Illinois.<ref>{{Cite news|last=McGrath|first=Jim|date=June 29, 2011|title=Green Bay QB Rodgers Visits All-Pro Campers at W&M|work=Williamsburg Yorktown Daily|url=http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|url-status=dead|access-date=August 22, 2013|archive-url=https://web.archive.org/web/20130921054645/http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|archive-date=September 21, 2013}}</ref> He decline de invitation, wey na he consider quitting football to play baseball instead anaa giving up entirely on de idea of playing insyd professional sports den attending law school after completing ein undergraduate degree.<ref name="Babb">{{Cite news|last=Babb|first=Kent|date=December 15, 2015|title=For Aaron Rodgers, road to the NFL started at an apparent dead end|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|url-status=live|access-date=November 30, 2018|archive-url=https://web.archive.org/web/20181130205037/https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|archive-date=November 30, 2018}}</ref>
He then be recruited to play football at Butte College insyd Oroville, a junior college about {{convert|15|mi|km}} southeast of Chico.<ref>{{Cite book |last=Sandler |first=Michael |url=https://archive.org/details/aaronrodgersgree0000sand |title=Aaron Rodgers and the Green Bay Packers: Super Bowl XLV |date=August 1, 2011 |publisher=Bearport Publishing |isbn=9781617723094 |url-access=registration}}</ref>
=== Butte ===
==== 2002 season ====
Rodgers throw 26 touchdowns insyd ein freshman season at Butte,<ref>{{Cite web |title=Aaron Rodgers |url=https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |url-status=live |archive-url=https://web.archive.org/web/20211028170413/https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |archive-date=October 28, 2021 |access-date=October 13, 2021 |website=California Community Colleges Chancellor's Office}}</ref><ref>{{Cite web |title=Stats & Records |url=http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-url=https://web.archive.org/web/20081202112615/http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-date=December 2, 2008 |access-date=November 18, 2011 |website=butte.edu |publisher=[[Butte College]]}}</ref> leading de school to a 10–1 record, de NorCal Conference championship,<ref>{{Cite web |date=November 8, 2008 |title=Title-tilt bound: Butte secures NorCal championship |url=https://www.chicoer.com/20081108/title-tilt-bound-butte-secures-norcal-championship/ |access-date=May 30, 2024 |work=Chico Enterprise-Record}}</ref> den a {{nowrap|No. 2}} national ranking. While der, na he be discovered by de California Golden Bears ein head coach [[Jeff Tedford]], wey na he dey recruite Butte tight end Garrett Cross.<ref>{{Cite web |last=McGrath |first=Dan |date=November 11, 2004 |title=Cal QB Rodgers has the pedigree |url=https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-url=https://web.archive.org/web/20191205183533/https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-date=December 5, 2019 |access-date=September 13, 2019 |work=Chicago Tribune}}</ref> Na Tedford be surprised to learn say Rodgers no be recruited earlier. Secof Rodgers ein good high school scholastic record, he be eligible to transfer to de University of California, Berkeley after one year of junior college instead of de typical two.<ref name="Cal">{{Cite news|last=Adams|first=Bruce|date=August 3, 2003|title=Cal's QB hope: JC transfer Rodgers has what Tedford likes|work=San Francisco Chronicle|url=https://www.sfchronicle.com/sports/article/Cal-s-QB-hope-JC-transfer-Rodgers-has-what-2598626.php|url-status=live|access-date=22 February 2026}}</ref>
=== California ===
==== 2003 season ====
As a junior college transfer, Rodgers get three years of eligibility at Cal. Na dem name am de starting quarterback insyd de fifth game of de 2003 season, beating de only team wey offer am a {{nowrap|Division I}} opportunity out of high school, Illinois.<ref>{{Cite web |date=October 14, 2014 |title=Aaron Rodgers: I wanted to join Illini; they passed |url=https://www.chicagotribune.com/2014/10/14/aaron-rodgers-i-wanted-to-join-illini-they-passed/ |access-date=May 30, 2024 |work=Chicago Tribune}}</ref> As a sophomore, he help lead de Golden Bears to a 7–3 record as a starter.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{Cite web |last=King |first=Randy |date=December 26, 2003 |title=Virginia Tech finishes on wrong foot with Insight Bowl loss to Cal |url=https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |url-status=live |archive-url=https://web.archive.org/web/20191208021513/https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |work=The Roanoke Times}}</ref>
Insyd ein second career start, Rodgers lead de team to a 21–7 halftime lead against #3 USC. Secof injury, na dem replace Rodgers insyd de second half by Reggie Robertson.<ref name="calfans" /><ref>{{Cite web |date=September 27, 2003 |title=Cal-USC Postgame Quotes |url=http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121444/http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |archive-date=June 9, 2012 |website=California Golden Bears |quote=After the interception for the touchdown, I went over to him and said 'Do you want to take a couple of series off?' and he said 'Yes.' We put Reggie (Robertson) in and Reggie did a nice job for us."}}</ref> De Bears win insyd triple overtime, 34–31.<ref name="calfans">{{Cite web |date=September 27, 2003 |title=Cal fans storm field after win |url=http://espn.go.com/ncf/recap?gameId=232700025 |url-status=dead |archive-url=https://web.archive.org/web/20161119182933/https://www.espn.com/college-football/recap?gameId=232700025 |archive-date=November 19, 2016 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |last=Faraudo |first=Jeff |date=September 29, 2009 |title=Cal's triple-overtime thriller against USC in 2003 produced multiple heroes |url=https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |url-status=live |archive-url=https://web.archive.org/web/20191208021406/https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=East Bay Times}}</ref> Rodgers pass for 394 yards wey na dem name am game MVP insyd de Insight Bowl against Virginia Tech.<ref>{{Cite web |title=Insight Bowl – Virginia Tech vs California Box Score, December 26, 2003 |url=https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |url-status=live |archive-url=https://web.archive.org/web/20180312084010/https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |work=[[Sports Reference]]}}</ref><ref>{{Cite book |last=Tsuchiya |first=Anita |url=https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |title=Aaron Rodgers: Biography of a Super Bowl MVP |date=July 30, 2012 |publisher=Hyperink Inc |isbn=9781614646129 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203201742/https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |archive-date=February 3, 2021 |url-status=live}}</ref>
Insyd 2003, Rodgers tie de school season record for 300-yard games plus five wey he set a school record for de lowest percentage of passes dem intercept at 1.43%.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref>
==== 2004 season ====
As a junior, Rodgers lead Cal to a 10–1 record den top-five ranking at de end of de regular season, plus dema only loss a 23–17 loss at {{nowrap|No. 1}} USC.<ref>{{Cite web |title=2004 California Golden Bears Schedule and Results |url=https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |url-status=live |archive-url=https://web.archive.org/web/20180312085053/https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref> Insyd dat game, Rodgers set a school record for consecutive passes dem plete plus 26 wey he tie an NCAA record plus 23 consecutive passes dem plete insyd one game.<ref>{{Cite web |last=Lee |first=Ted |date=October 10, 2004 |title=It was there for the taking |url=https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-url=https://web.archive.org/web/20191205183922/https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-date=December 5, 2019 |access-date=September 13, 2019 |website=BearTerritory.net}}</ref> Na he set a Cal single-game record for passing completion percentage of 85.3.<ref>{{Cite web |last=Lowry |first=Matthew |date=November 15, 2019 |title=Trojans Throwback: 2004 USC vs California |url=https://www.conquestchronicles.com/football/2019/11/15/20966700/trojans-throwback-2004-usc-vs-california |access-date=May 30, 2024 |work=Conquest Chronicles}}</ref><ref>{{Cite web |last=Wharton |first=David |date=October 10, 2004 |title=Rodgers Can't See It Through to Completion |url=https://www.latimes.com/archives/la-xpm-2004-oct-10-sp-uscside10-story.html |access-date=May 30, 2024 |work=Los Angeles Times}}</ref> Rodgers dey hold de Cal career record for lowest percentage of passes dem intercept at 1.95 percent.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref> Rodgers ein performance set up de Golden Bears at first den goal plus 1:47 remaining den a chance for de game-winning touchdown. On de first play of USC ein goal line stand, Rodgers throw an incomplete pass. Na dis be followed by a second-down sack by [[Manuel Wright]].<ref name="Cal Vs USC 2004" /> After a timeout den Rodgers ein incomplete pass on third down, USC stop Cal ein run play to win de game.<ref name="Cal Vs USC 2004" /> Rodgers comment say na e be "frustrating dat we no fi get de job done."<ref name="Cal Vs USC 2004">{{Cite web |date=October 9, 2004 |title=Trojans' defense stymies Cal QB at first-and-goal |url=http://scores.espn.go.com/ncf/recap?gameId=242830030 |url-status=dead |archive-url=https://web.archive.org/web/20170817065913/http://scores.espn.com/ncf/recap?gameId=242830030 |archive-date=August 17, 2017 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Overall, he fini de 2004 season plus 2,566 passing yards, 24 touchdowns, den eight interceptions. Ein 66.1% pass completion percentage lead de Pac-10.<ref>{{Cite web |title=Aaron Rodgers 2004 Game Log |url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |url-status=live |archive-url=https://web.archive.org/web/20180312084136/https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref><ref>{{Cite web |title=2004 Pacific-10 Conference Leaders |url=https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |url-status=live |archive-url=https://web.archive.org/web/20180328231847/https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Sports Reference]]}}</ref> He fini ninth insyd Heisman Trophy voting.<ref>{{Cite web |title=2004 Heisman Trophy Voting |url=https://www.sports-reference.com/cfb/awards/heisman-2004.html |access-date=December 2, 2022 |website=[[Sports Reference]] |language=en}}</ref>
After na dem pick Texas over Cal for a Rose Bowl berth, na dem award de fourth-ranked Bears a spot insyd de Holiday Bowl, wich dem loose to Texas Tech, 45–31.<ref>{{Cite web |date=December 15, 2017 |title=2004 Holiday Bowl: Cal caught in Texas Tech's Air Raid |url=https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208021644/https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> After de season, Rodgers decide to forgo ein senior season to enter de 2005 NFL draft.<ref>{{Cite web |date=January 6, 2005 |title=Who to watch in 2005 |url=http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |url-status=live |archive-url=https://web.archive.org/web/20190426144539/http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |archive-date=April 26, 2019 |access-date=February 15, 2012 |website=Chico News & Review}}</ref>
== Professional career ==
=== 2005 NFL draft ===
Na Rodgers be expected to be selected early insyd de 2005 NFL draft as he post impressive numbers as a junior plus Cal, throwing for 2,320 yards plus a 67.5 completion rate insyd de regular season. He throw for 24 touchdowns den only eight interceptions insyd ein last college season, impressing chaw NFL scouts. Na dem comment say na he be a "talented strong-armed junior"<ref name="Draft Insider">{{Cite web |title=NFL Draft – QB Aaron Rodgers |url=http://www.draftinsiders.com/node/1288 |url-status=dead |archive-url=https://web.archive.org/web/20120111054622/http://www.draftinsiders.com/node/1288 |archive-date=January 11, 2012 |access-date=December 9, 2011 |website=DraftInsiders.com}}</ref> wey dey "combine arm strength, mechanics den delivery to make all de throws", buh dem note say ein stats fi be inflated secof playing insyd a quarterback-friendly system den dat he go need to adjust to de more elaborate defensive schemes of de NFL.<ref name="Draft Insider" />
Before de draft, na Rodgers be confident say he go be drafted to de San Francisco 49ers, de team he support den grow up near,<ref name="Bensiger">{{Cite AV media |url=https://www.youtube.com/watch?v=8_a6O3vdlU0 |title=In Depth with Graham Bensinger: Aaron Rodgers: Thought I'd be a 49er |date=December 21, 2016 |last=Bensinger |first=Graham |type=Television production, YouTube video |access-date=December 26, 2016 |archive-url=https://ghostarchive.org/varchive/youtube/20211212/8_a6O3vdlU0 |archive-date=December 12, 2021 |url-status=live |orig-year=2010}}</ref> wey possess de No. 1 overall pick insyd de draft.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> De 49ers, however, draft quarterback [[Alex Smith]] out of Utah instead, wey Rodgers slid all de way down to de 24th overall pick by de Green Bay Packers. Na Rodgers say he experience much angst den restlessness wen waiting to be selected several hours into de draft, as na he expect einself to be selected much sooner.<ref name="Bensiger" /> Rodgers ein slip to de 24th selection den de Packers choosing to pick [[Brett Favre]] ein future replacement cam be one of de biggest stories of de draft, though na he still be de second quarterback dem select. Na ein drop insyd de draft later be ranked number one on de NFL Network ein Top 10 Draft Day Moments.<ref>{{Cite web |last=Currie |first=David |date=April 27, 2017 |title=NFL Draft: Top 10 Moments – Aaron Rodgers falling to Tim Tebow trade |url=https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |url-status=live |archive-url=https://web.archive.org/web/20200727131640/https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |archive-date=July 27, 2020 |access-date=September 13, 2019 |website=Sky Sports}}</ref> Chaw teams wey dey draft between de second den 23rd positions get positional needs more pressing dan quarterback.<ref name="ESPN Column">{{Cite web |last=Clayton |first=John |date=April 23, 2005 |title=Clayton: Waiting is the hardest part |url=https://www.espn.com/nfl/draft05/columns/story?columnist=clayton_john&id=2044646 |url-status=live |archive-url=https://web.archive.org/web/20160702194839/http://espn.go.com/nfl/draft05/columns/story?id=2044646&columnist=clayton_john |archive-date=July 2, 2016 |access-date=April 27, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |title=2005 NFL Draft Listing |url=https://www.pro-football-reference.com/years/2005/draft.htm |url-status=live |archive-url=https://web.archive.org/web/20170921001516/https://www.pro-football-reference.com/years/2005/draft.htm |archive-date=September 21, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers be one of six quarterbacks wey [[Jeff Tedford]] coach to be drafted insyd de first round of an NFL draft, joining [[Trent Dilfer]], [[Akili Smith]], [[David Carr (American football)|David Carr]], [[Joey Harrington]] den [[Kyle Boller]].<ref>{{Cite news|last=Greenberg|first=Steve|date=November 20, 2012|title=Jeff Tedford developed Aaron Rodgers, but recent QBs struggled|work=Sporting News|url=http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|url-status=live|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20161230042613/http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|archive-date=December 30, 2016}}</ref>
=== Green Bay Packers ===
==== Backup years: 2005–2007 ====
Insyd August 2005, Rodgers agree to a reported five-year, $7.7 million deal wey include $5.4 million in guaranteed money wey e get de potential to pay am as much as $24.5 million if na dem meet all incentives den escalators.<ref name="Sportrac Contract">{{Cite web |title=Aaron Rodgers Contract Breakdown |url=https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |url-status=live |archive-url=https://web.archive.org/web/20210506052810/https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |archive-date=May 6, 2021 |access-date=November 15, 2021 |website=Spotrac.com |language=en-US}}</ref>
Rodgers spend ein rookie season as de Packers dema backup quarterback behind Brett Favre.<ref>{{Cite web |title=2005 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2005.htm |url-status=live |archive-url=https://web.archive.org/web/20211107183417/https://www.pro-football-reference.com/teams/gnb/2005.htm |archive-date=November 7, 2021 |access-date=December 8, 2019 |website=[[Pro Football Reference]]}}</ref> Na de Packers be 4–12 at dis point wey he receive ein first extended look insyd de opening preseason game against de San Diego Chargers after replacing Favre.<ref name="Chargers Vs Packers 2005 Preseason">{{Cite web |date=August 11, 2005 |title=Favre completes nine of 10 passes for 91 yards, TD |url=http://scores.espn.go.com/nfl/recap?gameId=250811009 |archive-url=https://web.archive.org/web/20180127084112/https://www.espn.com/nfl/recap?gameId=250811009 |archive-date=January 27, 2018 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd ein first NFL game, Rodgers plete two out of seven passes wey na dem sack am twice. He continue to struggle thru de preseason, before ending de preseason by converting two third downs den throwing a touchdown pass to tight end [[Ben Steele]] against de Tennessee Titans.<ref name="GB Vs Tennesee">{{Cite web |date=September 1, 2005 |title=Green Bay 21, Tennessee 17 |url=http://scores.espn.go.com/nfl/recap?gameId=250901010 |url-status=dead |archive-url=https://web.archive.org/web/20131105175854/http://scores.espn.go.com/nfl/recap?gameId=250901010 |archive-date=November 5, 2013 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Once de regular season begin, Rodgers see very little action dat year. He play against de New Orleans Saints insyd de fourth quarter of a 52–3 victory, wey he plete ein first career pass to fullback [[Vonta Leach]] for 0 yards.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> On {{nowrap|December 19, 2005,}} Rodgers enter de game against de Baltimore Ravens at de end of de third quarter insyd a 48–3 loss.<ref name="Green Bay Bio" /> He plete eight of 15 passes for 65 yards den an interception.<ref name="Packers Vs. Ravens 2005">{{Cite web |date=December 20, 2005 |title=Boller outplays Favre in Ravens' rout of Packers |url=http://scores.espn.go.com/nfl/recap?gameId=251219033 |url-status=dead |archive-url=https://web.archive.org/web/20121023103816/http://scores.espn.go.com/nfl/recap?gameId=251219033 |archive-date=October 23, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref>
After de Packers dema losing season, na dem fire den replace head coach [[Mike Sherman]] by [[Mike McCarthy]].<ref name="Packers Fire Sherman">{{Cite news|date=January 2, 2006|title=Packers fire coach Mike Sherman|work=Yahoo! Sports|url=https://sports.yahoo.com/nfl/news?slug=packerssherman|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20140426105024/https://sports.yahoo.com/nfl/news?slug=packerssherman|archive-date=April 26, 2014}}</ref><ref name="Packers to hire 49ers">{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=January 12, 2006 |title=Packers to hire 49ers' McCarthy as coach |url=https://www.espn.com/nfl/news/story?id=2288985 |url-status=live |archive-url=https://web.archive.org/web/20121014050433/http://sports.espn.go.com/nfl/news/story?id=2288985 |archive-date=October 14, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]]}}</ref> Rodgers then be placed insyd McCarthy ein "Quarterback school" for six hours a day several times a week.<ref name="Journal Sentinel">{{Cite web |last=Silverstein |first=Tom |date=September 7, 2008 |title=The Education of Aaron Rodgers |url=http://www.jsonline.com/sports/packers/32579374.html |url-status=live |archive-url=https://web.archive.org/web/20101223123643/http://www.jsonline.com/sports/packers/32579374.html |archive-date=December 23, 2010 |access-date=May 11, 2012 |website=Milwaukee Journal Sentinel}}</ref> Dis focus on working on Rodgers ein motor skills such as hand-eye coordination, finger dexterity, den mechanics.<ref name="New York Times QB School">{{Cite news|last=Bishop|first=Greg|date=December 2, 2011|title=The Education of a Quarterback|work=The New York Times|url=https://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|url-status=live|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20120501123445/http://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|archive-date=May 1, 2012}}</ref> McCarthy sanso work on Rodgers ein release point, moving am from right beside de ear hole of ein helmet to further below am, to give am a smoother release.<ref name="Aaron Rodgers Leader of The Pack">{{Cite book |last=Reischel |first=Rob |title=Aaron Rodgers: Leader of the Pack: An Intimate Portrait of a Super Bowl MVP |date=March 1, 2011 |publisher=Triumph Books |isbn=978-1-60078-645-7 |language=English}}</ref> Wen de 2006 preseason begin, Rodgers play as de backup insyd all four games; he plete 22 out 38 passes for 323 yards den three touchdowns.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> Rodgers see very little action during de 2006 season, buh did step insyd briefly on {{nowrap|October 2}} against de Philadelphia Eagles wen Favre lef de game secof injury.<ref name="Green Bay Bio" /> On {{nowrap|November 19, 2006,}} Rodgers break ein left foot while playing against de New England Patriots insyd a 35–0 defeat at home, filling insyd for an injured Favre, wey Rodgers miss de remainder of de 2006 season.<ref name="Journal Sentinel" />
Following de team ein season-ending victory at Chicago, Favre announce say he go stay plus de Packers for de 2007 season, again postponing Rodgers ein hopes of becoming de Packers dema starting quarterback.<ref name="Favre">{{Cite web |last=Silverstein |first=Tom |date=January 7, 2007 |title=Favre leaves lasting impression |url=http://www.jsonline.com/news/milwaukee/29212859.html |url-status=dead |archive-url=https://web.archive.org/web/20120908152601/http://www.jsonline.com/news/milwaukee/29212859.html |archive-date=September 8, 2012 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref> Prior to de 2007 season, rumors surface about a potential trade involving Rodgers insyd wich he go be traded to de Oakland Raiders for wide receiver [[Randy Moss]].<ref>{{Cite web |date=March 18, 2007 |title=Packers GM insists QB Rodgers not on trading block |url=https://www.espn.com/nfl/news/story?id=2803272 |url-status=live |archive-url=https://web.archive.org/web/20121107040642/http://sports.espn.go.com/nfl/news/story?id=2803272 |archive-date=November 7, 2012 |access-date=December 30, 2010 |website=[[ESPN.com]]}}</ref> However, Moss be traded to de Patriots during de second day of de 2007 NFL draft, wey Rodgers stay insyd Green Bay.<ref>{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=April 29, 2007 |title=Pats acquire WR Moss from Raiders for draft pick |url=https://www.espn.com/nfl/draft07/news/story?id=2853116 |url-status=live |archive-url=https://web.archive.org/web/20171229132248/http://www.espn.com/nfl/draft07/news/story?id=2853116 |archive-date=December 29, 2017 |access-date=January 1, 2018 |website=[[ESPN.com]]}}</ref>
Rodgers step in wen na Favre injure insyd de second quarter against de Dallas Cowboys on ''Thursday Night Football'' on {{nowrap|November 29, 2007}}.<ref name="Cowboys Versus Packers 2007">{{Cite web |date=November 30, 2007 |title=Cowboys hold off Favre-less Packers to clinch playoff berth |url=http://scores.espn.go.com/nfl/recap?gameId=271129006 |url-status=dead |archive-url=https://web.archive.org/web/20121111035600/http://scores.espn.go.com/nfl/recap?gameId=271129006 |archive-date=November 11, 2012 |access-date=May 12, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers plete 18 passes for 201 yards, plus no interceptions.<ref name="Cowboys Versus Packers 2007" /> He sanso throw ein first touchdown pass buh na he be sacked three times.<ref name="Cowboys Versus Packers 2007" /> Rodgers bring de team back from a 17-point deficit to a 3-point deficit, buh de Cowboys go on to win 37–27.<ref name="Cowboys Versus Packers 2007" />
==== 2008: Transition to starter ====
[[File:AaronRodgers.jpg|left|thumb|Rodgers going down de tunnel at Lambeau Field insyd 2008]]
Favre ein retirement announcement on {{nowrap|March 4, 2008,}} open up de Packers dema starting quarterback position to Rodgers for de 2008 season. Although Favre decide to return from retirement, he be traded to de New York Jets, wich mean say Rodgers go cam be de starter.<ref>{{Cite web |last=Nickel |first=Lori |date=March 9, 2008 |title=Rodgers preparing to assume control |url=http://www.jsonline.com/story/index.aspx?id=726140 |url-status=dead |archive-url=https://web.archive.org/web/20081007044908/http://www.jsonline.com/story/index.aspx?id=726140 |archive-date=October 7, 2008 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref>
Rodgers quickly prove say na he be one of de best quarterbacks insyd de league by passing for 4,038 yards insyd ein first season as a starter as well as throwing for 28 touchdowns den only 13 interceptions. As of de 2025 season, dis still dey stand as de most interceptions he throw insyd a season.<ref>{{Cite web |title=Aaron Rodgers 2008 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |url-status=live |archive-url=https://web.archive.org/web/20180313183821/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Plus Rodgers making ein debut as a starter, de Packers beat de Minnesota Vikings 24–19 at Lambeau Field. Dis mark de first time since 1992 wey a quarterback oda dan Favre start a regular season game give de Packers. Rodgers end de game plus 178 yards passing den two touchdowns (one passing den one rushing).<ref name="Rodgers Debut">{{Cite web |last=Jenkins |first=Chris |date=September 10, 2008 |title=Solid debut frees Rodgers from post-Favre scrutiny |url=http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |url-status=live |archive-url=https://web.archive.org/web/20130921062040/http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |archive-date=September 21, 2013 |access-date=May 13, 2012 |website=USA Today |agency=Associated Press}}</ref> Insyd just ein second NFL start de following week, na dem vote Rodgers de FedEx Air award winner after passing for 328 yards den three touchdowns insyd a win against de Lions.<ref name="FedEx Air and Ground Winners Week 2 2008">{{Cite web |date=September 20, 2008 |title=FedEx Air and Ground Week 2 2008 Winners |url=http://www.nfl.com/videos?videoId=09000d5d80af20df |url-status=live |archive-url=https://web.archive.org/web/20090108060338/http://www.nfl.com/videos?videoId=09000d5d80af20df |archive-date=January 8, 2009 |access-date=September 20, 2008 |website=NFL Network |publisher=National Football League}}</ref>
During de fourth week of de season, Rodgers ein streak of 157 consecutive pass attempts widout an interception end wen na he be intercepted by [[Derrick Brooks]] of de Tampa Bay Buccaneers. Na de streak be de third-longest insyd franchise history behind [[Bart Starr]] (294) den Brett Favre (163).<ref name="Buccaneers">{{Cite web |date=September 29, 2008 |title=Buccaneers' defense rattles Rodgers in win over Packers |url=http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081001100738/http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |archive-date=October 1, 2008 |access-date=September 29, 2008 |publisher=National Football League}}</ref> Rodgers suffer a severe shoulder sprain insyd de game buh he continue to start den play well insyd a win against de Seattle Seahawks two weeks later.<ref name="Rodgers">{{Cite web |last=Jenkins |first=Chris |date=December 26, 2008 |title=Packers' Rodgers learns lessons from trying season |url=http://seattletimes.nwsource.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-url=https://web.archive.org/web/20150226064522/http://old.seattletimes.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-date=February 26, 2015 |access-date=May 13, 2012 |website=The Seattle Times}}</ref> Despite early successes, Rodgers be unable to win a close game during de season despite seven opportunities to do so.<ref name="Rodgers" /><ref name="Bears cap unlikely rally with OT win to stay alive in playoff race">{{Cite web |date=December 23, 2008 |title=Bears cap unlikely rally with OT win to stay alive in playoff race |url=http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081225222724/http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |archive-date=December 25, 2008 |access-date=December 23, 2008 |publisher=National Football League |agency=Associated Press}}</ref>
On {{nowrap|October 31, 2008}}, Rodgers sign a six-year, {{nowrap|$65 million}} contract extension thru de 2014 season.<ref name="Packers Sign Rodgers Through 2014">{{Cite web |date=October 31, 2008 |title=Packers sign QB Rodgers to $65M extension through 2014 |url=https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |url-status=live |archive-url=https://web.archive.org/web/20201204181536/https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |archive-date=December 4, 2020 |access-date=April 27, 2022 |publisher=National Football League |language=en-US |agency=Associated Press}}</ref><ref name="Contracts: Rodgers vs. Romo">{{Cite web |last=Silverstein |first=Tom |date=November 5, 2008 |title=Contracts: Rodgers vs. Romo |url=http://www.jsonline.com/sports/packers/33941369.html |url-status=live |archive-url=https://web.archive.org/web/20081205152249/http://www.jsonline.com/sports/packers/33941369.html |archive-date=December 5, 2008 |access-date=November 6, 2008 |website=JSOnline |publisher=Milwaukee Journal-Sentinel}}</ref> Insyd Rodgers ein first full season plus de team, de Packers fini plus a 6–10 record wey dem miss de playoffs.<ref>{{Cite web |title=2008 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2008.htm |url-status=live |archive-url=https://web.archive.org/web/20180907044946/https://www.pro-football-reference.com/teams/gnb/2008.htm |archive-date=September 7, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2009 ====
For de opening game of de 2009 season, Rodgers record ein first win insyd a comeback situation. Na de Packers dey trail at de beginning of de fourth quarter wen Rodgers plete a fifty-yard touchdown pass to wide receiver [[Greg Jennings]] plus about a minute remaining insyd de game to contribute to de 21–15 victory over de Chicago Bears.<ref>{{Cite web |last=Jenkins |first=Chris |date=December 8, 2019 |title=Rodgers brings Pack back for 21–15 win over Bears |url=https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |url-status=dead |archive-url=https://web.archive.org/web/20191208022530/https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Holland Sentinel}}</ref>
Na dem name Rodgers NFC Offensive Player of de Month for {{nowrap|October 2009}}, wen he pass for 988 yards, he plete 74.5 percent of ein passes, wey he record a passer rating over 110 for all three games he play during de month.<ref name="Rodgers, Sharper, Knox win NFC player of month honors">{{Cite web |last=Rosenthal |first=Gregg |date=October 29, 2009 |title=Rodgers, Sharper, Knox win NFC player of month honors |url=http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |url-status=live |archive-url=https://web.archive.org/web/20140112100938/http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |archive-date=January 12, 2014 |access-date=May 13, 2012 |website=ProFootballTalk.com}}</ref>
After a 4–4 start to de season den a 38–28 loss to de previously winless Buccaneers,<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – November 8th, 2009 |url=https://www.pro-football-reference.com/boxscores/200911080tam.htm |url-status=live |archive-url=https://web.archive.org/web/20171108032603/https://www.pro-football-reference.com/boxscores/200911080tam.htm |archive-date=November 8, 2017 |access-date=November 4, 2017 |website=[[Pro Football Reference]]}}</ref> de team begin to heat up. Rodgers lead de Packers to five straight wins, insyd wich he throw for a total of 1,324 yards, nine touchdowns, den two interceptions.<ref>{{Cite web |title=Aaron Rodgers – Games 9–13 in 2009 |url=http://pfref.com/tiny/3NZjQ |url-status=live |archive-url=https://web.archive.org/web/20211201192346/https://stathead.com/tools/tiny.fcgi?id=3NZjQ |archive-date=December 1, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers win two of dema last three games, finishing de second half of de season plus a 7–1 record den an overall 11–5 record; good enough to secure a wild card playoff berth wey dem clinch de fifth seed insyd de playoffs.<ref>{{Cite web |title=Aaron Rodgers 2009 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180101211154/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2009 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2009.htm |url-status=live |archive-url=https://web.archive.org/web/20171115032207/https://www.pro-football-reference.com/teams/gnb/2009.htm |archive-date=November 15, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers set a new franchise record by scoring 461 total points (third insyd de league), breaking de previous record wey de 1996 Super Bowl team (456) hold.<ref>{{Cite web |title=2009 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180504033136/https://www.pro-football-reference.com/years/2009/ |archive-date=May 4, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=1996 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/1996/ |url-status=live |archive-url=https://web.archive.org/web/20100211094812/http://www.pro-football-reference.com/years/1996/ |archive-date=February 11, 2010 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers cam be de first quarterback insyd NFL history ever to throw for 4,000 yards insyd both of ein first two years as a starter.<ref name="Rodgers Proscout.com">{{Cite web |last=Huber |first=Bill |date=May 9, 2012 |title=Wisconsin Makes 12–12–12 'Aaron Rodgers Day' |url=http://gnb.scout.com/2/1185173.html |url-status=dead |archive-url=https://web.archive.org/web/20130701070113/http://gnb.scout.com/2/1185173.html |archive-date=July 1, 2013 |access-date=May 13, 2012 |work=Fox Sports}}</ref> He fini de season fourth insyd passing yards (4,434), touchdown passes (30), passer rating (103.2), den yards per attempt (8.2) as well as eighth insyd completion percentage (64.7%), while he sanso cam second among quarterbacks insyd rushing yards (316).<ref>{{Cite web |title=Quarterbacks by rushing yards, 2009 season |url=http://pfref.com/tiny/dkEhS |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=dkEhS |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Ein passing yardage make am second all-time insyd Packers history, behind only [[Lynn Dickey]] ein all-time single-season record.<ref>{{Cite web |title=Individual Records – Passing |url=http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |url-status=live |archive-url=https://web.archive.org/web/20210126102232/http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |archive-date=January 26, 2021 |access-date=January 8, 2011 |publisher=Packers.com}}</ref> Na ein passer rating of 103.2 sanso be third-highest insyd team history at de time, behind only [[Bart Starr]] ein 105.0 rating insyd 1966 den 104.3 rating insyd 1968 (minimum 150 attempts).<ref>{{Cite web |title=Green Bay Packers, 1950–2009, highest passer rating. |url=http://pfref.com/tiny/a4QtT |url-status=live |archive-url=https://web.archive.org/web/20211201192343/https://stathead.com/tools/tiny.fcgi?id=a4QtT |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref>
[[File:Aaron_Rodgers_-_December_27,_2009_2.jpg|thumb|Rodgers insyd 2009, before a snap]]
Insyd de Wild Card Round, de Packers play de Arizona Cardinals, de same team wey na dem previously beat de week before, 33–7.<ref>{{Cite web |last=Baum |first=Bob |date=January 4, 2010 |title=Rodgers shreds Cardinals backups in 33–7 rout |url=https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208022718/https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Rodgers den Cardinals quarterback [[Kurt Warner]] put on a show wey dem later rank second on NFL Network ein ''Top 10 Quarterback Duels''.<ref>{{Cite web |title=Top Ten Quarterback Duels |url=http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |url-status=live |archive-url=https://web.archive.org/web/20180101135801/http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |archive-date=January 1, 2018 |access-date=January 1, 2018 |publisher=National Football League}}</ref> Na Rodgers ein first pass be intercepted by [[Dominique Rodgers-Cromartie]].<ref>{{Cite web |title=Wild Card – Green Bay Packers at Arizona Cardinals – January 10th, 2010 |url=https://www.pro-football-reference.com/boxscores/201001100crd.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003908/https://www.pro-football-reference.com/boxscores/201001100crd.htm |archive-date=August 21, 2017 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Rodgers settle down after dat miscue, however, wey he fini de game completing 28 of 42 passes for 423 yards, plus four touchdown passes all insyd a second-half comeback. Ein 423 passing yards be de most by any quarterback insyd ein first playoff game as well as ein four touchdown passes den five total touchdowns.<ref>{{Cite book |last=Cohen |first=Robert W. |url=https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |title=The 50 Greatest Players in Green Bay Packers History |date=September 1, 2018 |publisher=Rowman & Littlefield |isbn=9781493031894 |language=en |access-date=September 13, 2019 |archive-url=https://web.archive.org/web/20210203205326/https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |archive-date=February 3, 2021 |url-status=live}}</ref> Warner shred de Packers dema second-ranked defense, completing 29 of 33 passes for 379 yards, five touchdowns, no interceptions, den a passer rating of 154.1. Despite Rodgers ein offensive efforts, de Packers loose de game wen he fumble on a controversial play insyd overtime. Na dem return de ball by [[Karlos Dansby]] for de winning touchdown insyd de 51–45 Cardinals victory.<ref>{{Cite news|last=Crouse|first=Karen|date=January 10, 2010|title=Cardinals' Defense Ends Shootout With Packers in Overtime|work=The New York Times|url=https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20190824010502/https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|archive-date=August 24, 2019}}</ref> Na e be de highest scoring playoff game insyd NFL history.<ref>{{Cite web |date=January 10, 2015 |title=Remembering The Day of the Highest Scoring Playoff Game in NFL History |url=http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |url-status=live |archive-url=https://web.archive.org/web/20191208022939/http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=ThePostGame.com}}</ref>
Secof ein regular season performance, Rodgers earn a trip to ein first Pro Bowl as de NFC ein third quarterback, behind [[Drew Brees]] den Brett Favre. However, after Favre drop out secof injury wey Brees replace am secof ein participation insyd Super Bowl XLIV, Rodgers cam be de NFC ein starter.<ref>{{Cite web |title=2009 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2009/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180821031640/https://www.pro-football-reference.com/years/2009/probowl.htm |archive-date=August 21, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2010: Super Bowl XLV season ====
Insyd 2010, Rodgers lead de Packers to a 2–0 start, buh then dem loose three of dema next four games, wey dey include back-to-back overtime losses. De two overtime defeats bring Rodgers ein record insyd overtime games to 0–5.<ref>{{Cite web |title=2010 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2010.htm |url-status=live |archive-url=https://web.archive.org/web/20180313175307/https://www.pro-football-reference.com/teams/gnb/2010.htm |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
At midseason, Rodgers already throw nine interceptions dem compare to only throwing seven all of de previous season, wey na he be 16th insyd de league plus an 85.3 passer rating.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 1–8 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Over de remainder of de regular season, however, ein play improve as he throw 16 touchdowns to only two interceptions, he plete 71.4% of ein passes, wey he get a passer rating of 122.0.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 9–16 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref>
Insyd {{nowrap|Week 13}}, insyd a 34–16 victory over de San Francisco 49ers, Rodgers get 298 passing yards den three touchdowns to earn ein first career NFC Offensive Player of de Week honor.<ref>{{Cite web |title=AP Game Story: Packers Topple 49ers, 34–16 |url=https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |url-status=live |archive-url=https://web.archive.org/web/20191208221408/https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=packers.com}}</ref><ref>{{Cite web |title=2010 NFL Week 13 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_13.htm |url-status=live |archive-url=https://web.archive.org/web/20180319084545/https://www.pro-football-reference.com/years/2010/week_13.htm |archive-date=March 19, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd {{nowrap|Week 14}}, he sustain ein second concussion of de season. Na dem put backup [[Matt Flynn (American football)|Matt Flynn]] into de game as Rodgers ein replacement. De Packers loose de game 7–3 to de Lions.<ref>{{Cite web |last=Lage |first=Larry |date=December 12, 2010 |title=Rodgers suffers concussion in Packers' 7–3 loss to Lions |url=https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |url-status=live |archive-url=https://web.archive.org/web/20191208023253/https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The Journal Times |agency=Associated Press}}</ref> Against de Patriots, Rodgers miss de next week ein regular season start, ending ein streak of consecutive starts at 45, wich be tied for de second longest insyd team history.<ref name="Green Bay Packers QB Matt Flynn has fine 1st road start">{{Cite web |author=<!-- not stated --> |date=June 16, 2015 |title=Matt Flynn has plenty to learn at minicamp as new Patriots backup QB |url=https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |url-status=live |archive-url=https://web.archive.org/web/20211206085002/https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |archive-date=December 6, 2021 |access-date=March 3, 2026 |website=Fox Sports |publisher= |location=}}</ref>
After dema road loss to de Patriots, de Packers find demaselves at 8–6 wey dem for win dema final two regular season games to qualify for de playoffs. Rodgers turn around de team ein performance; dem win dema final two regular season games, one of dem against de New York Giants, wer Rodgers plete 25 of 37 passes for 404 yards, plus four touchdown passes, den plus a passer rating of 139.9.<ref>{{Cite news|date=December 26, 2010|title=NFL: Rodgers, Packers hammer Giants|url=https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|url-status=live|archive-url=https://web.archive.org/web/20191208023159/https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|archive-date=December 8, 2019|access-date=December 8, 2019|website=New Haven Register|agency=Associated Press}}</ref> Na e be ein first regular season 400-yard passing game. For ein effort against de Giants, he earn ein second NFC Offensive Player of de Week honor for de 2010 season.<ref>{{Cite web |title=2010 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002511/https://www.pro-football-reference.com/years/2010/week_16.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de next game, dem defeat de Bears by a score of 10–3 insyd de regular season finale.<ref name="Packers 10, Bears 3: Nothing Comes Easy">{{Cite web |last=Wilde |first=Jason |date=January 2, 2011 |title=Packers 10, Bears 3: Nothing Comes Easy |url=http://www.channel3000.com/sports/26347682/detail.html |url-status=dead |archive-url=https://web.archive.org/web/20110208054239/http://www.channel3000.com/sports/26347682/detail.html |archive-date=February 8, 2011 |access-date=January 24, 2011 |website=Channel3000.com}}</ref>
Na dem name Rodgers de FedEx Air NFL Player of de Year for ein passing performance insyd de 2010 season.<ref>{{Cite web |title=Aaron Rodgers voted FedEx Air NFL Player of the Year |url=http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |url-status=dead |archive-url=https://web.archive.org/web/20110225154931/http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |archive-date=February 25, 2011 |access-date=February 2, 2011 |publisher=Packers.com}}</ref>
[[File:Aaron_Rodgers_-_January_2,_2011_4.jpg|right|thumb|Rodgers dey greet de fans insyd Lambeau Field during de 2010 season ein finale against de Bears]]
Plus a 10–6 record, de Packers enter de playoffs as a Wild Card den de {{nowrap|No. 6}} seed. Insyd de Wild Card Round, dem defeat de {{nowrap|No. 3}} seeded Eagles 21–16.<ref>{{Cite web |date=January 9, 2011 |title=Rodgers, Packers Beat Eagles 21–16 |url=https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |url-status=live |archive-url=https://web.archive.org/web/20191208023430/https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=CBS – New York}}</ref> Insyd de Divisional Round, Rodgers plete 31 of 36 pass attempts for 366 yards den four touchdowns insyd a 48–21 blowout victory over de {{nowrap|No. 1}} seeded Atlanta Falcons.<ref>{{Cite news|last=Newberry|first=Paul|date=January 16, 2011|title=Rodgers stars in Green Bay's 48–21 rout of Falcons|publisher=AP via Yahoo Sports|url=https://sports.yahoo.com/nfl/recap?gid=20110115001|url-status=live|access-date=January 24, 2011|archive-url=https://web.archive.org/web/20110119180042/https://sports.yahoo.com/nfl/recap?gid=20110115001|archive-date=January 19, 2011}}</ref> Na e be de most points dem score insyd Packers postseason history.<ref>{{Cite web |title=Green Bay Packers Playoff History |url=https://www.pro-football-reference.com/teams/gnb/playoffs.htm |url-status=live |archive-url=https://web.archive.org/web/20161220082023/http://www.pro-football-reference.com/teams/gnb/playoffs.htm |archive-date=December 20, 2016 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> During de contest, Rodgers tie an NFL record for consecutive playoff games plus at least three touchdown passes (3 games). Rodgers sanso set an NFL record by becoming de only quarterback to pass for ten touchdowns dem combine thru three consecutive playoff games. On {{nowrap|January 23, 2011,}} Rodgers get a 55.4 passer rating as de Packers beat de {{nowrap|No. 2}} seed Chicago Bears 21–14 win insyd de NFC Championship.<ref>{{Cite news|date=January 23, 2011|title=NFC championship: Aaron Rodgers leads Packers past Bears 21–14|work=East Bay Times|agency=Associated Press|url=https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20200724211418/https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|archive-date=July 24, 2020}}</ref>
After winning de NFC Championship, de Packers earn a trip to Super Bowl XLV against de Pittsburgh Steelers. Insyd de game, Rodgers plete 24 of 39 pass attempts for 304 yards den three touchdowns insyd de 31–25 win, wey na dem name am Super Bowl MVP for ein performance.<ref name="Layden2011">{{Cite magazine|last=Layden|first=Tim|date=February 14, 2011|title=Green And Golden: Behind the poise and precision of quarterback Aaron Rodgers and the gutsy contributions of a host of role players, the Packers burnished their championship legacy with a memorable 31—25 victory over Pittsburgh in Super Bowl XLV|url=http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|url-status=dead|archive-url=https://web.archive.org/web/20131029203436/http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|archive-date=October 29, 2013|access-date=February 11, 2011|magazine=Sports Illustrated}}</ref><ref>{{Cite web |date=February 6, 2011 |title=Aaron Rodgers tosses 3 TD passes as Packers drop Steelers to win Super Bowl XLV |url=http://espn.go.com/nfl/recap?gameId=310206009 |url-status=dead |archive-url=https://web.archive.org/web/20110225151826/http://espn.go.com/nfl/recap?gameId=310206009 |archive-date=February 25, 2011 |access-date=February 7, 2011 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Dis ultimately go be ein only Super Bowl appearance plus de Packers.
From ein playoff performance, Rodgers cam be only se third player insyd NFL history to pass for over 1,000 yards insyd a single postseason wey he sanso cam be one of only four quarterbacks to record over 300 yards passing, plus at least three touchdown passes, den no interceptions insyd a Super Bowl.<ref>{{Cite web |title=Super Bowl, 300+ pass yds, 3+ TD, 0 Int |url=http://pfref.com/tiny/1posa |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=1posa |archive-date=December 1, 2021 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> He fini plus 1,094 passing yards, nine touchdown passes, two rushing touchdowns, den two interceptions, while completing 68.2% of ein passes for a passer rating of 109.8.<ref>{{Cite web |title=Aaron Rodgers Career Playoff Stats |url=https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |url-status=live |archive-url=https://web.archive.org/web/20220427191344/https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |archive-date=April 27, 2022 |access-date=April 27, 2022 |website=StatMuse |language=en}}</ref> From dis postseason, Rodgers sanso cam be de only player to pass for at least 900 yards den rush for at least two touchdowns insyd a single postseason.<ref>{{Cite web |title=Playoffs, 900+ pass yds, 2 rush TDs |url=https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |url-status=live |archive-url=https://web.archive.org/web/20200728195759/https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |archive-date=July 28, 2020 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Na dem rank am 11th by ein fellow players on de ''NFL Top 100'' Players of 2011.<ref>{{Cite web |title=2011 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20210308170627/https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |archive-date=March 8, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2011: First MVP ====
[[File:Aaron_Rodgers_drops_back_(cropped).jpg|thumb|Rodgers dey drop back for a pass insyd 2011.]]
Secof de 2011 NFL lockout, de Packers den Rodgers no schedule unofficial off-season workouts, despite chaw teams doing so.<ref name="allgbp">{{Cite web |last=Burke |first=Kris |date=July 2, 2011 |title=No Workouts? No Problem for the Packers |url=http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-url=https://web.archive.org/web/20161229101517/http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=All Green Bay Packers}}</ref> Rodgers den de Packers quickly quel any concerns over dema readiness by defeating de Saints, wey schedule off-season workouts, 42–34. He get 312 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 8, 2011 |title=Rodgers throws 3 TDs, Packers outlast Saints 42–34 |url=https://www.dailyherald.com/article/20110908/sports/709089632/ |url-status=live |archive-url=https://web.archive.org/web/20191208023757/https://www.dailyherald.com/article/20110908/sports/709089632/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Daily Herald |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 1 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_1.htm |url-status=live |archive-url=https://web.archive.org/web/20180830192658/https://www.pro-football-reference.com/years/2011/week_1.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> After de game, Rodgers say insyd de press conference, ''"I was going to ask myself, what would have happened if we had offseason workouts? I mean, could we have started any faster and scored more points tonight?"''<ref>{{Cite web |last=Darlington |first=Jeff |date=May 25, 2016 |title=Drew Brees' absence no big deal, but July 16 deadline looms |url=https://www.nfl.com/news/drew-brees-absence-no-big-deal-but-july-16-deadline-looms-09000d5d82956d8b |url-status=live |archive-url=https://web.archive.org/web/20161208145630/http://www.nfl.com/news/story/09000d5d82956d8b/article/drew-brees-absence-no-big-deal-but-july-16-deadline-looms |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref>
Insyd Week 4, a 49–23 victory over de Denver Broncos, Rodgers get 408 passing yards, four touchdowns, den one interception wey he run for two touchdowns to earn anoda NFC Offensive Player of de Week honor.<ref>{{Cite web |date=October 2, 2011 |title=Rodgers' big day helps Packers beat Broncos 49–23 |url=https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |url-status=live |archive-url=https://web.archive.org/web/20191208025355/https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Duluth News Tribune}}</ref><ref>{{Cite web |title=2011 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180401100045/https://www.pro-football-reference.com/years/2011/week_4.htm |archive-date=April 1, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, a 24–3 victory over de St. Louis Rams, Rodgers convert on a career-high 93-yard touchdown pass to [[Jordy Nelson]].<ref>{{Cite web |last=Jenkins |first=Chris |date=October 16, 2011 |title=Packers stay perfect at 6–0, beat Rams 24–3 |url=http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |url-status=live |archive-url=https://web.archive.org/web/20181211010230/http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |archive-date=December 11, 2018 |access-date=December 10, 2018 |website=The Salt Lake Tribune}}</ref> Insyd Week 9, a 45–38 victory over de Chargers, he get 247 passing yards den four touchdowns to earn ein third NFC Offensive Player of de Week honor for de 2011 season.<ref>{{Cite web |date=November 6, 2011 |title=Packers survive Chargers' late push as Aaron Rodgers delivers again |url=https://www.espn.com/nfl/game?gameId=311106024 |url-status=live |archive-url=https://web.archive.org/web/20191210232803/https://www.espn.com/nfl/game?gameId=311106024 |archive-date=December 10, 2019 |access-date=December 8, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 9 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_9.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231451/https://www.pro-football-reference.com/years/2011/week_9.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers get off to a 13–0 start insyd 2011, tying de NFC record for most consecutive wins to start a season, buh na dem be upset by de Kansas City Chiefs 19–14 insyd week 15, ending dema winning streak at 19 games, de second-longest winning streak insyd NFL history.<ref>{{Cite web |title=Green Bay Packers at Kansas City Chiefs – December 18th, 2011 |url=https://www.pro-football-reference.com/boxscores/201112180kan.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211142/https://www.pro-football-reference.com/boxscores/201112180kan.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2011.htm |url-status=live |archive-url=https://web.archive.org/web/20171115033715/https://www.pro-football-reference.com/teams/gnb/2011.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de season plus 4,643 passing yards, 45 touchdown passes, den six interceptions, good for a passer rating of 122.5, wich as of 2024 be de highest single-season passer rating insyd NFL history.<ref>{{Cite web |title=Aaron Rodgers 2011 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |url-status=live |archive-url=https://web.archive.org/web/20180101135748/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Ein passing yards, touchdown passes, den passer rating set single-season franchise records.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to passer rating, Rodgers lead de league insyd touchdown to interception ratio (7.5, fourth-best all-time), touchdowns passing % (9.0%, second highest all-time), den yards per attempt (9.2, fourth-highest all-time since becoming an official stat insyd 1970), while finishing second insyd both touchdown passes (45, sixth-highest all-time) den completion percentage (68.3%), as well as fifth insyd passing yards. He earn NFC Offensive Player of de Month awards for September, October, den November, den FedEx Air Player of de Week six times (Weeks 4, 5, 6, 7, 9, den 13). Insyd week four, against de Denver Broncos, Rodgers cam be de only quarterback insyd NFL history to record over 400 passing yards plus four touchdown passes, while sanso dey rush for two touchdowns insyd de same game.<ref>{{Cite web |title=List of players with at least 400 passing yards, four passing touchdowns, and two rushing touchdowns in a single game. NFL history |url=http://pfref.com/tiny/Io0Od |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=Io0Od |archive-date=December 1, 2021 |access-date=December 6, 2016 |website=[[Pro Football Reference]]}}</ref> Na he de winner of de 2011 Galloping gobbler as MVP of de Thanksgiving game between de Packers den de Lions, a 27–15 Green Bay victory, wey he tie an NFL record for consecutive games plus at least two touchdown passes (13).
De Packers cam be de fifth team insyd NFL history to finish de regular season plus a 15–1 record.<ref>{{Cite web |last=Kruse |first=Zach |date=January 2, 2012 |title=Green Bay Packers Are 5th 15–1 Team in NFL History: How Did the First 4 Finish? |url=https://bleacherreport.com/articles/1007036-green-bay-packers-are-5th-15-1-team-in-nfl-history-how-did-the-first-4-finish |access-date=May 30, 2024 |website=Bleacher Report |language=en}}</ref> Rodgers play insyd 15 of de 16 games, plus de only exception be Week 17 against de Lions, a game insyd wich Rodgers be rested after de club clinched home-field advantage for de playoffs de previous week. Insyd de game, Rodgers assist backup quarterback Matt Flynn insyd ein stellar 480-yard, six-touchdown performance by helping call some plays.<ref>{{Cite web |last=Samano |first=Simon |date=January 1, 2012 |title=Rodgers preps Flynn, calls plays during backup QB's big day |url=https://www.nfl.com/news/rodgers-preps-flynn-calls-plays-during-backup-qb-s-big-day-09000d5d825a02db |url-status=live |archive-url=https://web.archive.org/web/20190829082359/http://www.nfl.com/news/story/09000d5d825a02db/article/rodgers-preps-flynn-calls-plays-during-backup-qbs-big-day |archive-date=August 29, 2019 |access-date=September 13, 2019 |publisher=National Football League}}</ref> De Packers dema offense set franchise record for points scored insyd a season plus 560, wich as of 2016 be de third-most ever behind only de 2007 Patriots den 2013 Broncos.<ref>{{Cite web |title=All Time Most Points Scored by an NFL Team in a Season |url=https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-url=https://web.archive.org/web/20130802114230/https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-date=August 2, 2013 |access-date=December 6, 2016 |website=Sporting Charts}}</ref>
Rodgers set numerous NFL records insyd 2011. He record a passer rating of over 100.0 insyd thirteen games during de season, wey dey include twelve games in a row (both records), den a passer rating of 110.0 anaa higher insyd twelve games, wey dey include eleven in a row (sanso be records). Rodgers sanso win de league ein MVP award, receiving 48 of de 50 votes (de oda two dey go to [[Drew Brees]]). He sanso fini second, behind Brees, for de AP Offensive Player of de Year award.<ref>{{Cite web |date=February 4, 2012 |title=Saints' Brees wins AP Offensive Player of the Year award |url=https://www.nfl.com/news/saints-brees-wins-ap-offensive-player-of-the-year-award-09000d5d8269e4fe |url-status=live |archive-url=https://web.archive.org/web/20161208145625/http://www.nfl.com/news/story/09000d5d8269e4fe/article/saints-brees-wins-ap-offensive-player-of-the-year-award |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League |agency=Associated Press}}</ref> Rodgers ein 2011 season later be ranked as de third greatest passing season of all time by ESPN insyd 2013, wey na he be regarded as de most efficient.<ref name="Efficient QBS">{{Cite web |last=Seifert |first=Kevin |date=October 3, 2013 |title=Top 10 greatest quarterback seasons |url=https://www.espn.com/blog/nflnation/post/_/id/90974/ |url-status=live |archive-url=https://web.archive.org/web/20141103072453/http://espn.go.com/blog/nflnation/post/_/id/90974/ |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref>
Na de Packers be upset by de eventual Super Bowl champion New York Giants insyd de Divisional Round by de score of 37–20. De Packers dema receiving corps drop six passes insyd de loss wey Rodgers fini de game plus 264 passing yards, two touchdown passes, den an interception on ein last pass attempt.<ref>{{Cite news|last=Wang|first=Gene|date=January 15, 2012|title=NFL playoffs 2012: New York Giants stun Green Bay Packers, 37–20|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|url-status=live|access-date=December 8, 2019|archive-url=https://web.archive.org/web/20180906090329/https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|archive-date=September 6, 2018}}</ref> De 2011 Packers cam be de only team insyd NFL history to go 15–1 wey dem no win a playoff game, as well as dem be de fourth consecutive team to win at least 15 games wey dem no win de Super Bowl.<ref>{{Cite web |last=Emery |first=Mark |date=January 26, 2016 |title=As Carolina Panthers prepare for Super Bowl 50, a look at the fates of six previous teams that won at least 15 in regular season |url=http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |url-status=live |archive-url=https://web.archive.org/web/20161214152104/http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |archive-date=December 14, 2016 |access-date=December 12, 2016 |website=Daily News |location=New York}}</ref> Na dem name Rodgers to de Pro Bowl for ein 2011 season to go along plus a First-team All-Pro honor.<ref>{{Cite web |title=2011 NFL All-Pros |url=https://www.pro-football-reference.com/years/2011/allpro.htm |url-status=live |archive-url=https://web.archive.org/web/20180830185703/https://www.pro-football-reference.com/years/2011/allpro.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2011/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180830174119/https://www.pro-football-reference.com/years/2011/probowl.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> He be voted by ein fellow players as de best player insyd de league on de ''NFL Top 100'' Players of 2012.<ref>{{Cite web |title=2012 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190322201849/https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |archive-date=March 22, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2012 ====
Rodgers den de Packers start off de 2012 season plus a 30–22 loss to de 49ers.<ref>{{Cite web |last=Jenkins |first=Chris |date=September 10, 2012 |title=49ers stop Rodgers' rally, beat Packers 30–22 |url=https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025344/https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Plus de loss, Rodgers loose ein bet plus de music group Boyz II Men, wey he for wear an Alex Smith jersey during de next week of practice.<ref name="boyz">{{Cite web |last=Hanzus |first=Dan |date=September 8, 2012 |title=Aaron Rodgers' head-scratching bet with Boyz II Men |url=https://www.nfl.com/news/aaron-rodgers-head-scratching-bet-with-boyz-ii-men-0ap1000000059772 |url-status=live |archive-url=https://web.archive.org/web/20161220224204/http://www.nfl.com/news/story/0ap1000000059772/article/aaron-rodgers-headscratching-bet-with-boyz-ii-men |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Had de Packers win de game, Boyz II Men go sing de national anthem during dema next home game at Lambeau.<ref name="boyz" />
Insyd Week 4, a 28–27 victory over de Saints, Rodgers get 319 passing yards, four touchdowns, den one interception to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 28, 2012 |title=Rodgers throws late TD, Packers beat Saints 28–27 |url=https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |url-status=live |archive-url=https://web.archive.org/web/20191208025349/https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Twin Cities Pioneer Press}}</ref><ref>{{Cite web |title=2012 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020203/https://www.pro-football-reference.com/years/2012/week_4.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de undefeated Houston Texans, he tie de franchise record by throwing six touchdown passes, insyd a 42–24 victory, to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Houston Texans – October 14th, 2012 |url=https://www.pro-football-reference.com/boxscores/201210140htx.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081312/https://www.pro-football-reference.com/boxscores/201210140htx.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2012 NFL Week 6 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_6.htm |url-status=live |archive-url=https://web.archive.org/web/20210308120125/https://www.pro-football-reference.com/years/2012/week_6.htm |archive-date=March 8, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> De Texans allow only six total touchdown passes during de season up to dat point.<ref>{{Cite web |title=2012 Houston Texans, opponent TD log |url=https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |url-status=live |archive-url=https://web.archive.org/web/20180724093239/https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |archive-date=July 24, 2018 |access-date=December 31, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dis spark a five-game winning streak wich Rodgers plete 65.7% of ein passes for 1,320 yards, 17 touchdowns, two interceptions, den a passer rating of 119.1.<ref>{{Cite web |title=Rodgers, 2012, games 6–10 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227055845/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> During dat stretch, na dem name Rodgers NFC Offensive Player of de Month for October.<ref>{{Cite web |date=March 27, 2015 |title=Packers QB Rodgers leads group of NFC's best for October |url=https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |url-status=live |archive-url=https://web.archive.org/web/20200724202413/https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |archive-date=July 24, 2020 |access-date=September 13, 2019 |publisher=Fox News}}</ref> Insyd Week 15, Rodgers throw for 291 yards den three touchdowns to lead de Packers past de Bears, 21–13, making dem NFC North champions for de second consecutive year.<ref>{{Cite web |date=December 16, 2012 |title=Packers bounce Bears to clinch NFC North |url=https://www.wtsp.com/article/sports/nfl/packers-bounce-bears-to-clinch-nfc-north/67-376020825 |access-date=December 8, 2019 |publisher=WTSP}}</ref> Insyd de season finale, despite Rodgers go 28 of 40 for 365 yards, four touchdowns, no interceptions den a passer rating of 131.8, de Packers loose 37–34 against de Vikings.<ref>{{Cite web |date=December 30, 2012 |title=Vikings beat Packers 37–34, earn playoff berth |url=https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |url-status=live |archive-url=https://web.archive.org/web/20191208025350/https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=HeraldNet.com |agency=Associated Press}}</ref> Dis end de Packers dema twelve-game winning streak against NFC North opponents.
De Packers fini plus an 11–5 record, first insyd de NFC North, wey dem clinch de #3-seed insyd de NFC playoffs.<ref>{{Cite web |title=2012 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2012 |url-status=live |archive-url=https://web.archive.org/web/20180127072019/https://www.pro-football-reference.com/years/2012/ |archive-date=January 27, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers lead de league for de second straight year insyd passer rating (108.0) touchdowns passing % (7.1%), den touchdown-to-interception ratio (4.875), while finishing second insyd touchdown passes (39), third insyd completion percentage (67.2%), fifth insyd yards per attempt (7.78), den eighth insyd passing yards (4,295).<ref>{{Cite web |title=Aaron Rodgers 2012 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |url-status=live |archive-url=https://web.archive.org/web/20180101135930/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd de playoffs, de Packers defeat de Minnesota Vikings 24–10 insyd de Wild Card Round. Rodgers plete 23 of 33 passes to ten different players for 274 yards den a touchdown.<ref>{{Cite web |date=January 5, 2013 |title=Ponder-less Vikings fall to Packers in wild-card game |url=https://www.nfl.com/news/ponder-less-vikings-fall-to-packers-in-wild-card-game-0ap1000000122612 |url-status=live |archive-url=https://web.archive.org/web/20191208025349/http://www.nfl.com/news/story/0ap1000000122612/printable/ponderless-vikings-fall-to-packers-in-wildcard-game |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=NFL.com}}</ref> De 49ers beat dema 45–31 insyd de Divisional Round.<ref>{{Cite web |last=Farmer |first=Sam |date=January 13, 2013 |title=NFC playoffs: 49ers topple Packers 45–31 |url=https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025348/https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Chicago Tribune}}</ref> Rodgers plete 26 of 39 passes for 257 yards, two touchdowns, den an interception, while sanso dey rush for 28 yards, insyd de losing effort. He earn ein third career Pro Bowl nomination for ein performance insyd de 2012 season.<ref>{{Cite web |title=2012 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2012/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180316023449/https://www.pro-football-reference.com/years/2012/probowl.htm |archive-date=March 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2013.<ref>{{Cite web |title=2013 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200406154219/https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |archive-date=April 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2013 ====
On April 26, 2013, de Packers den Rodgers agree to a 5-year, $110 million contract extension wey dey make am de highest paid player insyd NFL history.<ref>{{Cite web |last1=Schefter |first1=Adam |last2=Mortensen |first2=Chris |date=April 26, 2013 |title=Source: Rodgers agrees to $110M extension |url=https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |url-status=live |archive-url=https://web.archive.org/web/20210414204446/https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |archive-date=April 14, 2021 |access-date=April 14, 2021 |website=[[ESPN.com]] |agency=Associated Press}}</ref> De Packers begin dema 2013 season against de reigning NFC champions, de 49ers, de team wey sanso end dema playoff run de previous season. Rodgers go 21 for 37 insyd completions, 333 yards, three touchdowns den an interception insyd de 34–28 loss.<ref>{{Cite web |title=Green Bay Packers at San Francisco 49ers – September 8th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309080sfo.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080800/https://www.pro-football-reference.com/boxscores/201309080sfo.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers get a career-high 480 passing yards to tie de franchise record insyd de 38–20 home-opener win against de Washington Redskins. He earn NFC Offensive Player of de Week for ein effort against de Redskins.<ref>{{Cite web |title=Washington Redskins at Green Bay Packers – September 15th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309150gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081525/https://www.pro-football-reference.com/boxscores/201309150gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2013 NFL Week 2 Leaders & Scores |url=https://www.pro-football-reference.com/years/2013/week_2.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020211/https://www.pro-football-reference.com/years/2013/week_2.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 335 passing yards insyd de first half set a club record.<ref name="w930">{{cite web |last=Huber |first=Bill |date=September 15, 2013 |title=Monster Half Propels Rodgers to Record Day |url=https://247sports.com/nfl/green-bay-packers/Article/monster-half-propels-rodgers-to-record-day-105030089/ |access-date=October 23, 2024 |website=247Sports}}</ref> He sanso cam be de first quarterback since [[Y. A. Tittle]] insyd 1962 to throw for at least 480 yards, four touchdowns den no interceptions insyd a game.<ref>{{Cite web |title=480+ passing yards, 4+ passing touchdowns, no interceptions, NFL history |url=http://pfref.com/tiny/rQ3Cc |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=rQ3Cc |archive-date=December 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers see ein NFL record of 41 consecutive games widout throwing multiple interceptions come to an end insyd a loss to de Cincinnati Bengals by de score of 34–30.<ref>{{Cite web |last=White |first=Scott |date=September 22, 2013 |title=Aaron Rodgers doesn't play usual mistake-free football |url=https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |url-status=live |archive-url=https://web.archive.org/web/20201025173245/https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |archive-date=October 25, 2020 |access-date=September 13, 2019 |website=CBS Sports}}</ref><ref>{{Cite web |title=Green Bay Packers at Cincinnati Bengals – September 22nd, 2013 |url=https://www.pro-football-reference.com/boxscores/201309220cin.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081320/https://www.pro-football-reference.com/boxscores/201309220cin.htm |archive-date=August 29, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
After de loss to de Bengals, de Packers start rolling, winning dema next four games. Against de Ravens, de Packers loose two receivers: [[Randall Cobb (American football)|Randall Cobb]] den [[James Jones (wide receiver)|James Jones]]. Na Cobb be sidelined plus a broken leg den Jones plus a sprained PCL.<ref>{{Cite web |title=Green Bay Packers' Randall Cobb, James Jones injured |url=https://www.nfl.com/news/green-bay-packers-randall-cobb-james-jones-injured-0ap2000000261308 |url-status=live |archive-url=https://web.archive.org/web/20170722195052/http://www.nfl.com/news/story/0ap2000000261308/article/green-bay-packers-randall-cobb-james-jones-injured |archive-date=July 22, 2017 |access-date=September 13, 2019 |publisher=National Football League}}</ref> Against de Cleveland Browns, na dem cart tight end [[Jermichael Finley]] off de field plus a bruised spinal cord, leaving Rodgers widout three of ein top four offensive weapons.<ref>{{Cite web |last=Lee |first=Caroline |date=October 21, 2013 |title=Jermichael Finley, Packers tight end, in ICU with neck injury |url=https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |url-status=live |archive-url=https://web.archive.org/web/20190203150423/https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |archive-date=February 3, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref> De next week against de Vikings, Rodgers plete 24 of 29 passes insyd a 44–31 victory.<ref>{{Cite web |title=Green Bay Packers at Minnesota Vikings – October 27th, 2013 |url=https://www.pro-football-reference.com/boxscores/201310270min.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080251/https://www.pro-football-reference.com/boxscores/201310270min.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
At home against de Bears insyd Week 9, na Rodgers be sacked by [[Shea McClellin]]. He fracture ein left clavicle insyd de process, den de speculation for ein return dem range from a few weeks to an indefinite timetable wey cam be a weekly spectacle of whether anaa wen he fi be cleared to san play.<ref>{{Cite web |date=November 5, 2013 |title=Aaron Rodgers has fractured collarbone, could miss a month |url=http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |url-status=live |archive-url=https://web.archive.org/web/20131111030547/http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |archive-date=November 11, 2013 |access-date=November 6, 2013 |website=[[The Denver Post]] |agency=Associated Press}}</ref><ref name="Aaron Rodgers wasn">{{Cite web |last=Mortensen |first=Chris |author-link=Chris Mortensen |date=December 22, 2013 |title=Aaron Rodgers wasn't close to return |url=https://www.espn.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |url-status=live |archive-url=https://web.archive.org/web/20141103072203/http://espn.go.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref><ref name="Rodgers not ready to play">{{Cite web |last=Dougherty |first=Pete |date=December 19, 2013 |title=Packers' Aaron Rodgers 'looks ready to play' but probably won't |url=https://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |url-status=live |archive-url=https://web.archive.org/web/20150805151227/http://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |archive-date=August 5, 2015 |access-date=November 3, 2014 |website=USA Today}}</ref> Before Rodgers break ein collarbone, de Packers win four straight games to climb to de top of de NFC North division plus a 5–2 record. Plus Rodgers injured den unable to play, de Packers go winless over de next five weeks to fall to 5–6–1 on de season.<ref>{{Cite web |title=Green Bay Packers 2013 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2013/gamelog/ |access-date=October 23, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
After rallying insyd December behind re-acquired backup quarterback Matt Flynn,<ref name="Backup Flynn">{{Cite web |last=Dunne |first=Tyler |date=December 16, 2013 |title=Stoic Matt Flynn delivers Packers win |url=http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |url-status=live |archive-url=https://web.archive.org/web/20141103071905/http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=web |publisher=Milwaukee-Wisconsin Journal Sentinel}}</ref> de Packers fight dema way back to a 7–7–1 record going into de final week of de season. On December 26, Packers head coach Mike McCarthy announce Rodgers go return den start insyd de season-finale showdown against de Chicago Bears at Soldier Field for de NFC North championship.<ref>{{Cite news|last=Breech|first=John|date=December 26, 2013|title=Packers make it official: QB Aaron Rodgers will start vs. Bears|work=CBS Sports|url=http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|url-status=live|access-date=December 27, 2013|archive-url=https://web.archive.org/web/20131227003701/http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|archive-date=December 27, 2013}}</ref> Returning from de injury, Rodgers throw for 318 yards, two touchdowns, den two interceptions insyd de regular season finale against de Bears.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – December 29th, 2013 |url=https://www.pro-football-reference.com/boxscores/201312290chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081317/https://www.pro-football-reference.com/boxscores/201312290chi.htm |archive-date=August 29, 2017 |access-date=May 5, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Trailing 27–28 plus under a minute to go insyd de game den facing de third 4th down of de drive, a 4th & 8 from de 48-yard line, Rodgers connect plus Cobb, wey sanso dey return for ein first game since breaking ein leg insyd Week 6, for a 48-yard game-winning touchdown to clinch de NFC North den earn de right to host a home playoff game against de San Francisco 49ers as de fourth seed.<ref>{{Cite magazine|last=Bedard|first=Greg A.|date=December 30, 2013|title=Answered Prayers|url=https://www.si.com/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|url-status=live|archive-url=https://web.archive.org/web/20211201192432/https://www.si.com/nfl/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|archive-date=December 1, 2021|access-date=September 13, 2019|magazine=Sports Illustrated}}</ref> Rodgers win de 2013 GMC Never Say Never Award for de come-from-behind, division-winning touchdown pass. Rodgers fini fifth insyd de league insyd passer rating (104.9), completion percentage (66.6%), den yards per game (282) while he sanso fini second insyd yards per attempt (8.75).<ref>{{Cite web |title=2013 NFL Passing |url=https://www.pro-football-reference.com/years/2013/passing.htm |access-date=July 17, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
Rodgers san lead de Packers to de playoffs, dis time plus an 8–7–1 record wey na dem be up against de team wey eliminate dem last year insyd de Divisional Round of de playoffs, de 49ers.<ref>{{Cite web |title=2013 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2013.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030637/https://www.pro-football-reference.com/teams/gnb/2013.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de 49ers for de fourth consecutive time, 23–20 on a last second field goal at Lambeau Field, insyd de Wild Card Round. Rodgers record only 177 yards passing, ein lowest insyd a playoff game, den one touchdown pass.<ref>{{Cite web |title=Wild Card – San Francisco 49ers at Green Bay Packers – January 5th, 2014 |url=https://www.pro-football-reference.com/boxscores/201401050gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170821043340/https://www.pro-football-reference.com/boxscores/201401050gnb.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> He sanso be ranked No. 11 by ein fellow players on de ''NFL Top 100'' Players of 2014.<ref>{{Cite web |title=2014 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112164602/https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2014: Second MVP ====
[[File:Aaron_rodgers_2014.jpg|right|thumb|Rodgers insyd 2014]]
De Packers dema 2014 regular season debut cam against de defending Super Bowl champion Seahawks—a game insyd wich dem go go on to loose 36–16.<ref>{{Cite web |title=Green Bay Packers at Seattle Seahawks – September 4th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409040sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182750/https://www.pro-football-reference.com/boxscores/201409040sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 2, de team begin de game plus a 21–3 deficit against de Jets, bug dem cam back wey dem win 31–24.<ref>{{Cite web |title=New York Jets at Green Bay Packers – September 14th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409140gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829120234/https://www.pro-football-reference.com/boxscores/201409140gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De 18-point comeback mark de biggest comeback insyd Rodgers ein career.<ref>{{Cite web |last=Imig |first=Paul |date=September 14, 2014 |title=Rodgers overcomes 'nerves' to complete biggest comeback of career |url=http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |url-status=live |archive-url=https://web.archive.org/web/20140918022944/http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |archive-date=September 18, 2014 |access-date=September 13, 2019 |work=Fox Sports}}</ref> Insyd de third week of de season, de Packers offense be shut down by de Lions dema defense, 19–7.<ref>{{Cite web |title=Green Bay Packers at Detroit Lions – September 21st, 2014 |url=https://www.pro-football-reference.com/boxscores/201409210det.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211151/https://www.pro-football-reference.com/boxscores/201409210det.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Na de Packers dema 7 points be de fewest points dem allow insyd a game Rodgers fini; na de 223 yards of total Packer offense be de lowest since Rodgers take over at quarterback den ein 162 passing yards sanso be a career low. For de third consecutive season, na de Packers be off to a 1–2 start. Insyd those three games, Rodgers throw five touchdowns den one interception combined, plus a passer rating of 95.1. Amid widespread concern, Rodgers telll de fans den de media, "''R-E-L-A-X. Relax. We're going to be OK."''<ref>{{Cite web |last=Wilde |first=Jason |date=September 23, 2014 |title=R-E-L-A-X (ESPN Wisconsin) |url=http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |url-status=dead |archive-url=https://web.archive.org/web/20151101051643/http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |archive-date=2015-11-01 |access-date=December 7, 2014}}</ref>
After dema loss to de Lions, de Packers go on a four-game win streak, during wich, Rodgers throw 13 touchdowns plus no interceptions.<ref>{{Cite web |title=Aaron Rodgers 2014 Game Log (Weeks 4–7) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231025726/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |archive-date=December 31, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> Insyd Week 4, a 38–17 victory over de Bears, he get 302 passing yards den four touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – September 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409280chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081419/https://www.pro-football-reference.com/boxscores/201409280chi.htm |archive-date=August 29, 2017 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180321130559/https://www.pro-football-reference.com/years/2014/week_4.htm |archive-date=March 21, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de Miami Dolphins, Rodgers lead de Packers to a game-winning drive plus less dan two minutes remaining. He plete a 4th & 10 pass to wide receiver Jordy Nelson wey he mimick [[Dan Marino]] ein famous fake spike play by completing a pass to wide receiver [[Davante Adams]] to get to within four yards of de endzone later insyd de drive.<ref>{{Cite web |last=Sherman |first=Rodger |date=October 12, 2014 |title=Packers use fake spike to beat Dolphins |url=https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |archive-date=March 30, 2019 |access-date=March 7, 2019 |website=SBNation.com}}</ref> Rodgers then plete a touchdown pass to tight end [[Andrew Quarless]] to win de game 27–24.<ref name="gmc">{{Cite web |title=2014 GMC Never Say Never Moment |url=http://www.nfl.com/voting/never-say-never/2014/REG/6 |url-status=live |archive-url=https://web.archive.org/web/20161220230141/http://www.nfl.com/voting/never-say-never/2014/REG/6 |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Dis play go later win Rodgers de GMC Never Say Never Moment of de Year Award.<ref name="gmc" /> Insyd Week 7, a 38–17 victory over de Carolina Panthers, na he be 19-of-22 for 255 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Carolina Panthers at Green Bay Packers – October 19th, 2014 |url=https://www.pro-football-reference.com/boxscores/201410190gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002513/https://www.pro-football-reference.com/boxscores/201410190gnb.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 7 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_7.htm |url-status=live |archive-url=https://web.archive.org/web/20210928154945/https://www.pro-football-reference.com/years/2014/week_7.htm |archive-date=September 28, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd a Week 8 loss against de Saints, Rodgers fini 28 of 39 for 418 yards, plus one touchdown pass den two interceptions, ending ein 212 consecutive attempts widout an interception streak<ref name="packsaintsoct">{{Cite web |last=Imig |first=Paul |date=October 27, 2014 |title=5 things we learned: Packers at Saints |url=http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |url-status=live |archive-url=https://web.archive.org/web/20170105180746/http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |archive-date=January 5, 2017 |access-date=January 5, 2017 |work=Fox Sports}}</ref>—de second longest insyd team history. Insyd de game, Rodgers injure ein hamstring wich appear to get an effect on ein play for de remainder of de game.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 27, 2014 |title=Aaron Rodgers of Green Bay Packers injures hamstring in loss |url=https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |url-status=live |archive-url=https://web.archive.org/web/20200818134022/https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |archive-date=August 18, 2020 |access-date=September 13, 2019 |website=[[ESPN.com]]}}</ref>
[[File:Rodgers_handing_off_2014.jpg|left|thumb|Rodgers handing de ball off to running back [[Eddie Lacy]] insyd 2014]]
Insyd Week 10, against de Chicago Bears, Rodgers cam be de second player insyd NFL history den de first since [[Daryle Lamonica]] insyd 1969 to throw six touchdown passes insyd de first half.<ref>{{Cite news|last=Armas|first=Genaro C.|date=November 10, 2014|title=Aaron Rodgers Throws 6 TD Passes in 1st Half As Packers Crush Bears 55–14|work=[[HuffPost]]|url=http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|url-status=live|access-date=November 27, 2014|archive-url=https://web.archive.org/web/20141112143148/http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|archive-date=November 12, 2014}}</ref> Rodgers fini 18 of 27 for 315 yards den six touchdowns despite only playing one drive insyd de second half to earn NFC Offensive Player of de Week.<ref name="nbcchi" /><ref>{{Cite web |title=2014 NFL Week 10 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_10.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020149/https://www.pro-football-reference.com/years/2014/week_10.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers set multiple records during de game: most touchdown passes of 70 anaa more yards plus 16—breaking de record dem wey Brett Favre den [[Peyton Manning]] hold, most consecutive touchdown passes widout an interception at home—he sanso break de record wey Favre den Manning, wey he cam be de first quarterback to ever have 10 touchdown passes against de same team insyd a season.<ref name="nbcchi">{{Cite web |last=Neveau |first=James |date=November 12, 2014 |title=Aaron Rodgers Suffered Back Injury vs. Bears |url=http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |url-status=live |archive-url=https://web.archive.org/web/20170105180011/http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=NBC Chicago}}</ref> De 55–14 victory tie de Packers dema 55–7 win vs. De Titans insyd 2009 for de most points wey a Rodgers-led offense score.
Insyd a Week 11 game against de 7–2 Eagles, Rodgers set a record for most consecutive attempts at home widout an interception, breaking [[Tom Brady]] ein record of 288 consecutive attempts.<ref>{{Cite web |last=Massey |first=Evan |date=November 16, 2014 |title=Packers' Aaron Rodgers Breaks Tom Brady's Record |url=https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |url-status=live |archive-url=https://web.archive.org/web/20200724201538/https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |archive-date=July 24, 2020 |access-date=September 12, 2019 |website=FanSided}}</ref> Insyd de 53–20 victory, he fini dey go 22 of 36, plus 341 passing yards, three touchdown passes den no interceptions.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – November 16th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829074637/https://www.pro-football-reference.com/boxscores/201411160gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De 8–3 Packers meet de 9–2 Patriots insyd Week 13, at [[Lambeau Field]] insyd na wat be Brady den Rodgers' first time playing against each oda as starters.<ref>{{Cite web |last=Imig |first=Paul |date=November 30, 2014 |title=Rodgers outduels Brady for win in first-ever matchup of elite QBs |url=https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |url-status=live |archive-url=https://web.archive.org/web/20190102094626/https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |archive-date=January 2, 2019 |access-date=January 1, 2019 |work=Fox Sports}}</ref> Rodgers fini dey go 24 of 38, plus 368 passing yards den two passing touchdowns insyd de 26–21 Packers victory.<ref>{{Cite web |title=New England Patriots at Green Bay Packers – November 30th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411300gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171228171554/https://www.pro-football-reference.com/boxscores/201411300gnb.htm |archive-date=December 28, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> For ein efforts insyd de month of November, he earn NFC Offensive Player of de Month.<ref>{{Cite web |date=December 4, 2014 |title=Aaron Rodgers among NFC's best for November |url=https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |url-status=live |archive-url=https://web.archive.org/web/20190812115629/https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |archive-date=August 12, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref>
Rodgers suffer a calf injury insyd Week 16, against de Buccaneers, secof severe dehydration he endure from flu-like symptoms he suffer during de week.<ref name="flu">{{Cite web |last=Demovsky |first=Rob |date=December 22, 2014 |title=Aaron Rodgers played with pulled calf |url=https://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |url-status=live |archive-url=https://web.archive.org/web/20170105180655/http://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=[[ESPN.com]]}}</ref>
Insyd de Week 17 game against de Lions, Rodgers re-injure ein left calf while extending a play den throwing a touchdown pass to [[Randall Cobb (American football)|Randall Cobb]], then na e help off de field, wey dem cart am off to de locker room. After missing a series, Rodgers re-enter de game plus de score dem tie 14–14. Despite he be less mobile plus de injury, Rodgers plete 13 of 15 passes for 129 yards den two scores against de league ein second-ranked defense. De Packers win 30–20, winning dema fourth straight NFC North title. Rodgers fini 17 of 22 for 226 yards, two touchdown passes, no interceptions, a 139.6 passer rating, den a rushing touchdown to earn ein fourth NFC Offensive Player of de Week honor for de 2014 season.<ref>{{Cite web |title=Detroit Lions at Green Bay Packers – December 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201412280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20190330032513/https://www.pro-football-reference.com/boxscores/201412280gnb.htm |archive-date=March 30, 2019 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 17 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_17.htm |url-status=live |archive-url=https://web.archive.org/web/20180226175215/https://www.pro-football-reference.com/years/2014/week_17.htm |archive-date=February 26, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers secure de second seed insyd de NFC, rewarding dem plus a playoff bye den a week off wich help Rodgers rest den rehabilitate ein injured left calf.<ref>{{Cite web |title=2014 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2014 |url-status=live |archive-url=https://web.archive.org/web/20211011053552/https://www.pro-football-reference.com/years/2014/ |archive-date=October 11, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round, na de Packers be scheduled to play de 13–4 Cowboys, wich mark de first time insyd NFL playoff history wen a team wich go undefeated at home (Packers) play against a team wich go undefeated away (Cowboys).<ref>{{Cite web |last=Imig |first=Paul |date=January 9, 2015 |title=Something has to give: Packers unbeaten at home; Cowboys 8–0 on road |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |url-status=live |archive-url=https://web.archive.org/web/20170101091540/http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |archive-date=January 1, 2017 |access-date=December 31, 2016 |work=Fox Sports}}</ref> Rodgers help secure a 26–21 victory by finishing 24 of 35 for 316 yards, three touchdowns, no interceptions, den a 125.4 passer rating.<ref>{{Cite web |title=Divisional Round – Dallas Cowboys at Green Bay Packers – January 11th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501110gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171114040923/https://www.pro-football-reference.com/boxscores/201501110gnb.htm |archive-date=November 14, 2017 |access-date=December 15, 2017 |website=[[Pro Football Reference]]}}</ref>
De Packers then travel go Seattle to face de top-seeded Seahawks insyd a rematch of de regular season opener.<ref>{{Cite web |last=Pittman |first=Travis |date=January 11, 2015 |title=Seahawks vs. Packers rematch for NFC Championship |url=https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |archive-date=July 24, 2020 |access-date=September 12, 2019 |publisher=KING}}</ref> Insyd de NFC Championship Game, na de Packers dey lead 19–7 plus just over five minutes to go, buh na de home team ein offense finally wake up den, plus de assistance of a crucial Packers special teams gaffe on an onside kick, de Seahawks lead 22–19, plus 44 seconds remaining. Rodgers quickly drive downfield to set up a tying field goal, only to watch from de sidelines as de Seahawks win de coin toss insyd overtime wey he proceed to score de game-winning touchdown on dema first possession. Rodgers be 19-for-34 for 178 yards den a touchdown, plus two interceptions insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Seattle Seahawks – January 18th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501180sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182804/https://www.pro-football-reference.com/boxscores/201501180sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de regular season first insyd touchdown-to-interception ratio (7.6), lowest interception percentage (1.0%), second insyd passer rating (112.2), yards per attempt (8.4), den touchdown passing percentage (7.1%), third insyd touchdown passes (38), seventh insyd passing yards (4,381), den ninth insyd completion percentage (65.6%).<ref>{{Cite web |title=2014 NFL Leaders and Leaderboards |url=https://www.pro-football-reference.com/years/2014/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20190915221740/https://www.pro-football-reference.com/years/2014/leaders.htm |archive-date=September 15, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> He set an NFL record for most consecutive pass attempts (512) at home widout an interception, den touchdown passes (41).
Na dem vote Rodgers de AP NFL Most Valuable Player for de 2014 season, receiving 31 votes,<ref>{{Cite web |last=Demovsky |first=Rob |date=January 31, 2015 |title=Aaron Rodgers named NFL MVP |url=https://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20161217162150/http://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |archive-date=December 17, 2016 |access-date=December 12, 2016 |publisher=[[ESPN]]}}</ref> wey dem name am NFC Offensive Player of de Year by de Kansas City Committee of 101<ref name="KC101off">{{Cite web |title=Past NFC Offensive Honorees |url=http://www.101awards.com/awards/past_nfc_offensive_honorees |url-status=dead |archive-url=https://web.archive.org/web/20161220130101/http://www.101awards.com/awards/past_nfc_offensive_honorees |archive-date=December 20, 2016 |access-date=December 13, 2016 |website=101awards.com}}</ref> den Fed-Ex Air NFL Player of de Year.<ref>{{Cite web |date=January 31, 2015 |title=2015 'NFL Honors' complete list of winners |url=https://www.nfl.com/news/2015-nfl-honors-complete-list-of-winners-0ap3000000466415 |url-status=live |archive-url=https://web.archive.org/web/20161018132754/http://www.nfl.com/news/story/0ap3000000466415/article/2015-nfl-honors-complete-list-of-winners |archive-date=October 18, 2016 |access-date=December 12, 2016 |publisher=National Football League}}</ref> He sanso be named to de AP All-Pro team as de first quarterback, receiving 44 votes while runner-up [[Tony Romo]] receive three.<ref>{{Cite web |last=Wesseling |first=Chris |date=January 2, 2015 |title=2014 All-Pro Teams: Analysis of the full rosters |url=https://www.nfl.com/news/2014-all-pro-teams-analysis-of-the-full-rosters-0ap3000000452986 |url-status=live |archive-url=https://web.archive.org/web/20140104005331/http://pro32.ap.org/article/2013-all-pro-team |archive-date=January 4, 2014 |access-date=February 4, 2015 |publisher=National Football League}}</ref> Na dem name am to de Pro Bowl for de 2014 season.<ref>{{Cite web |title=2014 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2014/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180816061701/https://www.pro-football-reference.com/years/2014/probowl.htm |archive-date=August 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am as de second best player insyd de league among ein fellow players on de ''NFL Top 100'' Players of 2015.<ref>{{Cite web |title=2015 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200508061426/https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |archive-date=May 8, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2015 ====
Insyd 2015, Rodgers get a down year by ein standards. He throw for a career low 3,821 yards insyd wich he play for at least 15 games, although he get 31 touchdowns to just eight interceptions.<ref>{{Cite web |last=Hirschhorn |first=Jason B. |date=July 6, 2016 |title=NFL Top 100: Packers' Aaron Rodgers lands at No. 6 in 2016 |url=https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |url-status=live |archive-url=https://web.archive.org/web/20211115204818/https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=ACME Packing Company |language=en}}</ref> Rodgers plete 60.7 of ein passes per, averaged only 6.7 yards per attempt wey he fini plus a passer rating of 92.7, all career lows. Na Pro Bowl wide receiver Jordy Nelson ein absence secof injury for de season be considered a contributing factor insyd Rodgers ein statistical drop dem compare to previous seasons.<ref>{{Cite web |last=Kelly |first=Danny |date=November 15, 2015 |title=Aaron Rodgers and the Packers miss Jordy Nelson more than we thought they would |url=https://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |url-status=live |archive-url=https://web.archive.org/web/20161226145804/http://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=sbnation.com}}</ref><ref>{{Cite web |date=January 19, 2016 |title=Packers hope Nelson's return will revitalize offense |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |url-status=live |archive-url=https://web.archive.org/web/20161226145654/http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |archive-date=December 26, 2016 |access-date=December 25, 2016 |work=Fox Sports}}</ref><ref>{{Cite web |last=Spofford |first=Mike |date=December 30, 2015 |title=Stats don't matter to Aaron Rodgers |url=http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |url-status=dead |archive-url=https://web.archive.org/web/20161226145201/http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=packers.com}}</ref>
Insyd Week 3, a 38–28 victory over de Chiefs, Rodgers get 333 passing yards den five touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Kansas City Chiefs at Green Bay Packers – September 28th, 2015 |url=https://www.pro-football-reference.com/boxscores/201509280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20220218210924/https://www.pro-football-reference.com/boxscores/201509280gnb.htm |archive-date=February 18, 2022 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2015 NFL Week 3 Leaders & Scores |url=https://www.pro-football-reference.com/years/2015/week_3.htm |url-status=live |archive-url=https://web.archive.org/web/20180330172357/https://www.pro-football-reference.com/years/2015/week_3.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> During Week 9 against de Panthers, he fini plus 369 passing yards, four touchdowns, den one interception. De interception cam plus only 1:47 left insyd de fourth quarter, den following de interception, Rodgers express frustration by throwing down a Microsoft Surface tablet.<ref>{{Cite web |last=Davis |first=Scott |date=November 9, 2015 |title=Aaron Rodgers angrily threw a Microsoft Surface tablet after throwing a crucial interception |url=https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |archive-date=March 30, 2019 |access-date=September 13, 2019 |website=Business Insider}}</ref> De Packers end up losing de game 29–37.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – November 8th, 2015 |url=https://www.pro-football-reference.com/boxscores/201511080car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211145/https://www.pro-football-reference.com/boxscores/201511080car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
On December 3, 2015, insyd a Week 13 match-up against de Lions, Rodgers throw a Hail Mary pass wey [[Richard Rodgers (tight end)|Richard Rodgers]] catch for 61 yards plus 0:00 left to beat de Lions 27–23, after dem extend de game secof a facemask penalty dem call on Detroit.<ref name="2015mary">{{Cite web |last=Rosenthal |first=Gregg |date=December 3, 2015 |title=Packers stun Lions on Aaron Rodgers' Hail Mary TD |url=https://www.nfl.com/news/packers-stun-lions-on-aaron-rodgers-hail-mary-td-0ap3000000593884 |url-status=live |archive-url=https://web.archive.org/web/20180408144543/http://www.nfl.com/news/story/0ap3000000593884/article/packers-stun-lions-on-miracle-td-throw-by-rodgers |archive-date=April 8, 2018 |access-date=December 25, 2016 |publisher=National Football League}}</ref> Na de play quickly be dubbed as "The Miracle in Motown."<ref>{{Cite news|last=Bennett|first=Colin|date=December 9, 2015|title=Getaway winner witnesses Motown Miracle|publisher=WTMJ|url=https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|url-status=dead|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20180312083608/https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|archive-date=March 12, 2018}}</ref><ref>{{Cite book |last=Aretha |first=David |url=https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |title=Aaron Rodgers: Champion Football Star |date=July 15, 2017 |publisher=Enslow Publishing, LLC |isbn=9780766087170 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203181206/https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |archive-date=February 3, 2021 |url-status=live}}</ref>
De Packers make de playoffs as de fifth seed insyd de NFC plus a 10–6 record.<ref>{{Cite web |title=2015 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2015.htm |url-status=live |archive-url=https://web.archive.org/web/20171010004706/https://www.pro-football-reference.com/teams/gnb/2015.htm |archive-date=October 10, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Dem defeat de Redskins 35–18 on de road insyd de Wild Card Round of de playoffs. Rodgers fini de game plus 210 yards den two passing touchdowns.<ref>{{Cite web |title=Wild Card – Green Bay Packers at Washington Redskins – January 10th, 2016 |url=https://www.pro-football-reference.com/boxscores/201601100was.htm |url-status=live |archive-url=https://web.archive.org/web/20180308042317/https://www.pro-football-reference.com/boxscores/201601100was.htm |archive-date=March 8, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round against de Cardinals, Rodgers throw a 41-yard Hail Mary touchdown pass to [[Jeff Janis]] as time expire to send de game into overtime. However, de Packers loos3 26–20 insyd overtime. Rodgers fini de game 24 for 44 for 261 yards plus two touchdowns den an interception.<ref>{{Cite web |last=Wilde |first=Jason |date=January 17, 2016 |title=Jeff Janis forces OT with Hail Mary catch, but celebration short-lived |url=https://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |url-status=live |archive-url=https://web.archive.org/web/20161213200125/http://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=[[ESPN.com]]}}</ref> Dem name am to ein fifth Pro Bowl wey na dem rank am as de sixth best player by ein peers on de ''NFL Top 100'' Players of 2016.<ref>{{Cite web |title=2015 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2015/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180308103829/https://www.pro-football-reference.com/years/2015/probowl.htm |archive-date=March 8, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2016 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190404010429/https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |archive-date=April 4, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2016 ====
[[File:Aaron_Rodgers,_Redskins_v_Packers,_Jan_2016.jpg|right|thumb|Rodgers insyd 2016]]
Thru out de first five games of de 2016 season, Rodgers ein struggles from de 2015 season appear to continue.<ref name="pff2016" /> Thru those games, he plete 60.2% of ein passes, dem average 6.5 yards per attempt, wey he post a passer rating of 88.4—all of wich na be similar to ein 2015 numbers.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log (Games 1–5) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/#127-131-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227180403/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016#127-131-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]]}}</ref> He sanso fumble five times, wey he loose two. Ein lackluster performance thru those games cause much speculation about de causes of ein problems.<ref>{{Cite web |last=Florio |first=Mike |author-link=Mike Florio |date=October 20, 2016 |title=What's wrong with Aaron Rodgers? |url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/whats-wrong-with-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20161226215024/http://profootballtalk.nbcsports.com/2016/10/20/whats-wrong-with-aaron-rodgers/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=NBC Sports |language=en-US}}</ref><ref name="pff2016">{{Cite web |last=Monson |first=Sam |date=October 17, 2016 |title=What's wrong with Aaron Rodgers and the Packers' offense? |url=https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |url-status=live |archive-url=https://web.archive.org/web/20161226214838/https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=profootballfocus.com}}</ref><ref>{{Cite web |last=Gonzalez |first=Jason |date=October 17, 2016 |title=What's wrong with the Packers? All signs point to Aaron Rodgers |url=http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |url-status=live |archive-url=https://web.archive.org/web/20161226145502/http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=Star Tribune}}</ref><ref>{{Cite web |last=Demovsky |first=Rob |date=October 20, 2016 |title=Experts weigh in on Aaron Rodgers: 'No easy fix' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |url-status=live |archive-url=https://web.archive.org/web/20161226150119/http://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=[[ESPN.com]]}}</ref>
[[File:Pro_Football_Hall_of_Fame_(23945585187).jpg|thumb|Rodgers ein uniform dem exhibit at de Pro Football Hall of Fame]]
Insyd a Week 7 ''Thursday Night Football'' game against de Bears, Rodgers rebound by recording a franchise record den career-high 39 completions, breaking Brett Favre ein previous record of 36 insyd 1993, sanso be against de Bears.<ref>{{Cite web |date=October 21, 2016 |title=Aaron Rodgers sets Green Bay Packers completion record in win over Chicago Bears |url=http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |url-status=live |archive-url=https://web.archive.org/web/20161213015800/http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=United Press International}}</ref> Rodgers record 326 passing yards for ein first 300-yard passing game since Week 10 of de 2015 season insyd de 26–10 win.<ref name="pfr gamelog" /> De following week against de Atlanta Falcons, Rodgers record a career regular season high of 60 rushing yards,<ref name="pfr gamelog">{{Cite web |title=Aaron Rodgers Career Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/ |url-status=dead |archive-url=https://web.archive.org/web/20111219211828/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog |archive-date=December 19, 2011 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> wey he fini plus four touchdown passes den a 125.5 passer rating.<ref>{{Cite web |last=Dubin |first=Jared |date=October 30, 2016 |title=Packers vs. Falcons highlights, score: Matt Ryan Aaron Rodgers trade lasers all day |url=http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |url-status=live |archive-url=https://web.archive.org/web/20161226215154/http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=CBS Sports}}</ref>
After a Week 11 loss to de Redskins—de Packers dema fourth in a row, putting dem at 4–6—Rodgers be optimistic about de remainder of de season, saying, "I feel like we fi run de table, I really do."<ref name="runtable1">{{Cite web |last=Demovsky |first=Rob |date=November 23, 2016 |title=Aaron Rodgers: Packers, at 4–6, can close with 6 straight wins |url=https://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |url-status=live |archive-url=https://web.archive.org/web/20170105180337/http://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref> Despite widespread doubt over de likelihood of such a run,<ref name="runtable2">{{Cite web |last=Demovsky |first=Rob |date=January 2, 2016 |title=Aaron Rodgers' magic carries Packers into playoffs on a run-the-table roll |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |url-status=live |archive-url=https://web.archive.org/web/20170103184508/http://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |archive-date=January 3, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Sipple |first=George |date=January 2, 2017 |title=Packers QB Aaron Rodgers makes good on 'run the table' prediction |url=http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |url-status=live |archive-url=https://web.archive.org/web/20170105175931/http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=Detroit Free Press}}</ref><ref>{{Cite web |last=Gantt |first=Darin |date=November 24, 2016 |title=Aaron Rodgers: "I feel we can run the table" |url=http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |url-status=live |archive-url=https://web.archive.org/web/20170105180803/http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=profootballtalk.nbcsports.com}}</ref> de Packers go go on to finish de season plus six straight wins—as Rodgers say dem go fi.
Insyd a Week 12 ''Monday Night Football'' game Rodgers appeare to injure ein hamstring on a scrambling play against de Eagles.<ref name="packnews">{{Cite web |last=Silverstein |first=Tom |date=November 29, 2016 |title=Hamstring injury sends Rodgers to tent |url=http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |url-status=live |archive-url=https://web.archive.org/web/20161129161247/http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |archive-date=November 29, 2016 |access-date=December 13, 2016 |website=Milwaukee Journal Sentinel}}</ref> After de play, Rodgers go into an injury tent on de sideline to get ein leg taped up.<ref name="packnews" /> Na Rodgers, however, no miss any snaps insyd de game wey he fini 30 out of 39 for 313 yards plus no sacks anaa interceptions.<ref name="2016eagles" /> Ein 300-yard performance be ein fourth of de season den de first wey de Eagles dema defense allow all season.<ref name="2016eagles">{{Cite web |last=Jackson |first=Zac |date=November 28, 2016 |title=Rodgers, defense step up as Packers snap losing streak |url=http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |url-status=live |archive-url=https://web.archive.org/web/20161213165321/http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |archive-date=December 13, 2016 |access-date=December 13, 2016}}</ref> De Packers win, 27–13, snapping dema four-game losing streak.
Insyd a 38–10 victory over de Seahawks insyd a Week 14 game, Rodgers den de Packers continue dema recent offensive den defensive success.<ref name="38-10" /><ref name="38-102">{{Cite web |last=Pelissero |first=Tom |date=December 12, 2016 |title=After rout of Seattle, Packers re-emerge as team no one wants to see in January |url=https://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |url-status=live |archive-url=https://web.archive.org/web/20161213014329/http://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=USA Today Sports}}</ref> Rodgers fini plus 246 passing yards, three touchdown passes den a 150.8 passer rating. De 150.8 passer rating be de best recorded against Seattle ein defense since head coach [[Pete Carroll]] take over insyd 2010.<ref name="38-10">{{Cite web |last=Wesseling |first=Chris |date=December 11, 2016 |title=Aaron Rodgers, Packers dismantle Seahawks |url=https://www.nfl.com/news/aaron-rodgers-packers-dismantle-seahawks-0ap3000000755388 |url-status=live |archive-url=https://web.archive.org/web/20161213001101/http://www.nfl.com/news/story/0ap3000000755388/article/mvp-candidate-rodgers-packers-dismantle-seahawks |archive-date=December 13, 2016 |access-date=December 13, 2016 |publisher=National Football League}}</ref> Rodgers do dis despite suffering a calf injury early insyd de game.<ref name="38-10" /> Na dem name am NFC Offensive Player of de Week for ein performance against de Seahawks.<ref>{{Cite web |last=Lam |first=Quang M. |date=December 14, 2016 |title=Le'Veon Bell, Rodgers among NFL Players of the Week |url=http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |url-status=dead |archive-url=https://web.archive.org/web/20190330021109/http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |archive-date=March 30, 2019 |access-date=November 12, 2019 |publisher=National Football League}}</ref>
On December 20, 2016, na Rodgers be selected to ein third consecutive Pro Bowl den ein sixth overall insyd ein career.<ref name="probowl2016">{{Cite web |date=December 20, 2016 |title=NFL announces 2017 Pro Bowl rosters |url=https://www.nfl.com/news/nfl-announces-2017-pro-bowl-rosters-0ap3000000760503 |url-status=live |archive-url=https://web.archive.org/web/20181117075658/http://www.nfl.com/news/story/0ap3000000760503/article/nfl-announces-2017-pro-bowl-rosters |archive-date=November 17, 2018 |access-date=December 24, 2016 |publisher=National Football League}}</ref>
During Week 16, Rodgers den [[Drew Brees]] tie de NFL record for most seasons plus at least 35 touchdown passes plus four—a record he share plus Peyton Manning den Tom Brady.<ref name="35tdpass">{{Cite web |title=Most seasons with at least 35 passing touchdowns, career |url=http://pfref.com/tiny/ww1Iz |url-status=live |archive-url=https://web.archive.org/web/20220209214231/https://stathead.com/tools/tiny.fcgi?id=ww1Iz |archive-date=February 9, 2022 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref><ref name="mosttdpass">{{Cite web |title=NFL Single-Season Passing Touchdowns Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20210201232241/https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |archive-date=February 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> Insyd de game against de Vikings, Rodgers fini 28 of 38 for 347 yards, four touchdown passes den a rushing touchdown to earn NFC Offensive Player of de Week.<ref name="espnvik2016">{{Cite web |last=Demovsky |first=Rob |date=December 24, 2016 |title=Aaron Rodgers for MVP: Packers QB makes case in win over Vikings |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |url-status=live |archive-url=https://web.archive.org/web/20161225084224/http://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |archive-date=December 25, 2016 |access-date=December 25, 2016 |publisher=[[ESPN]]}}</ref><ref>{{Cite web |title=2016 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2016/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231416/https://www.pro-football-reference.com/years/2016/week_16.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 300-yard performance be de first allowed by de Vikings dema defense all season.<ref name="espnvik2016" /> He sanso set Packer regular season records for most 4,000-yard passing seasons (6), most completions insyd a season (374), den—plus Jordy Nelson—most touchdowns by a quarterback/wide receiver combination plus (59).<ref name="espnvik2016" /> Na dem name Rodgers NFC Offensive Player of de Month for December.<ref>{{Cite web |date=January 5, 2017 |title=Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |url-status=live |archive-url=https://web.archive.org/web/20200724202520/https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |archive-date=July 24, 2020 |access-date=September 13, 2019 |website=packers.com}}</ref>
Rodgers help lead de Packers to a NFC North title den a playoff berth insyd 2016.<ref>{{Cite web |title=2016 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2016 |url-status=live |archive-url=https://web.archive.org/web/20180329001215/https://www.pro-football-reference.com/years/2016/ |archive-date=March 29, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers defeat de Giants insyd de Wild Card Round. Rodgers plete 25 of 40 passes for 364 yards den four touchdowns insyd de victory. Dem defeat de #1-seed Cowboys insyd de Divisional Round. Plua de game tied at 31 plus only 18 seconds remaining plus de ball on dema own 32-yard line, Rodgers throw a 36-yard completion to tight end [[Jared Cook]] to put de Packers insyd Mason Crosby ein field goal range. Crosby convert de 51-yard attempt as time expire to win de game.<ref>{{Cite web |last=Steele |first=David |date=January 15, 2017 |title=Aaron Rodgers-to-Jared-Cook joins list of legendary clutch NFL playoff catches |url=https://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |url-status=live |archive-url=https://web.archive.org/web/20190415003703/http://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |archive-date=April 15, 2019 |access-date=September 13, 2019 |website=Sporting News}}</ref> Overall, Rodgers plete 28 of 43 passes for 355 yards, two touchdowns den an interception insyd de victory.<ref>{{Cite web |title=Wild Card – New York Giants at Green Bay Packers – January 8th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701080gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171011073327/https://www.pro-football-reference.com/boxscores/201701080gnb.htm |archive-date=October 11, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=Divisional Round – Green Bay Packers at Dallas Cowboys – January 15th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701150dal.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030639/https://www.pro-football-reference.com/boxscores/201701150dal.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de Falcons insyd de NFC Championship insyd de final game at de Georgia Dome. Rodgers plete 27 of ein 45 passing attempts for 287 yards plus three touchdowns den an interception insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Atlanta Falcons – January 22nd, 2017 |url=https://www.pro-football-reference.com/boxscores/201701220atl.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003240/https://www.pro-football-reference.com/boxscores/201701220atl.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd 2016, Rodgers fini plus 401 completions den 610 attempts (both career highs), a 65.7% completion percentage, 4,428 passing yards, 40 touchdown passes, seven interceptions, a passer rating of 104.2, 369 rushing yards (career-high), den four rushing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |url-status=live |archive-url=https://web.archive.org/web/20211115205043/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Plus ein 40 touchdown passes, he lead de league insyd de statistic for de first time insyd ein career<ref>{{Cite web |last=Borek |first=Jesse |date=January 1, 2017 |title=Packers' Aaron Rodgers leads NFL in TD passes |url=http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |url-status=dead |archive-url=https://web.archive.org/web/20170104172003/http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |archive-date=January 4, 2017 |access-date=January 4, 2017 |website=fanrangsports.com |publisher=Nafstrops Media, LLC}}</ref> wey he cam be one of only four quarterbacks to pass for at least 40 touchdowns insyd multiple seasons.<ref name="40td">{{Cite web |title=Most seasons with at least 40 passing touchdowns, career |url=http://pfref.com/tiny/6BiBx |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=6BiBx |archive-date=December 1, 2021 |access-date=January 5, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Rodgers sanso fini fourth insyd passing yards, completions, attempts, den passer rating.<ref name="2016leaderspfr">{{Cite web |title=2016 NFL Leaders |url=https://www.pro-football-reference.com/years/2016/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20210108041718/https://www.pro-football-reference.com/years/2016/leaders.htm |archive-date=January 8, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Among quarterbacks, he fini third insyd rushing yards den fifth insyd rushing touchdowns.<ref name="2016qbrush">{{Cite web |title=2016 QB rushing leaders |url=http://pfref.com/tiny/698kQ |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=698kQ |archive-date=December 1, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2017.<ref>{{Cite web |title=2017 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201106081444/https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |archive-date=November 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2017 ====
Insyd a Week 1 victory over de Seahawks, Rodgers get ein 50th career game plus at least 300 passing yards. He fini de game plus 311, buh ein streak of 251 consecutive passes widout an interception cam to an end wen defensive tackle [[Nazair Jones]] pick am off insyd de first quarter.<ref>{{Cite news|date=September 10, 2017|title=Rodgers, Packers' defense spark season-opener win over Seahawks|work=Fox Sports|agency=Associated Press|url=http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|url-status=live|access-date=September 10, 2017|archive-url=https://web.archive.org/web/20170912011719/http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|archive-date=September 12, 2017}}</ref> Insyd a Week 2 loss of 34–23 to de Falcons, he get 343 passing yards, two touchdowns, den an interception insyd de first game insyd de new Mercedes-Benz Stadium insyd Atlanta.<ref>{{Cite web |title=Green Bay Packers at Atlanta Falcons – September 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201709170atl.htm |url-status=live |archive-url=https://web.archive.org/web/20171008080102/https://www.pro-football-reference.com/boxscores/201709170atl.htm |archive-date=October 8, 2017 |access-date=October 13, 2017 |website=[[Pro Football Reference]]}}</ref> Insyd Week 5, down by 28–31 against de Cowboys plus less dan two minutes on de clock, Rodgers lead a nine-play, 75-yard touchdown drive insyd de 35–31 victory, earning am NFC Offensive Player of de Week.<ref>{{Cite web |last=Lewis |first=Edward |date=October 11, 2017 |title=Aaron Rodgers, Earl Thomas among Players of Week |url=https://www.nfl.com/news/aaron-rodgers-earl-thomas-among-players-of-week-0ap3000000859999 |url-status=live |archive-url=https://web.archive.org/web/20190504022932/http://www.nfl.com/news/story/0ap3000000859999/article/aaron-rodgers-earl-thomas-among-players-of-week |archive-date=May 4, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref>
During Week 6 against de Vikings, na dem take Rodgers off de field by ein coaches den medical personnel after suffering a shoulder injury on a hit from [[Anthony Barr (American football)|Anthony Barr]]. Shortly thereafter, na dem reveal say Rodgers suffer a fractured right collarbone.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 15, 2017 |title=Aaron Rodgers has broken collarbone, could miss season |url=https://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |url-status=live |archive-url=https://web.archive.org/web/20190504114010/http://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |archive-date=May 4, 2019 |access-date=October 15, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Wesseling |first=Chris |date=October 15, 2017 |title=Aaron Rodgers suffers broken collarbone vs. Vikings |url=https://www.nfl.com/news/aaron-rodgers-suffers-broken-collarbone-vs-vikings-0ap3000000861006 |url-status=live |archive-url=https://web.archive.org/web/20171015222153/http://www.nfl.com/news/story/0ap3000000861006/article/aaron-rodgers-suffers-broken-collarbone-vs-vikings |archive-date=October 15, 2017 |access-date=October 15, 2017 |website=NFL.com |publisher=National Football League}}</ref> De next day, on October 16, na dem announce say Rodgers go get surgery on ein broken collarbone.<ref>{{Cite web |last=Patra |first=Kevin |date=October 16, 2017 |title=Aaron Rodgers will have surgery on broken collarbone |url=https://www.nfl.com/news/aaron-rodgers-will-have-surgery-on-broken-collarbone-0ap3000000862438 |url-status=live |archive-url=https://web.archive.org/web/20171016214737/http://www.nfl.com/news/story/0ap3000000862438/article/aaron-rodgers-will-have-surgery-on-broken-collarbone |archive-date=October 16, 2017 |access-date=October 16, 2017 |website=NFL.com |publisher=National Football League}}</ref> On October 19, he undergo surgery on ein collarbone, wey na he be officially placed on injured reserve de next day.<ref>{{Cite web |date=October 19, 2017 |title=Aaron Rodgers has surgery on collarbone |url=https://www.nfl.com/news/packers-aaron-rodgers-has-surgery-on-collarbone-0ap3000000864021 |url-status=live |archive-url=https://web.archive.org/web/20171020135141/http://www.nfl.com/news/story/0ap3000000864021/article/packers-aaron-rodgers-has-surgery-on-collarbone |archive-date=October 20, 2017 |access-date=October 19, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |date=October 20, 2017 |title=Packers place QB Rodgers on injured reserve |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |url-status=dead |archive-url=https://web.archive.org/web/20171021061030/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |archive-date=October 21, 2017 |access-date=October 20, 2017 |website=Packers.com}}</ref> Na dem insert a total of 13 screws to stabilize ein collarbone.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 26, 2017 |title=Injury roundup: Rodgers has '13 screws' in collarbone |url=https://www.nfl.com/news/injuries-aaron-rodgers-has-13-screws-in-collarbone-0ap3000000867422 |url-status=live |archive-url=https://web.archive.org/web/20171026222152/http://www.nfl.com/news/story/0ap3000000867422/article/injury-roundup-rodgers-has-13-screws-in-collarbone |archive-date=October 26, 2017 |access-date=October 26, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Knoblauch |first=Austin |date=November 3, 2017 |title=Aaron Rodgers focusing on his health, not return date |url=https://www.nfl.com/news/aaron-rodgers-focusing-on-his-health-not-return-date-0ap3000000871634 |url-status=live |archive-url=https://web.archive.org/web/20171104033909/http://www.nfl.com/news/story/0ap3000000871634/article/aaron-rodgers-focusing-on-his-health-not-return-date |archive-date=November 4, 2017 |access-date=November 3, 2017 |website=NFL.com |publisher=National Football League}}</ref>
Rodgers return to practice on December 2, wey dey make am eligible to play insyd de upcoming Week 15 game.<ref>{{Cite web |last=Bergman |first=Jeremy |date=December 2, 2017 |title=Aaron Rodgers returns to Packers practice Saturday |url=https://www.nfl.com/news/aaron-rodgers-returns-to-packers-practice-saturday-0ap3000000885977 |url-status=live |archive-url=https://web.archive.org/web/20191202121449/http://www.nfl.com/news/story/0ap3000000885977/article/aaron-rodgers-returns-to-packers-practice-saturday |archive-date=December 2, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> On December 12, na dem announce say Rodgers be medically cleared by doctors wey he be set to start de next game against de Panthers.<ref>{{Cite web |last=Lewis |first=Edward |date=December 12, 2017 |title=Aaron Rodgers cleared to return, to start vs. Panthers |url=http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |url-status=dead |archive-url=https://web.archive.org/web/20191109071351/http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |archive-date=November 9, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> He be officially activated on December 16.<ref>{{Cite web |date=December 16, 2017 |title=Aaron Rodgers activated from injured reserve |url=https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |url-status=live |archive-url=https://web.archive.org/web/20190413105005/https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |archive-date=April 13, 2019 |access-date=September 12, 2019 |website=Packers.com}}</ref> As dem plan, Rodgers return insyd Week 15 against de Panthers, wer he fini plus 290 passing yards, three touchdowns, den three interceptions as de Packers loose 24–31.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – December 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201712170car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101135719/https://www.pro-football-reference.com/boxscores/201712170car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> However, on December 19, na dem place Rodgers back on injured reserve after de Packers be eliminated from playoff contention.<ref>{{Cite web |date=December 19, 2017 |title=Packers place QB Aaron Rodgers on IR |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |url-status=dead |archive-url=https://web.archive.org/web/20180326030719/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |archive-date=March 26, 2018 |website=Packers.com}}</ref><ref>{{Cite web |last=Patra |first=Kevin |date=December 19, 2017 |title=Packers place Aaron Rodgers back on injured reserve |url=https://www.nfl.com/news/packers-place-aaron-rodgers-back-on-injured-reserve-0ap3000000895650 |url-status=live |archive-url=https://web.archive.org/web/20190920235723/http://www.nfl.com/news/story/0ap3000000895650/article/packers-place-aaron-rodgers-back-on-injured-reserve |archive-date=September 20, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Rapoport |first=Ian |author-link=Ian Rapoport |date=December 17, 2017 |title=Aaron Rodgers' collarbone still not completely healed |url=https://www.nfl.com/news/aaron-rodgers-collarbone-still-not-completely-healed-0ap3000000893627 |url-status=live |archive-url=https://web.archive.org/web/20171223065547/http://www.nfl.com/news/story/0ap3000000893627/article/aaron-rodgers-collarbone-still-not-completely-healed |archive-date=December 23, 2017 |access-date=December 23, 2017 |website=NFL.com |publisher=National Football League}}</ref> He be ranked No. 10 by ein fellow players on de ''NFL Top 100'' Players of 2018.<ref>{{Cite web |title=2018 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201104205316/https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |archive-date=November 4, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2018 ====
[[File:Rodgersthrowing2018redskins.jpg|thumb|Rodgers dey throw a pass insyd 2018]]
On August 29, 2018, Rodgers sign a four-year extension plus de Packers worth $134 million featuring a $57.5 million signing bonus.<ref>{{Cite web |last=Siegle |first=Evan |date=August 29, 2018 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |url-status=live |archive-url=https://web.archive.org/web/20180830044455/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |archive-date=August 30, 2018 |access-date=August 29, 2018 |website=packers.com}}</ref><ref>{{Cite web |last=Teope |first=Herbie |date=August 29, 2018 |title=Aaron Rodgers agrees to 4-year, $134M extension |url=http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |url-status=dead |archive-url=https://web.archive.org/web/20180830005310/http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |archive-date=August 30, 2018 |access-date=August 29, 2018 |publisher=National Football League}}</ref>
During ''Sunday Night Football'' against de Bears insyd Week 1, Rodgers lef de game plus a knee injury buh he return insyd de third quarter. Down by 20 points, Rodgers fini plus 286 passing yards den three touchdowns, leading de Packers rally to a 24–23 win.<ref>{{Cite web |last=Bergman |first=Jeremy |date=September 9, 2018 |title=Rodgers helps Packers rally against Bears |url=https://www.nfl.com/news/aaron-rodgers-rallies-packers-to-improbable-win-0ap3000000960283 |url-status=live |archive-url=https://web.archive.org/web/20180910164829/http://www.nfl.com/news/story/0ap3000000960283/article/aaron-rodgers-rallies-packers-to-improbable-win |archive-date=September 10, 2018 |access-date=September 10, 2018 |publisher=National Football League}}</ref> Despite a nagging knee injury, Rodgers get at least 40 pass attempts insyd each of de next three games. Insyd de last of these, he throw ein first interception insyd 150 attempts.<ref>{{Cite web |date=September 30, 2018 |title=GAME RECAP: Bills fall on the road in Green Bay |url=https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |url-status=live |archive-url=https://web.archive.org/web/20181008214257/https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |archive-date=October 8, 2018 |access-date=December 17, 2018 |website=buffalobills.com}}</ref> Insyd Week 5, Rodgers pass for 442 yards (de second-best of ein career) den three touchdowns, buh sanso two fumbles, insyd a 31–23 loss to de Lions.<ref>{{Cite web |last=Owczarski |first=Jim |date=October 7, 2018 |title=Packers doomed by slow start, Mason Crosby's misses in loss to Lions |url=https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |url-status=live |archive-url=https://web.archive.org/web/20201109032148/https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |archive-date=November 9, 2020 |access-date=December 17, 2018 |website=USA Today}}</ref> Insyd de following game, a 33–30 victory over de 49ers, he get 425 passing yards den two passing touchdowns.<ref>{{Cite web |date=October 16, 2018 |title=Bloodied Aaron Rodgers leads Packers and Crosby to redemption over 49ers |url=https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |url-status=live |archive-url=https://web.archive.org/web/20181030035759/https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |archive-date=October 30, 2018 |access-date=October 29, 2018 |website=The Guardian |agency=Associated Press}}</ref>
Following de bye-week, despite a continuing knee injury,<ref>{{Cite news|last=Maske|first=Mark|date=October 16, 2018|title=Aaron Rodgers's knee isn't quite right. But he's still good enough to carry the Packers|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|url-status=live|access-date=December 6, 2019|archive-url=https://web.archive.org/web/20191207093807/https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|archive-date=December 7, 2019}}</ref> Rodgers get ein third consecutive week plus a 100+ quarterback rating,<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log (Games 5, 6, and 8) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231012655/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |archive-date=December 31, 2019 |access-date=December 5, 2019 |website=[[Pro Football Reference]]}}</ref> wich include 286 yards passing, no interceptions, den a go-ahead 40-yard touchdown pass to [[Marquez Valdes-Scantling]] insyd a 29–27 loss to de Los Angeles Rams.<ref>{{Cite web |last=Beacham |first=Greg |date=October 29, 2018 |title=Late fumble keeps Rams unbeaten with 29–27 win over Packers |url=https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |url-status=live |archive-url=https://web.archive.org/web/20181217202249/https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref>
Insyd Week 14, against de Falcons, Rodgers set an NFL record by converting ein 359th consecutive pass widout an interception, breaking Tom Brady ein previous record.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 9, 2018 |title=No picks for Packer: Rodgers sets no-INT mark |url=https://www.espn.com/nfl/story/_/id/25491996 |url-status=live |archive-url=https://web.archive.org/web/20181210123157/http://www.espn.com/nfl/story/_/id/25491996 |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=[[ESPN.com]]}}</ref> Insyd Week 15, against de Chicago Bears, Rodgers throw for 274 yards den an interception insyd a 24–17 loss. Rodgers ein record streak widout an interception end plus 402 pass attempts after he be intercepted by free safety [[Eddie Jackson (safety)|Eddie Jackson]].<ref>{{Cite web |last=Cohen |first=Jay |date=December 16, 2018 |title=Rodgers throws interception as Packers lose 24–17 to Bears |url=https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |url-status=live |archive-url=https://web.archive.org/web/20181217145036/https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref> During Week 16 against de Jets, Rodgers fini plus 442 passing yards, two passing touchdowns, den two rushing touchdowns. Trailing at one point by 15 points, Rodgers den de Packers win 44–38 insyd overtime.<ref>{{Cite web |date=December 23, 2018 |title=Rodgers leads Packers to wild 44–38 overtime win over Jets |url=https://www.espn.com/nfl/recap?gameId=401030870 |url-status=live |archive-url=https://web.archive.org/web/20190101002910/http://www.espn.com/nfl/recap?gameId=401030870 |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> He match ein own feat of achieving at least 400 passing yards, two passing touchdowns, deb two rushing touchdowns insyd a single game. De only oda time insyd NFL history wey na e occur be wen Rodgers accomplish am insyd 2011 against de Denver Broncos.<ref>{{Cite web |last=Kruse |first=Zach |date=December 24, 2018 |title=Packers QB Aaron Rodgers matches his own rare feat vs. Jets |url=https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |url-status=live |archive-url=https://web.archive.org/web/20190123071358/https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Packers Wire}}</ref>
On December 18, 2018, na dem name Rodgers to ein seventh Pro Bowl.<ref>{{Cite web |date=December 18, 2018 |title=NFL reveals rosters for 2019 Pro Bowl in Orlando |url=https://www.nfl.com/news/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando-0ap3000001001792 |url-status=live |archive-url=https://web.archive.org/web/20190108220211/http://www.nfl.com/news/story/0ap3000001001792/article/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando |archive-date=January 8, 2019 |access-date=January 1, 2019 |publisher=National Football League}}</ref> He decline de appearance secof injury wey na he be replaced by [[Russell Wilson]].<ref>{{Cite web |last=Fentress |first=Aaron |date=January 9, 2019 |title=Russell Wilson replaces Aaron Rodgers on NFC Pro Bowl team |url=https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |url-status=live |archive-url=https://web.archive.org/web/20190626144630/https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |archive-date=June 26, 2019 |access-date=June 26, 2019 |website=NBC Sports Northwest}}</ref>
Insyd de regular season finale against de Detroit Lions, Rodgers suffer a concussion early insyd de game wey he no go return.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 30, 2018 |title=Aaron Rodgers suffers concussion in Packers' regular season finale |url=https://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |url-status=live |archive-url=https://web.archive.org/web/20190101005826/http://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]]}}</ref> Na den then send am to de hospital to test for concussion symptoms.<ref name="2018conc">{{Cite web |last=Jones |first=Brian |date=December 31, 2018 |title=Aaron Rodgers sent to hospital after suffering concussion |url=https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |url-status=live |archive-url=https://web.archive.org/web/20220427185549/https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |archive-date=April 27, 2022 |access-date=January 1, 2019 |website=247 SPORTS}}</ref> Secof na de Packers already be eliminated from playoff contention, Rodgers answer questions about whether he for be playing, for fear of injury, by saying: "''That's just not the way I lead, and I'm super-competitive, and I want to be out there with the guys and I look forward to being out there."''<ref name="2018conc" /> Na dem later spot Rodgers at de Packers dema facility after de game.<ref name="2018conc" />
Rodgers fini de season plus 372 completions, 597 attempts, 4,442 passing yards, 25 passing touchdowns, two interceptions den a passer rating of 97.6.<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/ |access-date=January 8, 2026 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to setting de record for consecutive passes widout an interception during de season, Rodgers set NFL records for interception percentage for a season, plus only 0.335% of ein passes be intercepted, den for de amount of thrown away passes.<ref name="passintpfr">{{Cite web |title=NFL Pass Interception % Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20190102050903/https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |archive-date=January 2, 2019 |access-date=January 1, 2019 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |last=Smith |first=Michael David |date=December 3, 2018 |title=Aaron Rodgers avoids interceptions by throwing the ball away at a record rate |url=https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |url-status=live |archive-url=https://web.archive.org/web/20190807024232/https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |archive-date=August 7, 2019 |access-date=November 12, 2019 |website=ProFootballTalk}}</ref> Na dem rank am eighth by ein fellow players on de ''NFL Top 100'' Players of 2019.<ref>{{Cite web |title=2019 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112140727/https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2019 ====
[[File:Aaron_Rodgers_2019.jpg|right|thumb|Rodgers insyd a game against de Washington Redskins ]]
Rodgers start de 2019 season plus a new head coach insyd [[Matt LaFleur]] following de departure of Mike McCarthy.<ref>{{Cite web |last=Wilde |first=Jason |date=September 17, 2019 |title=Believing offensive success is 'close,' Matt LaFleur and Aaron Rodgers focus on making more plays |url=https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |url-status=live |archive-url=https://web.archive.org/web/20190927192039/https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=madison.com}}</ref> De Packers offense rely less on Rodgers ein trademark passes den more on heavy formations den play-action throws to take advantage of running back [[Aaron Jones (running back)|Aaron Jones]].<ref>{{Cite web |last=Mays |first=Robert |date=January 17, 2020 |title=The Incalculable Legacy of Aaron Rodgers |url=https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |url-status=live |archive-url=https://web.archive.org/web/20200409091343/https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |archive-date=April 9, 2020 |access-date=April 7, 2020 |website=The Ringer |language=en}}</ref>
Rodgers help lead de Packers to a 3–0 start plus victories over de Bears, Vikings, den Broncos.<ref>{{Cite web |last=Wilner |first=Barry |date=September 6, 2019 |title=Packers' D, Aaron Rodgers beat Bears 10–3 in opener |url=https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |url-status=live |archive-url=https://web.archive.org/web/20190927192201/https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref><ref>{{Cite web |date=September 15, 2019 |title=Packers ride Rodgers' hot start to 21–16 win over Vikings |url=https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |url-status=dead |archive-url=https://web.archive.org/web/20190927192237/https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |publisher=WBAY |agency=Associated Press}}</ref><ref>{{Cite web |last=Jenkins |first=Keith |date=September 22, 2019 |title=Packers remain unbeaten with 27–16 win over Broncos |url=https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |url-status=live |archive-url=https://web.archive.org/web/20190927193720/https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref> Insyd Week 4, against de Eagles on ''Thursday Night Football'', he get 422 passing yards den two passing touchdowns, buh he sanso throw de game-ending interception as de Packers be handed dema first loss of de season by a score of 34–27.<ref>{{Cite web |date=September 27, 2019 |title=Eagles pick off Aaron Rodgers' late pass to beat Packers |url=https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |url-status=live |archive-url=https://web.archive.org/web/20190927063930/https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=Los Angeles Times |agency=Associated Press}}</ref> Insyd Week 7, against de Raiders, Rodgers post ein first-ever game plus a perfect passer rating of 158.3, de first quarterback insyd team history to do so.<ref>{{Cite web |last=Joseph |first=Andrew |date=October 20, 2019 |title=The Packers players were so pumped to find out Aaron Rodgers had a perfect passer rating |url=https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |url-status=live |archive-url=https://web.archive.org/web/20191021004107/https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |archive-date=October 21, 2019 |access-date=October 20, 2019 |website=USA Today}}</ref> He plete 25-of-31 passes for 429 yards den five touchdowns insyd de 42–24 victory.<ref>{{Cite web |last=Kruse |first=Zach |date=October 20, 2019 |title=Perfection: Aaron Rodgers finishes with perfect passer rating vs. Raiders |url=https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |url-status=live |archive-url=https://web.archive.org/web/20191020214833/https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |archive-date=October 20, 2019 |access-date=October 20, 2019 |website=PackersWire}}</ref> Na dem name am de NFC Offensive Player of de Week for ein performance.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 23, 2019 |title=Aaron Rodgers, Jacoby Brissett among Players of the Week |url=https://www.nfl.com/news/aaron-rodgers-jacoby-brissett-among-players-of-the-week-0ap3000001068643 |url-status=live |archive-url=https://web.archive.org/web/20191023124430/http://www.nfl.com/news/story/0ap3000001068643/article/aaron-rodgers-jacoby-brissett-among-players-of-the-week |archive-date=October 23, 2019 |access-date=October 23, 2019 |publisher=National Football League}}</ref> Insyd Week 17, against de Lions, Rodgers help lead de team to a 23–20 comeback win. As a result of de victory, de Packers secure a first round bye insyd de playoffs.<ref>{{Cite web |date=December 29, 2019 |title=Packers barely beat Lions 23–20 to earn first-round bye |url=https://www.espn.com/nfl/recap?gameId=401127983 |url-status=live |archive-url=https://web.archive.org/web/20220415135127/https://www.espn.com/nfl/recap?gameId=401127983 |archive-date=April 15, 2022 |access-date=December 29, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers fini de 2019 season plus 4,002 passing yards, 26 passing touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2019 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |url-status=live |archive-url=https://web.archive.org/web/20191231012649/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |archive-date=December 31, 2019 |access-date=December 31, 2019 |website=[[Pro Football Reference]]}}</ref>
Insyd de Divisional Round of de playoffs against de Seahawks, Rodgers plete 16 passes on 27 attempts wey he throw for 243 yards den two touchdowns during de 28–23 win.<ref>{{Cite web |date=January 12, 2020 |title=Packers hold off Seahawks 28–23 to reach NFC title game |url=https://www.espn.com/nfl/recap?gameId=401131042 |url-status=live |archive-url=https://web.archive.org/web/20200417042143/https://www.espn.com/nfl/recap?gameId=401131042 |archive-date=April 17, 2020 |access-date=January 13, 2020 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd de NFC Championship Game against de 49ers, Rodgers plete 31 passes on 39 attempts wey he throw for 326 yards den two touchdowns, buh he sanso throw two interceptions, wey dey include one to [[Richard Sherman (American football)|Richard Sherman]] insyd de final two minutes of de game as de Packers loose 37–20.<ref>{{Cite web |last=Wagner-McGough |first=Sean |date=January 19, 2020 |title=Packers suffer system-wide failure in ugly NFC Championship loss as clock ticks on the Aaron Rodgers era |url=https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |url-status=live |archive-url=https://web.archive.org/web/20200121163627/https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |archive-date=January 21, 2020 |access-date=January 20, 2020 |website=CBS Sports}}</ref> De loss mark Rodgers ein third consecutive NFC Championship loss (a streak wey go extend to four de following season).<ref name="Clunker">{{Cite web |last=Reischel |first=Rob |date=January 19, 2020 |title=Green Bay Packers' Aaron Rodgers Has Another NFC Championship Game Clunker |url=https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |url-status=live |archive-url=https://web.archive.org/web/20200120124354/https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |archive-date=January 20, 2020 |access-date=January 22, 2020 |website=Forbes}}</ref> Na dem rank am 16th by ein fellow players on de ''NFL Top 100'' Players of 2020.<ref>{{Cite web |title=2020 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200015/https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2020: Third MVP ====
Prior to a Week 5 bye, Rodgers help lead de Packers to a four-game winning streak to start de 2020 season.<ref>{{Cite web |date=October 7, 2020 |title=Packers head into their Week 5 bye |url=https://www.packers.com/news/packers-head-into-their-week-5-bye |url-status=live |archive-url=https://web.archive.org/web/20211115190601/https://www.packers.com/news/packers-head-into-their-week-5-bye |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=packers.com |language=en-US}}</ref> That winning streak go end insyd Week 6 against de Buccaneers, insyd wich Rodgers throw for 160 yards den two interceptions, wey dey include a pick-six (de third of ein professional career), during de 38–10 loss.<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – October 18th, 2020 |url=https://www.pro-football-reference.com/boxscores/202010180tam.htm |url-status=live |archive-url=https://web.archive.org/web/20201019130703/https://www.pro-football-reference.com/boxscores/202010180tam.htm |archive-date=October 19, 2020 |access-date=October 22, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> After a 3–2 stretch give de team, Rodgers throw for 211 yards den four touchdowns insyd a 41–25 victory over de Bears insyd Week 12. During de game, he cam be de 11th player insyd NFL history to eclipse 50,000 career passing yards, achieving de milestone on a 39-yard touchdown pass to tight end [[Robert Tonyan]] midway thru de third quarter.<ref>{{Cite magazine|last=Huber|first=Bill|date=November 29, 2020|title=Rodgers Makes History with 50,000-Yard Milestone|url=https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|url-status=live|archive-url=https://web.archive.org/web/20201130035319/https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|archive-date=November 30, 2020|access-date=November 30, 2020|magazine=Sports Illustrated}}</ref> In Week 13 against de Eagles, Rodgers throw for 295 yards den three touchdowns during de 30–16 win. Rodgers ein third touchdown pass of de game be to wide receiver [[Davante Adams]] wey na e be ein 400th career touchdown pass.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – December 6th, 2020 |url=https://www.pro-football-reference.com/boxscores/202012060gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20201125163729/https://www.pro-football-reference.com/boxscores/202012060gnb.htm |archive-date=November 25, 2020 |access-date=December 8, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Na dem name Rodgers de NFC Offensive Player of de Week for ein performance insyd Week 13.<ref>{{Cite web |last=Gordon |first=Grant |date=December 9, 2020 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |url-status=live |archive-url=https://web.archive.org/web/20201209165050/https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |archive-date=December 9, 2020 |access-date=December 10, 2020 |publisher=National Football League |language=en-US}}</ref> On December 21, 2020, na dem select am for de 2021 Pro Bowl.<ref>{{Cite web |date=December 21, 2020 |title=NFL reveals complete AFC, NFC rosters for 2021 Pro Bowl |url=https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |url-status=live |archive-url=https://web.archive.org/web/20201222000525/https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |archive-date=December 22, 2020 |access-date=December 21, 2020 |publisher=National Football League}}</ref> N dem name Rodgers de NFC Offensive Player of de Month for ein performance insyd December after passing for 15 touchdowns den one interception insyd five victories for de Packers.<ref>{{Cite web |last=Gordon |first=Grant |date=January 7, 2021 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen among Players of the Month |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20210107133506/https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |archive-date=January 7, 2021 |access-date=January 7, 2021 |publisher=National Football League}}</ref>
Overall, Rodgers fini de 2020 regular season plus 4,299 passing yards, 48 passing touchdowns, den five interceptions. Ein passing touchdowns total set a new franchise record.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> He get seven total games plus four passing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2020 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |url-status=live |archive-url=https://web.archive.org/web/20210109144744/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |archive-date=January 9, 2021 |access-date=January 7, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> He lead de league insyd numerous statistical categories, wey dey include completion percentage, touchdown passes, den passer rating.<ref>{{Cite web |last=Kruse |first=Zach |date=January 4, 2021 |title=Packers QB Aaron Rodgers led NFL in all these statistical categories in 2020 |url=https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |url-status=live |archive-url=https://web.archive.org/web/20210104150141/https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |archive-date=January 4, 2021 |access-date=January 7, 2021 |website=Packers Wire |language=en-US}}</ref> On January 8, 2021, he make de 2020 All-Pro Team first-team.<ref>{{Cite web |date=January 8, 2021 |title=2020 NFL All-Pro Team Roster |url=https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |url-status=live |archive-url=https://web.archive.org/web/20210108171953/https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |archive-date=January 8, 2021 |access-date=January 8, 2021 |work=Associated Press News}}</ref> De Pro Football Writers of America name am de NFL MVP.<ref>{{Cite web |last=Werner |first=Barry |date=January 21, 2021 |title=Aaron Rodgers earns PFWA NFL MVP honors |url=https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |url-status=live |archive-url=https://web.archive.org/web/20210131171403/https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |archive-date=January 31, 2021 |access-date=January 24, 2021 |website=Yahoo! Sports}}</ref>
De Packers fini plus a 13–3 record, dem win de NFC North, wey dem earn a first-round bye for de NFC playoffs.<ref>{{Cite web |title=2020 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2020/index.htm |url-status=live |archive-url=https://web.archive.org/web/20211115190600/https://www.pro-football-reference.com/years/2020/index.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de Divisional Round of de playoffs against de Rams, Rodgers throw for 296 yards den two touchdowns wey he sanso rush for anoda touchdown during de 32–18 win.<ref>{{Cite web |title=Divisional Round – Los Angeles Rams at Green Bay Packers – January 16th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210118220025/https://www.pro-football-reference.com/boxscores/202101160gnb.htm |archive-date=January 18, 2021 |access-date=January 20, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de NFC Championship against de Buccaneers, Rodgers throw for 346 yards den three touchdowns, buh he sanso throw an interception wey na he be sacked five times while he be constantly pressured during de 31–26 loss.<ref name="mcatee_01242021">{{Cite news|last=McAtee|first=Riley|date=January 24, 2021|title=The Packers' Championship-Game Curse Continues. Will It Cost Them Aaron Rodgers?|work=The Ringer|url=https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125040540/https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|archive-date=January 25, 2021}}</ref><ref>{{Cite news|last=Hoffman|first=Benjamin|date=January 24, 2021|title=What We Learned From the N.F.L.'s Conference Championships|work=The New York Times|url=https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125041821/https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|archive-date=January 25, 2021}}</ref><ref name="demovsky_01242021">{{Cite web |last=Demovsky |first=Rob |date=January 24, 2021 |title=Aaron Rodgers uncertain about future with Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20210125195535/https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |archive-date=January 25, 2021 |access-date=January 25, 2021 |website=[[ESPN.com]]}}</ref> Rodgers fall to 1–4 insyd conference championship games, becoming de first quarterback insyd NFL history to loose four in a row.<ref name="mcatee_01242021" /><ref name="demovsky_01242021" /><ref>{{Cite web |title=NFC Championship – Tampa Bay Buccaneers at Green Bay Packers – January 24th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101240gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210129001224/https://www.pro-football-reference.com/boxscores/202101240gnb.htm |archive-date=January 29, 2021 |access-date=January 31, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> After de season, he win de AP Most Valuable Player Award<ref>{{Cite web |last=Shook |first=Nick |date=February 6, 2021 |title=Packers QB Aaron Rodgers named 2020 AP NFL Most Valuable Player |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |url-status=live |archive-url=https://web.archive.org/web/20210207034518/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |archive-date=February 7, 2021 |access-date=February 6, 2021 |publisher=National Football League}}</ref> as well as de FedEx Air Player of de Year.<ref>{{Cite web |title=FedEx Air and Ground Players of the Year |url=https://www.nfl.com/voting/air-and-ground/player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20210125192004/https://www.nfl.com/voting/air-and-ground/player-of-the-year |archive-date=January 25, 2021 |access-date=January 25, 2021 |publisher=National Football League}}</ref> Na dem rank am 3rd by ein fellow players on de ''NFL Top 100'' Players of 2021.<ref>{{Cite web |title=2021 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200023/https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2021: Fourth MVP ====
[[File:Aaron_Rodgers_Packers_OCT2021_(cropped).jpg|right|thumb|Rodgers insyd 2021]]
Rodgers ein 2021 season get a rough start, as he plete 15 of 28 passes for 133 yards den two interceptions as Green Bay loose 38–3 to de Saints at TIAA Bank Field.<ref>{{Cite web |last=Benjamin |first=Cody |date=September 12, 2021 |title=Packers bench Aaron Rodgers for Jordan Love as Jameis Winston torches Green Bay in Week 1 |url=https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |url-status=live |archive-url=https://web.archive.org/web/20210913012242/https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |archive-date=September 13, 2021 |access-date=September 13, 2021 |website=CBS Sports |language=en}}</ref> Na dem pull am insyd de fourth quarter for [[Jordan Love]] as na ein chance of a comeback be all buh eliminated.<ref>{{Cite web |last=Polacek |first=Scott |date=September 12, 2021 |title=Packers' Aaron Rodgers Pulled for Jordan Love amid Blowout by Jameis Winston, Saints |url=https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |url-status=live |archive-url=https://web.archive.org/web/20211021021121/https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |archive-date=October 21, 2021 |access-date=October 21, 2021 |website=Bleacher Report |language=en}}</ref> However, Rodgers dem de Packers recover, going on a seven-game winning streak following de loss to New Orleans.<ref>{{Cite web |last1=Hodkiewicz |first1=Wes |last2=Spofford |first2=Mike |date=October 28, 2021 |title=Late interception wins it for Packers, 24–21 over Cardinals |url=https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |url-status=live |archive-url=https://web.archive.org/web/20211030160810/https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |archive-date=October 30, 2021 |access-date=October 30, 2021 |website=packers.com |language=en-US}}</ref>
Insyd Week 6, Rodgers seal a 24–14 victory against de Bears plus a six-yard touchdown run with 4:34 to go insyd de fourth quarter. During ein celebration, he yell at de Chicago crowd, "''All my f***ing life I own you! I still own you!"''<ref>{{cite web |last1=Demovsky |first1=Rob |date=October 17, 2021 |title=Packers QB Aaron Rodgers taunts jeering Bears fans after game-clinching TD run: 'I still own you' |url=https://www.espn.com/nfl/story/_/id/32419669/packers-qb-aaron-rodgers-taunts-jeering-bears-fans-game-clinching-td-run-own-you |access-date=September 3, 2025 |website=ESPN.com |publisher=ESPN}}</ref> Na de utterance be heavily discussed insyd ein aftermath, den two months later- wen Rodgers play de second game against Chicago- he state say na he get no regrets for making de comment.<ref>{{cite web |last1=Goodbread |first1=Chase |date=December 9, 2021 |title=Packers QB Aaron Rodgers has no regrets for saying 'I own you' to Bears fan |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-has-no-regrets-for-saying-i-own-you-to-bears-fan |access-date=September 3, 2025 |website=NFL.com |publisher=NFL}}</ref>
Following a positive test for [[COVID-19]], na dem place Rodgers on de COVID-19 reserve list on November 3.<ref>{{Cite web |date=November 3, 2021 |title=Packers place QB Aaron Rodgers on reserve/COVID-19 list |url=https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211107032353/https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |archive-date=November 7, 2021 |access-date=November 15, 2021 |website=Packers.com}}</ref> He miss 10 days per de league ein COVID-19 policies for unvaccinated players, wey dey include a game against de Chiefs.<ref>{{Cite web |last=Shook |first=Nick |date=November 3, 2021 |title=Packers QB Aaron Rodgers tests positive for COVID-19, will not play in Week 9 versus Chiefs |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |url-status=live |archive-url=https://web.archive.org/web/20211103152721/https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |archive-date=November 3, 2021 |access-date=November 3, 2021 |publisher=National Football League}}</ref> Despite answering "''Yeah, I'm immunized''" wen dem biz am during de preseason if na he be vaccinated against COVID-19, na he no actually receive a vaccination. Instead, he receive homeopathic treatment from ein personal doctor. While unvaccinated, he commit multiple violations of NFL COVID-19 protocols for unvaccinated players, wey dey include attending parties plus teammates while he no dey use PPE den dey appear unmasked at multiple postgame press conferences.<ref>{{Cite news|last=Jenkins|first=Sally|date=November 4, 2021|title=Aaron Rodgers is entitled to stay unvaccinated. He's not entitled to lie about it|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211105053620/https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|archive-date=November 5, 2021}}</ref><ref>{{Cite web |last=Shpigel |first=Ben |date=November 3, 2021 |title=Aaron Rodgers Out After Positive Coronavirus Test |url=https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |url-status=live |archive-url=https://web.archive.org/web/20211105230713/https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |archive-date=November 5, 2021 |access-date=November 6, 2021 |website=[[The New York Times]]}}</ref><ref>{{Cite news|last=Maske|first=Mark|date=November 3, 2021|title=Aaron Rodgers tests positive for coronavirus, is considered unvaccinated under NFL rules|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211103182339/https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|archive-date=November 3, 2021}}</ref><ref name="Paras">{{Cite web |last=Paras |first=Matthew |date=November 8, 2021 |title=State Farm backs Rodgers despite vaccine controversy |url=https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |url-status=live |archive-url=https://web.archive.org/web/20211110054603/https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=The Washington Times |language=en-US}}</ref><ref>{{Cite web |last=Florio |first=Mike |date=November 6, 2021 |title=Aaron Rodgers consulted with Joe Rogan, has taken Ivermectin |url=https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |url-status=live |archive-url=https://web.archive.org/web/20211110054606/https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=ProFootballTalk |language=en-US}}</ref> After a review, na dem fine am $14,650 for violations of de agreed protocols wey na ein team be fined $300,000.<ref name="demosky1">{{Cite web |last=Demovsky |first=Rob |date=November 10, 2021 |title=Green Bay Packers, Aaron Rodgers, Allen Lazard fined for COVID-19 protocol violations, source says |url=https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |url-status=live |archive-url=https://web.archive.org/web/20220417022230/https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |archive-date=April 17, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]]}}</ref><ref name="gordon1">{{Cite web |last=Gordon |first=Grant |date=November 9, 2021 |title=Packers fined $300K, Aaron Rodgers, Allen Lazard fined $14K for violation of COVID protocols |url=https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |url-status=live |archive-url=https://web.archive.org/web/20220415084129/https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |archive-date=April 15, 2022 |access-date=January 23, 2022 |publisher=National Football League}}</ref>
Na Rodgers be activated off de reserve/COVID-19 list on November 13, wey he return to play de next day against de Seahawks, a game de Packers win 17–0.<ref>{{Cite web |date=November 13, 2021 |title=Packers activate QB Aaron Rodgers off reserve/COVID-19 list |url=https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211113210134/https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |archive-date=November 13, 2021 |access-date=November 13, 2021 |website=Packers.com}}</ref> Insyd Week 15, Rodgers throw for 268 yards den three touchdowns insyd a 31–30 win over de Ravens, wich clinch de NFC North title give de Packers for a third consecutive season wey e earn am NFC Offensive Player of de Week honors.<ref>{{Cite web |last=Gordon |first=Grant |date=December 22, 2021 |title=Packers QB Aaron Rodgers, Chiefs TE Travis Kelce lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |url-status=live |archive-url=https://web.archive.org/web/20220113012121/https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |archive-date=January 13, 2022 |access-date=January 17, 2022 |publisher=National Football League}}</ref> On December 23, 2021, na dem name Rodgers to ein tenth Pro Bowl.<ref>{{Cite web |date=December 22, 2021 |title=2022 NFL Pro Bowl rosters for AFC, NFC: Bucs' Tom Brady gets record 15th selection |url=https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |url-status=live |archive-url=https://web.archive.org/web/20211228200849/https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |archive-date=December 28, 2021 |access-date=December 24, 2021 |website=[[ESPN.com]]}}</ref>
Insyd a Week 16 victory over de Browns, Rodgers throw ein 443rd career touchdown pass, passing Brett Favre for de most all-time career touchdown passes insyd Packers history.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 25, 2021 |title=Rodgers tops Favre's Pack record for TD passes |url=https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |url-status=live |archive-url=https://web.archive.org/web/20211227221346/https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |archive-date=December 27, 2021 |access-date=January 17, 2022 |website=[[ESPN.com]] |language=en}}</ref> For ein play insyd de month of December, Rodgers earn NFC Offensive Player of de Month honors.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=December 30, 2021 |title=For 10th time, Packers QB Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20220104191144/https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month#:~:text=GREEN%2520BAY%2520%25E2%2580%2593%2520Following%2520a%2520dominant,10th%2520time%2520in%2520his%2520career |archive-date=January 4, 2022 |access-date=January 17, 2022 |website=Packers.com |language=en-US}}</ref> He fini de 2021 season plus 4,115 passing yards, 37 touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2021 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2021/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> On January 14, 2022, Rodgers earn ein fourth career first-team All-Pro selection.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=January 14, 2022 |title=Three Packers players named first-team All-Pro |url=https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |url-status=live |archive-url=https://web.archive.org/web/20220116105423/https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |archive-date=January 16, 2022 |access-date=January 14, 2022 |website=packers.com}}</ref>
Insyd de Divisional Round against de 49ers, Rodgers throw for 225 yards, buh a poor performance by de special teams unit haunt de Packers, dem loose 13–10. Na e be Rodgers ein fourth loss insyd as many games to de 49ers insyd de postseason den Rodgers ein second home divisional loss.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> He sanso fail to notice a wide–open Allen Lazard (den [[Equanimeous St. Brown]]) on ein last throw of de game, instead targeting Davante Adams insyd double coverage for a Hail Mary attempt.<ref>{{Cite web |last=Farrar |first=Doug |title=What Aaron Rodgers missed on the play that could have saved the Packers' season |url=https://touchdownwire.usatoday.com/story/sports/nfl/touchdown/2022/01/23/aaron-rodgers-davante-adams-allen-lazard-2021-nfl-playoffs/80662791007/ |access-date=2026-08-06 |website=Touchdown Wire |language=en-US}}</ref> After de season, Rodgers win de AP NFL Most Valuable Player Award for de second consecutive season den de fourth time overall.<ref>{{Cite web |last=Shook |first=Nick |date=February 10, 2022 |title=Packers QB Aaron Rodgers named 2021 AP NFL MVP |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20220425153314/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |archive-date=April 25, 2022 |access-date=February 11, 2022 |publisher=National Football League}}</ref> Rodgers cam be de fifth player to win consecutive MVPs den first since Peyton Manning between 2008 den 2009.<ref>{{Cite web |last=Sutelan |first=Edward |date=February 10, 2022 |title=NFL MVP back-to-back winners: Aaron Rodgers set to join rare company in NFL history |url=https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |url-status=live |archive-url=https://web.archive.org/web/20220413074439/https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |archive-date=April 13, 2022 |access-date=February 20, 2022 |website=sportingnews.com |language=en}}</ref> Rodgers join Manning as de only players insyd NFL history to win at least four MVPs.<ref>{{Cite web |last=Spofford |first=Mike |date=February 10, 2022 |title=Packers QB Aaron Rodgers wins fourth NFL MVP award |url=https://www.packers.com/news/packers-qb-aaron-rodgers-wins-fourth-nfl-mvp-award |access-date=January 19, 2023 |website=packers.com |language=en-US}}</ref> Na dem rank am third by ein fellow players on de ''NFL Top 100'' Players of 2022.<ref>{{Cite web |title=2022 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2022-nfl-top-100.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2022 ====
[[File:Aaron_Rodgers_OCT2022_(cropped).jpg|thumb|Rodgers insyd 2022]]
[[File:Aaron_Rodgers_Packers_vs_Commanders_OCT2022.jpg|left|thumb|Rodgers dey play against de Washington Commanders insyd 2022]]
On March 8, Rodgers confirm say he go return den play give de Packers for de 2022 season after speculations dat Rodgers go fi retire anaa demand a trade to anoda team.<ref>{{Cite web |last=Demovsky |first=Rob |date=March 8, 2021 |title=QB Aaron Rodgers returning to play for Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220411070329/https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |archive-date=April 11, 2022 |access-date=March 9, 2021 |website=[[ESPN.com]]}}</ref> Na der be reports say Rodgers den de Packers agree to terms on a 4-year, $200 million contract extension wey go make am de highest-paid player insyd NFL history, buh Rodgers deny those reports on Twitter, wey he state say de numbers on de proposed contract be inaccurate, den dat he be yet to sign such a contract. He confirm, however, say he go return to play ein 18th NFL season plus de Packers.<ref>{{Cite web |date=March 15, 2022 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |url-status=live |archive-url=https://web.archive.org/web/20220404205504/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |archive-date=April 4, 2022 |access-date=April 27, 2022 |website=Packers.com}}</ref>
On March 16, he officially sign ein contract extension. Na de final terms of de contract be a 3-year contract (wich replace de final year of ein existing contract) worth $150.8 million, plus $101.5 million guaranteed. De new contract make am de highest paid player insyd North American sports history on an annual basis, surpassing de NBA ein [[Damian Lillard]] ein $49 million per annum contract.<ref>{{Cite web |last=Roscher |first=Liz |date=March 15, 2022 |title=Aaron Rodgers' Packers contract is reportedly official, and the numbers are staggering |url=https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |url-status=live |archive-url=https://web.archive.org/web/20220427025539/https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |archive-date=April 27, 2022 |access-date=March 17, 2022 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd de season opener against de Vikings, Rodgers throw for 195 yards den an interception insyd de 23–7 loss.<ref>{{Cite web |last=Demovsky |first=Rob |date=September 12, 2022 |title=Following loss to Minnesota Vikings, QB Aaron Rodgers says Green Bay Packers 'hurting ourselves' with 'too many mental mistakes' |url=https://www.espn.com/nfl/story/_/id/34575984/following-loss-minnesota-vikings-qb-aaron-rodgers-says-green-bay-packers-hurting-ourselves-too-many-mental-mistakes |access-date=September 12, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{cite web |last=Huber |first=Bill |date=September 12, 2022 |title=Mental Mistakes Frustrate Rodgers in Packers' Loss at Vikings |url=https://www.si.com/nfl/packers/gameday/mental-mistakes-frustrate-rodgers-in-packers-loss-at-vikings |access-date=July 1, 2025 |website=SI.com}}</ref> Insyd Week 4 against de Patriots, Rodgers throw for 251 yards den two touchdowns, buh he sanso throw ein fourth career pick-six to [[Jack Jones (American football)|Jack Jones]] insyd de 27–24 overtime win.<ref>{{Cite web |last=Patra |first=Kevin |date=October 3, 2022 |title=Aaron Rodgers on Packers' OT win over Patriots: 'This way of winning, I don't think, is sustainable' |url=https://www.nfl.com/news/aaron-rodgers-packers-patriots-this-way-of-winning-not-sustainable |access-date=October 13, 2022 |publisher=National Football League}}</ref> Insyd Week 5 at London, Rodgers throw for 222 yards den two touchdowns insyd an upset loss against de Giants.<ref>{{Cite news|last=Larrison|first=Ryan|date=October 9, 2022|title=Aaron Rodgers threw two touchdowns in a loss at London|url=https://www.rotoballer.com/player-news/aaron-rodgers-throws-two-touchdowns-during-loss-in-london/1079701|access-date=October 10, 2022|website=rotoballer.com}}</ref> Insyd Week 8 against de Buffalo Bills on Sunday Night Football, Rodgers throw for 203 yards, two touchdowns den one interception as de Packers loose dema fourth consecutive game insyd de 27–17 defeat.<ref>{{Cite web |last=Patra |first=Kevin |date=October 31, 2022 |title=Aaron Rodgers on the Packers' 3–5 start |url=https://www.nfl.com/news/aaron-rodgers-packers-3-5-start-nobody-feels-sorry-for-us-bills |access-date=November 5, 2022 |publisher=National Football League |language=en-US}}</ref> De next week against de Lions, Rodgers throw for 291 yards, a touchdown, den three interceptions insyd de 15–9 loss. Na e be de first time since Week 15 of de 2017 season wey Rodgers throw three interceptions insyd a game.<ref>{{Cite web |date=November 6, 2022 |title=Aaron Rodgers throws 3 INTs, lets Lions beat Packers 15–9 |url=https://www.cbssports.com/nfl/news/aaron-rodgers-throws-3-ints-lets-lions-beat-packers-15-9/ |access-date=November 6, 2022 |website=CBSSports.com |language=en |agency=Associated Press}}</ref> Rodgers bounce back de following week against de Cowboys, completing 14-of-20 passes for 224 yards den three touchdowns insyd 31–28 overtime victory.<ref>{{Cite web |last=Bubel |first=Jennifer |date=November 13, 2022 |title=Dallas Cowboys vs. Green Bay Packers: Stats, Scores, Highlights |url=https://en.as.com/nfl/dallas-cowboys-vs-green-bay-packers-live-online-stats-scores-and-highlights-nfl-week-10-n/ |access-date=November 15, 2022 |website=AS USA |language=en-us}}</ref><ref>{{Cite web |date=November 13, 2022 |title=Rodgers rallies Packers past McCarthy's Cowboys 31–28 in OT |url=https://www.espn.com/nfl/recap/_/gameId/401437131 |access-date=November 15, 2022 |website=[[ESPN.com]] |language=en-us |agency=Associated Press}}</ref> Following a Week 11 loss to de Titans, Rodgers confirm na he dey play plus a broken thumb on ein throwing hand he suffer insyd Week 5.<ref>{{Cite web |last=Alper |first=Josh |date=November 23, 2022 |title=Aaron Rodgers says he's been playing with a broken thumb |url=https://profootballtalk.nbcsports.com/2022/11/23/aaron-rodgers-says-hes-been-playing-with-a-broken-thumb/ |access-date=December 2, 2022 |website=ProFootballTalk |language=en-US}}</ref><ref>{{Cite web |last=Thompson |first=Scott |date=November 23, 2022 |title=Packers' Aaron Rodgers admits playing through broken thumb since Week 5 |url=https://www.foxnews.com/sports/packers-aaron-rodgers-admits-playing-through-broken-thumb-since-week-5 |access-date=November 24, 2022 |publisher=Fox News}}</ref> A Week 12 loss to de Eagles lef de Packers plus a 4–8 record, buh na de team rally off four consecutive wins to get to 8–8 before de regular season finale.<ref>{{Cite web |title=Green Bay Packers 2022 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2022/gamelog/ |access-date=January 20, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> De Packers fini plus an 8–9 record wey he miss de postseason following a Week 18 loss to de Detroit Lions insyd a win-and-in scenario for Green Bay.<ref>{{Cite web |title=2022 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2022/index.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |date=January 9, 2023 |title=How the Lions beat the Packers: Detroit eliminates rival Green Bay from playoff contention, Seahawks clinch final spot |url=https://www.nytimes.com/athletic/live-blogs/lions-packers-playoff-picture-seeding/Vj6r382oO6N1/ |access-date=January 20, 2023 |website=The Athletic |language=en}}</ref> After de game, Rodgers put ein arm around long-time teammate Cobb, wey he look solemnly around Lambeau Field before de two walked down de tunnel togeda. Sam suspected say dis indicate say Rodgers play ein last game give de Packers.<ref>{{Cite web |last=McKenna |first=Henry |date=January 9, 2023 |title=Has Packers legend Aaron Rodgers walked off Lambeau Field for the last time? |url=https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |url-status=live |archive-url=https://web.archive.org/web/20230109203158/https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |archive-date=January 9, 2023 |access-date=April 5, 2026 |website=[[Fox Sports]] |publisher=[[Fox Corporation]]}}</ref>
Rodgers fini de 2022 season plus 3,695 passing yards, 26 touchdowns, den 12 interceptions, wich mark de most for Rodgers insyd a single season since 2008.<ref>{{Cite web |title=Aaron Rodgers 2022 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2022/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |last=Kruse |first=Zach |date=January 9, 2023 |title=Aaron Rodgers throws interception on final pass of disappointing 2022 season |url=https://news.yahoo.com/aaron-rodgers-throws-interception-final-144926791.html |access-date=January 19, 2023 |publisher=Yahoo! News |language=en-US}}</ref> Na dem rank am 51st by ein fellow players on de ''NFL Top 100'' Players of 2023.<ref>{{Cite web |title=2023 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2023-nfl-top-100.htm |access-date=January 20, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
=== New York Jets ===
==== 2023: Achilles injury ====
[[File:Rodgers_vs_Bills_2.jpg|right|thumb|Rodgers (white, #8) dey take a snap against de Bills, shortly before ein injury.]]
On April 26, 2023, Rodgers be traded to de Jets, along plus de Packers dema first den fifth-round selections insyd de 2023 NFL draft, in exchange for de Jets dema first, second (via Cleveland) den sixth-round selections insyd de 2023 draft den a conditional second-round selection (wich na go convert to a first if Rodgers play 65% of de offensive snaps insyd 2023, buh na e it no happen) insyd de 2024 NFL draft.<ref>{{Cite web |last=Allen |first=Eric |date=April 26, 2023 |title=OFFICIAL Jets Acquire QB Aaron Rodgers From Green Bay Packers |url=https://www.newyorkjets.com/news/jets-acquire-qb-aaron-rodgers-from-green-bay-packers |access-date=July 28, 2023 |website=NewYorkJets.com}}</ref> De move echo de career path of ein predecessor Brett Favre, wey similarly spend over fifteen years as quarterback of de Packers before he be traded to de Jets.<ref>{{Cite web |last=Kerr |first=Jeff |date=April 24, 2023 |title=Aaron Rodgers traded to Jets: Ex-Packers QB taking eerily similar path as Brett Favre in journey to New York |url=https://www.cbssports.com/nfl/news/aaron-rodgers-traded-to-jets-ex-packers-qb-taking-eerily-similar-path-as-brett-favre-in-journey-to-new-york/ |access-date=May 1, 2023 |website=CBS Sports}}</ref> Although [[Joe Namath]] grant Rodgers permission to wear ein retired No. 12 jersey, Rodgers announce say he go return to wearing de No. 8 jersey, wich na he wear thru out ein college career plus de California Golden Bears.<ref>{{Cite web |last=Riccette |first=Billy |date=April 26, 2023 |title=Aaron Rodgers on number change: 'To me, No. 12 is Broadway Joe' |url=https://sports.yahoo.com/aaron-rodgers-number-change-no-185505111.html |access-date=July 19, 2023 |website=Yahoo! Sports}}</ref> On July 26, 2023, Rodgers take a pay cut wey he agree to a rework contract plus de Jets.<ref>{{cite web |last1=Cimini |first1=Rich |date=July 26, 2023 |title=Aaron Rodgers signs reworked contract with Jets |url=https://www.espn.com/nfl/story/_/id/38075863/aaron-rodgers-agrees-reworked-contract-jets |access-date=July 26, 2023 |website=[[ESPN.com]]}}</ref>
Making ein Jets debut insyd Week 1 on ''Monday Night Football'' against de Bills at MetLife Stadium, Rodgers injure ein left ankle on just ein fourth offensive snap after he be sacked by Bills dema defensive end [[Leonard Floyd]]. Na dem help Rodgers off de field wey dem later cart am to de locker room for further evaluation.<ref>{{Cite web |last=Cimini |first=Rich |date=September 12, 2023 |title=Jets fear QB Aaron Rodgers suffered serious Achilles injury |url=https://www.espn.com/nfl/story/_/id/38381823/qb-aaron-rodgers-injures-ankle-opening-drive-new-york-jets-debut |access-date=September 12, 2023 |website=[[ESPN.com]] |language=en}}</ref> Rodgers ein backup [[Zach Wilson]] go on to lead de Jets to a 22–16 win insyd overtime.<ref>{{Cite web |last=Kownack |first=Bobby |date=September 11, 2023 |title=Jets QB Aaron Rodgers exits Monday's overtime win against Bills on first drive; ankle X-rays negative |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-ankle-questionable-to-return-to-monday-s-game-against-bill |access-date=September 12, 2023 |website=NFL.com |language=en-US}}</ref> De next day, na dem diagnose Rodgers plus an Achilles tendon rupture wey na dem later place am on injured reserve.<ref>{{Cite web |last=Dajani |first=Jordan |date=September 12, 2023 |title=Aaron Rodgers injury update: MRI reveals Jets QB suffered a complete tear of Achilles tendon |url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-update-mri-reveals-jets-qb-suffered-a-complete-tear-of-achilles-tendon/ |access-date=September 12, 2023 |website=CBS Sports |language=en}}</ref><ref>{{Cite web |last=Sullivan |first=Phil |date=September 12, 2023 |title=Jets Place Aaron Rodgers on Injured Reserve; Saleh Commits To Zach Wilson |url=https://www.jetnation.com/2023/09/13/jets-place-aaron-rodgers-on-injured-reserve-saleh-commits-to-zach-wilson/ |access-date=September 14, 2023 |website=JetNation.com}}</ref> Rodgers undergo surgery on September 13, plus Dr. [[Neal ElAttrache]] placing an internal brace insyd ein left Achilles plus de goal of a mid-January return at de earliest.<ref>{{Cite web |last1=Rapoport |first1=Ian |author-link1=Ian Rapoport |last2=Pelissero |first2=Tom |author-link2=Tom Pelissero |date=September 16, 2023 |title=Jets QB Aaron Rodgers aims for potential playoff return after innovative surgery on torn Achilles |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-aims-for-potential-playoff-return-after-innovative-surgery |access-date=September 17, 2023 |website=NFL.com}}</ref> On November 29, de New York Jets open de 21-day practice window for Rodgers. Limited insyd practice, na Rodgers be cleared for functional activity buh no contact.<ref>{{Cite web |last=Patra |first=Kevin |date=November 29, 2023 |title=Jets opening QB Aaron Rodgers' 21-day practice window |url=https://www.nfl.com/news/jets-opening-qb-aaron-rodgers-21-day-practice-window |access-date=November 30, 2023 |website=NFL.com |language=en-US}}</ref> He be activated off injured reserve on December 20, buh de Jets announce he no go san play dis season after dema Week 15 loss to de Dolphins dem mathematically eliminate dem from playoff contention.<ref>{{Cite web |last=Shook |first=Nick |date=December 20, 2023 |title=Jets to activate Aaron Rodgers off IR to allow QB to continue to practice with team |url=https://www.nfl.com/news/jets-to-activate-aaron-rodgers-off-ir-to-allow-qb-to-continue-to-practice-with-t |access-date=December 20, 2023 |website=NFL.com}}</ref><ref>{{cite web |last=Reyes |first=Lorenzo |date=December 20, 2023 |title=Aaron Rodgers' season is over, so why are the Jets activating him? |url=https://www.usatoday.com/story/sports/nfl/jets/2023/12/20/aaron-rodgers-comeback-jets-shut-down-achilles-tear/71825680007/ |access-date=July 24, 2024 |website=USA TODAY}}</ref> Despite missing most of de season, he be ranked 92nd by ein fellow players on de NFL Top 100 Players of 2024.<ref>{{cite web |last=Hetherington |first=Krissy |date=July 23, 2024 |title=Top 100 Players of 2024, Nos. 100–91: Aaron Rodgers falls to lowest ranking in his career |url=https://www.nfl.com/news/top-100-players-of-2024-nos-100-91-aaron-rodgers-trevor-lawrence |access-date=July 6, 2025 |website=NFL.com}}</ref>
==== 2024 ====
[[File:Aaron_Rodgers_Jets_vs_Titans_SEPT2024.png|thumb|Rodgers dey play against de Tennessee Titans at Nissan Stadium insyd 2024]]
After playing just four offensive snaps insyd ein first season plus de Jets secof an Achilles injury, Rodgers make ein return on ''Monday Night Football'' insyd Week 1 to kick off de 2024 campaign. Insyd ein highly anticipated return, Rodgers plete 13 of 21 passes for 167 yards, one touchdown den one interception insyd a 32–19 loss to de defending NFC champion San Francisco 49ers.<ref>{{Cite web |last=Patra |first=Kevin |date=September 9, 2024 |title=Aaron Rodgers on Jets' loss to 49ers: 'I can play better' |url=https://www.nfl.com/news/aaron-rodgers-on-jets-loss-to-49ers-i-can-play-better |access-date=September 10, 2024 |website=[[NFL.com]] |language=en}}</ref> Insyd de Jets dema home opener against de New England Patriots, Rodgers plete 27 of 35 passes for 281 yards den two touchdowns as de Jets cruise to a 24–3 victory.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=September 19, 2024 |title='Thursday Night Football' highlights: Aaron Rodgers, Jets dominate Patriots |url=https://www.nbcnews.com/news/sports/live-blog/patriots-vs-jets-live-updates-jacoby-brissett-takes-aaron-rodgers-new-rcna171577 |access-date=September 22, 2024 |website=NBC News}}</ref> Insyd Week 5 insyd London, Rodgers cam be de ninth quarterback insyd NFL history to reach 60,000 passing yards buh he tie ein career-high plus three interceptions, wey dey include a game-sealing pick plus under a minute left as de Jets loose 23–17 to de Vikings.<ref>{{Cite web |last=Cimini |first=Rich |date=October 6, 2024 |title=Aaron Rodgers 9th QB to pass for 60K yards, but 3 INTs doom Jets |url=https://www.espn.com/nfl/story/_/id/41642251/jets-aaron-rodgers-becomes-9th-qb-pass-60000-yards |access-date=October 6, 2024 |website=ESPN.com}}</ref> Jets head coach [[Robert Saleh]] unexpectedly be fired after de London loss, plus sam analysts dey perceive say na he no get along plus Rodgers.<ref>{{Cite web |last1=Li |first1=David K. |last2=Abdelkader |first2=Rima |date=October 8, 2024 |title=New York Jets fire coach Robert Saleh after 2–3 start and apparent tension with Aaron Rodgers |url=https://www.nbcnews.com/sports/nfl/jets-robert-saleh-fired-rcna174473 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref> Wen dem biz am about am on ''The Pat McAfee Show'', de quarterback firmly deny accusations say he get a role insyd Saleh ein termination.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=October 9, 2024 |title=Aaron Rodgers on accusations he wanted Jets coach Robert Saleh fired: 'Patently false' |url=https://www.nbcnews.com/sports/nfl/aaron-rodgers-robert-saleh-fired-rcna174701 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref>
Insyd Week 6, de Jets dema first game after Saleh ein termination, Rodgers throw for 294 yards den two touchdowns, wey dey include a 52-yard Hail Mary pass to [[Allen Lazard]] to close out de first half, ein fourth career such pass completion.<ref>{{Cite news|last=Waszak Jr.|first=Dennis|date=October 14, 2024|title=Jets' Aaron Rodgers throws a 52-yard Hail Mary to Allen Lazard to end the first half vs. Bills|url=https://apnews.com/article/jets-rodgers-hail-mary-lazard-49f7dbe5569749c60e9878cc7ea5d606|access-date=October 20, 2024|work=AP News}}</ref> However, anoda interception on de Jets dema final drive doomed dem as dem loose 23–20 to de Buffalo Bills.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=After 'weird' week, Rodgers and Jets can't overcome mistakes and missed chances in loss to Bills|url=https://apnews.com/article/jets-bills-rodgers-ulbrich-0a14afca36a55c2cbb0f9aa35c3a7855|access-date=October 15, 2024|work=AP News|date=October 14, 2024}}</ref> Following de loss, se Jets trade for [[Davante Adams]], plus whom Rodgers previously combine for over 600 receptions den 68 touchdowns during dema eight seasons togeda insyd Green Bay.<ref>{{Cite news|last1=Cimini|first1=Rich|last2=Fowler|first2=Jeremy|last3=Walder|first3=Seth|last4=Reid|first4=Jordan|last5=Gutierrez|first5=Paul|last6=Karabell|first6=Eric|date=October 15, 2024|title=How Davante Adams affects the Jets, Aaron Rodgers' playoff hopes|url=https://www.espn.com/nfl/story/_/id/41809450/new-york-jets-future-davante-adams-trade-las-vegas-raiders|access-date=October 15, 2024|work=ESPN}}</ref> However, de Jets continue to struggle, as Rodgers throw two interceptions wey he lead de offense to zero points insyd de second half of dema Week 7 matchup against de Steelers, losing dema fourth consecutive game.<ref>{{cite news|last=Cimini|first=Rich|title=Aaron Rodgers, Davante Adams reunion fails to spark Jets|url=https://www.espn.com/nfl/story/_/id/41917779/aaron-rodgers-davante-adams-reunion-fails-spark-jets-drop-4th-straight-vs-steelers|access-date=October 21, 2024|work=ESPN|date=October 21, 2024}}</ref> After a loss to de Patriots, Rodgers help de Jets snap dema five-game losing streak insyd Week 9 against de Houston Texans, throwing for 179 yards den three touchdowns insyd de second half after he be shutout insyd de first half as de Jets win 21–13.<ref>{{cite news|last=Fried|first=Justin|title=Aaron Rodgers saves NY Jets' season with vintage performance amidst fan revolt|url=https://thejetpress.com/aaron-rodgers-saves-ny-jets-season-vintage-performance-fan-revolt-01jbjvhkx6k7|access-date=October 31, 2024|work=The Jet Press|date=October 31, 2024}}</ref>
Insyd Week 11 against de Colts, Rodgers throw two touchdowns wey he lead de Jets to a season-high insyd points, buh na dem fall short insyd a 28–27 loss, dropping to 3–7.<ref>{{Cite web |last=Miller |first=Colin |date=November 19, 2024 |title=Jets' Aaron Rodgers Not a Fan of Reporter's 'Buzzword' After Another Loss |url=https://athlonsports.com/nfl/new-york-jets-aaron-rodgers-familiar-response-loss-indianapolis-colts-recap-shock-buzz-word |access-date=November 26, 2024 |website=Athlon Sports |language=en}}</ref> During dema bye week, na dem reveal say na Rodgers dey play thru hamstring, knee, den ankle injuries buh na he refuse to get scans done in fear of how severe dem go be.<ref>{{Cite web |last=McCarriston |first=Shanna |date=November 24, 2024 |title=Jets' Aaron Rodgers played through multiple injuries this season, resisted getting scans, per report |url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-played-through-multiple-injuries-this-season-resisted-getting-scans-per-report/ |access-date=November 26, 2024 |website=CBSSports.com |language=en}}</ref> Despite dis, he remain de starter following de bye week.<ref>{{cite news|last=Cimini|first=Rich|title=Jeff Ulbrich says Aaron Rodgers to remain Jets' starting QB|url=https://www.espn.com/nfl/story/_/id/42738131/jeff-ulbrich-says-aaron-rodgers-remain-jets-starting-qb|access-date=December 9, 2024|work=ESPN|date=December 2, 2024}}</ref> Entering Week 14, Rodgers hold an NFL-record 34-game drought widout a 300-yard passing performance, wich he break on December 8 against de Dolphins.<ref>{{cite news|last=Benjamin|first=Cody|title=Jets' Aaron Rodgers halts historic drought of 300-yard passing games in Week 14 loss to Dolphins|url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-halts-historic-drought-of-300-yard-passing-games-in-week-14-loss-to-dolphins/|access-date=December 9, 2024|work=CBS Sports|date=December 8, 2024}}</ref> Despite recording ein first 300-yard game insyd three years, de Jets fall 32–26 insyd overtime, eliminating dem from playoff contention.<ref>{{cite news|last=Cimini|first=Rich|title=Jets collapse again, extend postseason drought to 14 seasons|url=https://www.espn.com/nfl/story/_/id/42862200/jets-collapse-again-extend-postseason-drought-14-seasons|access-date=December 9, 2024|work=ESPN|date=December 8, 2024}}</ref> On January 5, 2025, Rodgers plete ein 500th touchdown pass to [[Tyler Conklin]] at MetLife Stadium against de Dolphins, becoming de fifth quarterback insyd NFL history plus 500 touchdown passes.<ref>{{cite news|last=Cimini|first=Rich|title=Jets QB Aaron Rodgers joins prestigious 500 touchdown club|url=https://www.espn.com/nfl/story/_/id/43300286/jets-qb-aaron-rodgers-joins-prestigious-500-touchdown-club|access-date=January 5, 2025|work=ESPN|date=January 5, 2025}}</ref> He fini de final game of de season plus 274 yards, a season-high four touchdowns, den an interception as de Jets win 32–20, finishing plus a record of 5–12.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=Rodgers throws a season-high 4 touchdown passes in possible final game as Jets top Dolphins 32–20|url=https://apnews.com/article/dolphins-jets-score-rodgers-8013b4de0ea591a84d721f5c4dd17111|access-date=January 5, 2025|work=Associated Press|date=January 5, 2025}}</ref> He fini de 2024 season plus 3,897 yards, 28 touchdowns, den 11 interceptions.<ref>{{Cite web |title=Aaron Rodgers 2024 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2024/ |access-date=January 15, 2025 |website=[[Pro Football Reference]] |language=en}}</ref>
On February 13, 2025, na de Jets announce dema intention to part ways plus Rodgers after two seasons.<ref>{{Cite web |last=Allen |first=Eric |date=February 13, 2025 |title=Jets to move on from Aaron Rodgers |url=https://www.newyorkjets.com/news/jets-moving-on-from-aaron-rodgers |access-date=February 13, 2025 |website=NewYorkJets.com |language=en-US}}</ref> Na Rodgers be released as a post-June 1 designation, allowing de Jets to split ein salary cap charges ($49 million) over two years. De Jets therefore keep am on de roster til March 12, de start of de 2025 NFL year, wen na dem officially released am.<ref>{{cite web |last=Cimini |first=Rich |date=February 13, 2025 |title=Jets announce split with Aaron Rodgers, wish him success |url=https://www.espn.com/nfl/story/_/id/43826969/jets-announce-split-aaron-rodgers-wish-success |accessdate=February 25, 2025}}</ref>
=== Pittsburgh Steelers ===
[[File:McCormickRodgersFrazier.jpg|thumb|Rodgers (middle) at Steelers training camp insyd 2025]]
==== 2025 ====
On June 6, 2025, de Pittsburgh Steelers agree to terms plus Rodgers on a one-year deal.<ref>{{Cite web |last=Varley |first=Teresa |date=June 5, 2025 |title=Steelers agree to terms with Rodgers |url=https://www.steelers.com/news/steelers-agree-to-terms-with-rodgers |access-date=June 6, 2025 |website=Steelers.com |language=en-US}}</ref> De following day, he officially sign ein one-year, $13.65 million contract, wich dey include $10 million guaranteed wey fi be worth up to $19.5 million plus incentives.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Sources: QB Rodgers with Steelers, signs one-year, $13.65M deal|url=https://www.espn.com/nfl/story/_/id/45470407/sources-qb-rodgers-steelers-signs-one-year-1365m-deal|access-date=June 7, 2025|work=ESPN|date=June 7, 2025}}</ref> De team subsequently announce say Rodgers go continue to wear ein number 8 from Cal den de Jets, since ein number 12 plus de Packers unofficially be retired for [[Terry Bradshaw]]; neither de Steelers nor Bradshaw sign off on allowing Rodgers to wear number 12.<ref>{{cite web |last1=Goldstein |first1=Jeremy |date=June 7, 2025 |title=Aaron Rodgers suffers early Steelers setback thanks to Terry Bradshaw |url=https://www.themirror.com/sport/american-football/aaron-rodgers-terry-bradshaw-steelers-1194927 |website=[[Daily Mirror]]}}</ref>
Na Rodgers ein months-long courtship den subsequent signing be met plus mixed to negative reaction among Steeler fans as well as ex-Steelers Bradshaw den [[Ryan Clark (American football)|Ryan Clark]] secof ein polarizing attitude,<ref>{{cite web |last=Sayer |first=Ricky |date=June 5, 2025 |title=Aaron Rodgers signing brings mixed reactions from Steelers fans |url=https://www.cbsnews.com/pittsburgh/news/steelers-fans-aaron-rodgers-signing-reaction/ |access-date=June 10, 2025 |work=CBS News}}</ref><ref>{{cite web |last=Gamba-Ellis |first=Thomas |date=June 6, 2025 |title=Aaron Rodgers signing is 'worst-case scenario' for Steelers: Ryan Clark |url=https://nypost.com/2025/06/06/sports/aaron-rodgers-signing-is-worst-case-scenario-for-the-steelers-ryan-clark/ |access-date=June 10, 2025 |work=New York Post}}</ref><ref>{{cite web |last=Baca |first=Michael |date=May 28, 2025 |title=Steelers legend Terry Bradshaw calls Pittsburgh's interest in QB Aaron Rodgers 'a joke' |url=https://www.nfl.com/news/steelers-legend-terry-bradshaw-calls-pittsburgh-interest-aaron-rodgers-a-joke |access-date=September 25, 2025 |website=NFL.com}}</ref> wey sam fans feeling like he no fit Western Pennsylvania dema traditional blue collar base.<ref>{{cite web |last1=Cioppa |first1=Jordan |date=June 5, 2025 |title=Steelers fans react to Aaron Rodgers coming to Pittsburgh |url=https://www.wtae.com/article/steelers-fans-reaction-aaron-rodgers-pittsburgh-quarterback/64985539 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> Sam speculate say Rodgers fi be swayed to sign plus de Steelers by ein friendship plus former Indianapolis Colts punter den Pittsburgh-area native [[Pat McAfee]].<ref>{{cite web |last1=Ciampi |first1=Raquel |date=April 17, 2025 |title=Aaron Rodgers talks sneaking into Pittsburgh for first visit with Steelers on McAfee Show |url=https://www.wtae.com/article/steelers-aaron-rodgers-mcafee-show/64514048 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> On June 23, 2025, Rodgers flow McAfee on ein show say he go likely retire after de 2025 season.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Steelers' Aaron Rodgers 'pretty sure' this will be final season|url=https://www.espn.com/nfl/story/_/id/45575766/steelers-aaron-rodgers-pretty-sure-final-season|access-date=June 29, 2025|work=ESPN|date=June 29, 2025}}</ref>
On September 7, Rodgers make ein Steelers debut against ein former team, de New York Jets. During ein first outing plus Pittsburgh, he plete 22 of 30 pass attempts for 244 yards den four touchdowns while committing no turnovers. De game end plus a 34–32 Steelers victory.<ref>{{cite web |last=Maaddi |first=Rob |date=September 9, 2025 |title=Aaron Rodgers showed he has plenty left to help the Steelers |url=https://sports.yahoo.com/article/aaron-rodgers-showed-plenty-left-191014645.html |access-date=September 25, 2025 |website=Yahoo! Sports}}</ref> Later dat month, Rodgers surpasse [[Brett Favre]], ein former Packers teammate, insyd career touchdown passes wen he throw a scoring pass to [[D.K. Metcalf]] insyd a win over de New England Patriots. Dis move Rodgers into fourth place for most career touchdown passes (509), only behind [[Peyton Manning]], [[Drew Brees]] den [[Tom Brady]].<ref name="u989">{{cite web |last=Gordon |first=Grant |date=September 21, 2025 |title=Aaron Rodgers moves past former teammate Brett Favre with 509th career touchdown pass |url=https://www.nfl.com/news/aaron-rodgers-moves-past-brett-favre-509-career-touchdown-pass |access-date=October 14, 2025 |website=NFL.com}}</ref>
During de second quarter of de Steelers dema Week 11 victory over de Cincinnati Bengals, Rodgers suffer a small fracture insyd ein left wrist.<ref>{{cite news|last=DeArdo|first=Bryan|url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-steelers-qb-hand-injury/|title=Aaron Rodgers has small fracture in wrist, Steelers QB reportedly pushing to play this week|website=[[CBSSports.com]]|publisher=[[CBS Sports]]|date=November 17, 2025|access-date=November 30, 2025}}</ref> De injury prevent am from playing de following game against de Bears, wich [[Mason Rudolph (American football)|Mason Rudolph]] start insyd ein place.<ref>{{cite news|last=Cohen|first=Jay|url=https://www.kare11.com/article/syndication/associatedpress/steelers-qb-aaron-rodgers-misses-game-against-bears-because-of-a-broken-left-wrist/616-e94370ae-9cda-4db9-891f-56092ba44dd1|title=With Aaron Rodgers sidelined, Mason Rudolph and the Steelers fall short in Chicago|agency=[[Associated Press|AP]]|publisher=[[KARE (TV)]]|date=November 23, 2025|access-date=November 30, 2025}}</ref> Rodgers return for Week 13 insyd Buffalo.<ref>{{cite news|last=Guise|first=Michael|url=https://www.cbsnews.com/pittsburgh/news/is-aaron-rodgers-playing-steelers-bills-nfl-news/|title=Is Aaron Rodgers playing against the Bills? Steelers give update on starting quarterback.|publisher=[[CBS News]]|date=November 28, 2025|access-date=November 30, 2025}}</ref>
Rodgers lead de Steelers to an AFC North title den a playoff berth following a Week 18 win over de Baltimore Ravens.<ref>{{Cite web |last=Pryor |first=Brooke |date=January 5, 2026 |title=Steelers take AFC North as Ravens FG sails wide |url=https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-url=https://web.archive.org/web/20260105045214/https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-date=January 5, 2026 |access-date=January 5, 2026 |website=ESPN.com |language=en}}</ref> He fini de 2025 season throwing for 3,322 yards, 24 touchdowns, den seven interceptions, den rushing for a touchdown.<ref>{{Cite web |title=Aaron Rodgers 2025 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2025/ |access-date=January 8, 2026 |website=Pro-Football-Reference.com |language=en}}</ref>
Insyd de Steelers dema playoff loss to de Houston Texans, Rodgers play poorly, completing 17 passes out of 33 attempts for 146 yards, getting sacked 4 times for 36 yards, den throwing a pick-six.<ref>{{cite news|last1=Heyen|first1=Billy|title=Texans defense made Steelers' Aaron Rodgers play the worst playoff game by a QB in a dozen years|url=https://sports.yahoo.com/articles/texans-defense-made-steelers-aaron-131529479.html?guccounter=1|access-date=January 13, 2026|work=Yahoo Sports|date=January 13, 2026}}</ref> Rodgers sanso fumble on one of de sacks, wich dem return for a Texans touchdown.<ref>{{cite news|last1=Brinkerhoff|first1=Nick|title=Aaron Rodgers crushed on strip-sack, leads to critical Texans score|url=https://www.usatoday.com/story/sports/nfl/playoffs/2026/01/12/aaron-rodgers-strip-sack-crushed-texans-packers/88153423007/|access-date=January 13, 2026|work=USA Today|date=January 12, 2026}}</ref>
==== 2026 ====
[[File:RodgersandMcCarthy.jpg|thumb|Rodgers plus [[Mike McCarthy]] during training camp insyd 2026]]
On May 16, 2026, Rodgers return to de Steelers for ein 22nd season, signing a one-year deal worth up to $25 million.<ref>{{Cite web |last=Pryor |first=Brooke |date=May 16, 2026 |title=Sources: Aaron Rodgers to sign 1-year deal with Steelers |url=https://www.espn.com/nfl/story/_/id/48791130/aaron-rodgers-sign-1-year-deal-steelers |access-date=May 16, 2026 |website=ESPN}}</ref> De signing reunite am plus head coach Mike McCarthy.<ref>{{Cite web |last=Middlehurst-Schwartz |first=Michael |date=May 16, 2026 |title=Aaron Rodgers to re-sign with Steelers, reunite with coach Mike McCarthy |url=https://www.usatoday.com/story/sports/nfl/steelers/2026/05/16/aaron-rodgers-contract-pittsburgh-steelers-mike-mccarthy/88698339007/ |access-date=May 16, 2026 |website=USA Today}}</ref> Rodgers later announce say de 2026 season go be ein final season insyd de NFL.<ref>{{Cite web |last=Ulrich |first=Logan |date=2026-05-20 |title=Aaron Rodgers Says 2026 Will Be His Final Season |url=https://nfltraderumors.co/aaron-rodgers-says-2026-will-be-his-final-season/ |access-date=2026-05-20 |website=NFLTradeRumors.co |language=en-US}}</ref>
== Touchdown celebration ==
Since becoming an NFL starter insyd 2008, Rodgers cam be known for ein unique touchdown celebration, wich he den ein teammates dub de "Championship Belt." After a scoring play, Rodgers dey celebrate by making a motion as if he dey put an invisible championship belt on around ein waist.<ref>{{Cite web |last=Sayler |first=Ryan |date=January 10, 2011 |title=The Evolution of Aaron Rodgers' Weird "Belt Dance" |url=http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120416003749/http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |archive-date=April 16, 2012 |access-date=May 10, 2012 |website=Real Fantasy}}</ref><ref>{{Cite web |date=January 16, 2011 |title=Aaron Rodgers | Championship Belt Celebration |url=http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |url-status=live |archive-url=https://web.archive.org/web/20120322064628/http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |archive-date=March 22, 2012 |access-date=May 10, 2012 |website=SportsGrid}}</ref> Teammate Greg Jennings say of de celebration: "''It's just something fun that he does. We get excited when we see it cause we know that he's made a play or we've made a play as offense."''<ref name="youtube1">{{Cite web |date=January 25, 2011 |title=Aaron Rodgers Championship Belt Special on ESPN |url=https://www.youtube.com/watch?v=mcwa2EvQ61Y |url-status=live |archive-url=https://web.archive.org/web/20111225110056/http://www.youtube.com/watch?v=mcwa2EvQ61Y |archive-date=December 25, 2011 |access-date=May 10, 2012 |publisher=ESPN |via=YouTube}}</ref> De gesture draw de praise of WWE wrestler Triple H wey e cam be common for Green Bay fans to mimic during games.<ref>{{Cite web |last=Anderson |first=Kyle |date=February 7, 2011 |title=Aaron Rodgers Wins Super Bowl MVP, Celebrates With Championship Belt |url=http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |url-status=dead |archive-url=https://web.archive.org/web/20191206042749/http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |archive-date=December 6, 2019 |access-date=December 6, 2019 |publisher=MTV}}</ref> Na he sanso celebrate by doing de shoryuken, a jumping uppercut move from de ''Street Fighter'' series.<ref>{{Cite web |last=Kunnath |first=Avinash |date=February 17, 2011 |title=Aaron Rodgers Best Touchdown Celebration: Championship Belt, Super Mario Jump, Or Shoryuken? |url=https://bayarea.sbnation.com/california-golden-bears/2011/2/17/1998750/aaron-rodgers-best-touchdown-celebration-championship-belt-super-mario-jump-shoryuken |access-date=January 19, 2023 |website=SB Nation Bay Area |language=en}}</ref>
== Alternative medicine advocacy ==
Rodgers be vocal about ein use of alternative medicine,<ref>{{Cite web |last=Mole |first=Beth |date=February 23, 2022 |title=Aaron Rodgers' go-to cleanse could involve oily enemas, bloodletting, vomiting |url=https://arstechnica.com/science/2022/02/everything-you-didnt-need-to-know-about-aaron-rodgers-oily-enema-cleanse/ |access-date=August 8, 2022 |website=[[Ars Technica]] |language=en}}</ref><ref>{{Cite web |last=McLaughlin |first=Kelly |date=November 3, 2021 |title=Aaron Rodgers reportedly petitioned the NFL to have an alternative treatment count as being vaccinated against COVID-19 |url=https://sports.yahoo.com/aaron-rodgers-reportedly-petitioned-nfl-163711629.html |access-date=August 8, 2022 |website=[[Yahoo! Sports]] |language=en}}</ref> wey he be a proponent of de legalization of psychedelic drugs.<ref>{{cite magazine|last=Chavkin|first=Daniel|date=June 23, 2023|title=Aaron Rodgers Touts Legalization of Psychedelics at Conference|url=https://www.si.com/extra-mustard/2023/06/23/new-york-jets-aaron-rodgers-touts-psychedelics-legalization|access-date=June 23, 2023|magazine=[[Sports Illustrated]]|language=en}}</ref> He reveal insyd 2022 say na he previously make offseason trips to Peru, wer he consume ayahuasca.<ref>{{Cite web |last=Demovsky |first=Rob |date=August 8, 2022 |title=NFL says Green Bay Packers QB Aaron Rodgers' use of ayahuasca didn't violate drug policy |url=https://www.espn.com/nfl/story/_/id/34371733/nfl-says-green-bay-packers-qb-aaron-rodgers-use-ayahuasca-violate-drug-policy |access-date=August 8, 2022 |website=[[ESPN.com]] |language=en |agency=[[Associated Press]]}}</ref>
=== Views on COVID-19 ===
Rodgers be one of de most prominent American athletes to choose he no go get vaccinated against de [[COVID-19]] virus,<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref> wey na he be critical of de NFL dema health den safety protocols during de COVID-19 pandemic.<ref>{{Cite web |last=Wood |first=Ryan |date=November 5, 2021 |title=Packers quarterback Aaron Rodgers blasts 'woke mob' over COVID-19 news on Pat McAfee show, rips NFL's 'draconian' protocols |url=https://www.jsonline.com/story/sports/nfl/packers/2021/11/05/packers-quarterback-aaron-rodgers-talks-covid-19-sounds-off-nfl-protocols/6280790001/ |access-date=January 5, 2024 |website=[[Milwaukee Journal Sentinel]] |language=en}}</ref> Ein stances on de COVID-19 vaccine be criticized by scientists, health officials, den sam former players den commentators, secof concerns say na Rodgers dey spread vaccine misinformation wey he dey potentially risk de health of ein teammates.<ref>{{Cite web |last1=Belson |first1=Ken |last2=Anthes |first2=Emily |date=November 8, 2021 |title=Scientists Fight a New Source of Vaccine Misinformation: Aaron Rodgers |url=https://www.nytimes.com/2021/11/08/sports/football/aaron-rodgers-vaccine.html |access-date=January 5, 2024 |work=[[The New York Times]] |language=en}}</ref>
During de NFL season, Rodgers frequently appear on ''The Pat McAfee Show''.<ref>{{Cite magazine|last=Hladik|first=Matt|date=January 26, 2021|title=Aaron Rodgers Explains Why He Appears on the Pat McAfee Show|url=https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|url-status=live|archive-url=https://web.archive.org/web/20210924043905/https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|archive-date=September 24, 2021|access-date=December 1, 2021|magazine=The Spun by [[Sports Illustrated]]}}</ref> One such interview insyd 2021 make headlines after Rodgers make several false den misleading statements about COVID-19,<ref name="Rosenberg">{{Cite magazine|last=Rosenberg|first=Michael|date=November 5, 2021|title=The Problem Is Aaron Rodgers Thinks He Has All the Answers|url=https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|url-status=live|archive-url=https://web.archive.org/web/20211108000052/https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|archive-date=November 8, 2021|access-date=November 8, 2021|magazine=[[Sports Illustrated]]|language=en-us}}</ref><ref>{{Cite news|last=Kornfield|first=Meryl|date=November 5, 2021|title=Aaron Rodgers said he did the research on covid vaccines. Here's how he was wrong, according to experts|url=https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|url-status=live|archive-url=https://web.archive.org/web/20211109160437/https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|archive-date=November 9, 2021|access-date=November 15, 2021|newspaper=[[The Washington Post]]}}</ref> wey dey imply say na unvaccinated people no be de group most affected by de pandemic den dat [[ivermectin]] be beneficial for people plus COVID-19.<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |last=Schad |first=Tom |date=November 5, 2021 |title=Fact check: 6 of Aaron Rodgers' false and misleading claims about COVID-19 vaccine |url=https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |url-status=live |archive-url=https://web.archive.org/web/20211108002751/https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=[[USA Today]] |language=en-US}}</ref><ref>{{Cite web |last=Sutelan |first=Edward |date=November 14, 2021 |title=Fact-checking Aaron Rodgers' bizarre COVID beliefs and 'woke mob' claim made on Pat McAfee Show |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |url-status=live |archive-url=https://web.archive.org/web/20211108035450/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=Sporting News |language=en}}</ref><ref>{{Cite web |last=Reinwald |first=Caroline |date=November 6, 2021 |title=Aaron Rodgers vaccine fact check: Doctor responds to quarterback's concerns |url=https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |url-status=live |archive-url=https://web.archive.org/web/20211108035459/https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |archive-date=November 8, 2021 |access-date=November 8, 2021 |publisher=[[WISN-TV]] |language=en}}</ref> Dese den similar claims lead sam reporters to describe Rodgers as a conspiracy theorist.<ref name="Rosenberg" /><ref>{{Cite web |last=Jones |first=Ja'han |date=November 9, 2021 |title=Aaron Rodgers should keep Martin Luther King Jr. out of his foolish Covid claims |url=https://www.msnbc.com/the-reidout/reidout-blog/aaron-rodgers-martin-luther-king-jr-covid-vaccine-rcna4872 |access-date=November 13, 2021 |publisher=MSNBC |language=en}}</ref>
== Political den social commentary ==
Rodgers voice support give [[Robert F. Kennedy Jr.]] den ein presidential campaign of 2024.<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref> Kennedy reportedly include Rodgers on ein "short list" of possible vice presidential running mates, along plus odas, wey dey include [[Jesse Ventura]] den [[Nicole Shanahan]].<ref name=":0">{{Cite news|last=O’Brien|first=Rebecca Davis|date=March 12, 2024|title=Aaron Rodgers and Jesse Ventura Top R.F.K. Jr.'s List for Running Mate|url=https://www.nytimes.com/2024/03/12/us/politics/rfk-jr-aaron-rodgers-jesse-ventura.html|access-date=March 13, 2024|work=The New York Times|language=en-US|issn=0362-4331}}</ref><ref name="OBrienMar172024">{{Cite news|last=O'Brien|first=Rebecca Davis|date=March 17, 2024|title=Nicole Shanahan Emerges as a Top Candidate to Be R.F.K. Jr.'s Running Mate|url=https://www.nytimes.com/2024/03/17/us/politics/nicole-shanahan-rfk-jr-running-mate.html|access-date=May 30, 2024|work=[[The New York Times]]}}</ref>
On [[Adam Breneman]] ein podcast insyd 2022, former Packers backup quarterback [[DeShone Kizer]] talk say Rodgers express interest insyd 9/11 conspiracy theories at one of de first meetings between de two quarterbacks. Kizer describe dema discussion of conspiracy theories as "a real thought experiment".<ref name="nypost-2022-11-29">{{cite news|last1=Hendricks|first1=Jaclyn|date=November 29, 2022|title=DeShone Kizer: Aaron Rodgers pressed me on 9/11 conspiracies|url=https://nypost.com/2022/11/29/deshone-kizer-aaron-rodgers-pressed-me-on-9-11-conspiracies/|access-date=January 8, 2023|work=[[The New York Post]]}}</ref><ref name="si-2022-11-29">{{cite magazine|last1=Salvador|first1=Joseph|date=November 29, 2022|title=Former Packers QB Says Aaron Rodgers Once Asked Him Whether He Believes in 9/11|url=https://www.si.com/nfl/2022/11/29/packers-deshone-kizer-aaron-rodgers-once-asked-him-if-he-believes-in-9-11-conspiracy-theories|access-date=January 8, 2022|magazine=[[Sports Illustrated]]|language=en-us}}</ref> Rodgers sanso promote de Tartarian architecture conspiracy theory.<ref name="tart">{{Cite web |last=Silverman |first=Robert |date=March 8, 2024 |title=Aaron Rodgers Dabbles in the 'QAnon of Architecture' |url=https://www.yahoo.com/entertainment/aaron-rodgers-dabbles-qanon-architecture-234934271.html |access-date=January 15, 2025 |website=Yahoo! Entertainment}}</ref>
Insyd a January 2024 appearance on ''The Pat McAfee Show'', Rodgers, widout evidence, imply say na comedian [[Jimmy Kimmel]] be an acquaintance of disgraced financier den sex offender [[Jeffrey Epstein]], den dat Kimmel ein name go possibly appear in soon to be released court documents listing Epstein ein associates.<ref>{{Cite web |last=Simonetti |first=Isabella |date=January 9, 2024 |title=ESPN's Pat McAfee Said He Doesn't 'Take Back Anything' After Skewering Colleague |url=https://www.wsj.com/business/media/pat-mcafee-show-espn-aaron-rodgers-ede1d63b |access-date=January 9, 2024 |website=WSJ |language=en-US}}</ref> Kimmel deny de allegations den threatened to sue Rodgers for defamation if he repeat de claim.<ref>{{Cite web |last=Kimmel |first=Jimmy |author-link=Jimmy Kimmel |date=January 2, 2024 |title=X Post |url=https://twitter.com/jimmykimmel/status/1742324477323833546 |access-date=January 9, 2024 |website=X}}</ref> Insyd a follow-up appearance on McAfee ein show de following week, Rodgers state say: "''I'm glad that Jimmy is not on the list. I really am. I don't think he's the P-word [pedophile]."''<ref>{{Cite web |last=France |first=Lisa |date=January 9, 2024 |title=Aaron Rodgers blames media in response to Jimmy Kimmel's comments about him |url=https://www.cnn.com/2024/01/09/entertainment/jimmy-kimmel-aaron-rodgers-monologue/index.html |access-date=January 9, 2024 |website=CNN |language=en}}</ref>
During a February 2024 appearance on de conspiracy-focused ''Look Into It'' podcast wey [[Eddie Bravo]] host, Rodgers espouse numerous conspiracy theories on medicine, immigration, den John F. Kennedy.<ref>{{Cite web |last=Keeley |first=Sean |date=March 14, 2024 |title=Here's all the dumb shit Aaron Rodgers recently said on a conspiracy theory podcast |url=https://awfulannouncing.com/nfl/aaron-rodgers-conspiracy-theory-podcast-tartaria-immigrants-trump-biden.html |access-date=April 17, 2024 |website=Awful Announcing |language=en}}</ref> Na ein claims include say na dem create [[HIV/AIDS|AIDS]] den COVID by de government for de sake of pharmaceutical industry profits (sanso spy discredited HIV/AIDS origins theories den Operation Denver).<ref>{{Cite web |last=Buzinski |first=Jim |date=April 17, 2024 |title=Aaron Rodgers says AIDS was created by the U.S. government in the 1980s |url=https://www.outsports.com/2024/4/17/24091797/aaron-rodgers-says-aids-was-created-by-the-u-s-government-in-the-1980s/ |access-date=April 17, 2024 |website=outsports.com |language=en}}</ref>
Insyd 2024, CNN reporter [[Pamela Brown (journalist)|Pamela Brown]] report say na Rodgers insyd 2013 share false conspiracy theories about de Sandy Hook massacre, wey dey claim say na de attack be an "inside job" perpetrated by de government. Na CNN simultaneously report an allegation by an anonymous source say na Rodgers for several years prior say "''Sandy Hook never happened....All those children never existed. They were all actors.''"<ref name="SandyHook1">{{Cite web |last1=Brown |first1=Pamela |last2=Tapper |first2=Jake |date=March 14, 2024 |title=RFK Jr.'s VP prospect Aaron Rodgers has shared false Sandy Hook conspiracy theories in private conversations |url=https://www.cnn.com/2024/03/13/politics/aaron-rodgers-sandy-hook-conspiracy-theories/index.html |access-date=March 17, 2024 |website=CNN.com |language=en}}</ref> In response, Rodgers say, "''I am not and have never been of the opinion that the events did not take place" but did not say whether he had ever believed the Sandy Hook massacre was an "inside job.''"<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref>
== Personal life ==
=== Family den relationships ===
Rodgers get two bros; de younger, [[Jordan Rodgers|Jordan]], play quarterback at Vanderbilt University wey he get a brief NFL career plus de Jacksonville Jaguars den Tampa Bay Buccaneers.<ref>{{Cite web |title=Jordan Rodgers Vanderbilt Bio |url=http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-url=https://web.archive.org/web/20111126203900/http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-date=November 26, 2011 |access-date=June 19, 2017 |website=VUCommodores.com}}</ref><ref>{{Cite web |last=Imig |first=Paul |date=April 27, 2013 |title=Rodgers' younger brother Jordan signs with Jacksonville |url=http://www.foxsportswisconsin.com/fox-sports-networks/story/Rodgers-brother-Jordan-signs-with-Jackso?blockID=896957 |url-status=live |archive-url=https://web.archive.org/web/20220310191855/https://www.foxsports.com/wisconsin/story/rodgers-younger-brother-jordan-signs-with-jacksonville-042713 |archive-date=March 10, 2022 |access-date=June 19, 2017 |work=Fox Sports}}</ref><ref>{{Cite web |last=Eisenband |first=Jeff |date=October 8, 2018 |title=Jordan Rodgers Remembers His 'Good Little' Football Career |url=http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |url-status=dead |archive-url=https://web.archive.org/web/20190308081753/http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |archive-date=March 8, 2019 |access-date=March 7, 2019 |website=ThePostGame.com}}</ref> Although na dem raise Rodgers den ein bros Christian, insyd an interview insyd 2017 he state say he no longer affiliate einself plus any organized religion.<ref>{{Cite web |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=Aaron Rodgers, unmasked |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |url-status=live |archive-url=https://web.archive.org/web/20211114183324/http://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |archive-date=November 14, 2021 |access-date=March 7, 2019 |website=[[ESPN.com]]}}</ref>
Rodgers be de godfather to Cade Cobb, de second son of ein long-time NFL teammate, [[Randall Cobb (American football)|Randall Cobb]].<ref>{{cite web |last=Demovsky |first=Rob |date=October 28, 2021 |title=The 'beautiful, chaotic mess' that brought Randall Cobb's family back to Green Bay |url=https://www.espn.com/blog/green-bay-packers/post/_/id/51394/the-beautiful-chaotic-mess-that-brought-randall-cobbs-family-back-to-green-bay |accessdate=September 1, 2023 |work=[[ESPN.com]]}}</ref>
Na Rodgers dey insyd a relationship plus actress [[Olivia Munn]] from 2014 to 2017 den plus former professional racing driver [[Danica Patrick]] from 2018 to 2020.<ref name="peoplemag">{{Cite web |last=Mizoguchi |first=Karen |date=April 7, 2017 |title=Olivia Munn and Aaron Rodgers Break Up |url=http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |url-status=live |archive-url=https://web.archive.org/web/20170408081606/http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |archive-date=April 8, 2017 |access-date=April 7, 2017 |website=[[People (magazine)|People]]}}</ref><ref name="AP">{{Cite web |date=January 15, 2018 |title=Danica Patrick finds love away from track with Aaron Rodgers |url=https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |url-status=live |archive-url=https://web.archive.org/web/20180219090141/https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |archive-date=February 19, 2018 |access-date=February 18, 2018 |work=[[Associated Press News]]}}</ref><ref>{{Cite web |date=July 16, 2020 |title=Danica, Rodgers call off two-year relationship |url=https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |url-status=live |archive-url=https://web.archive.org/web/20210203195658/https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |archive-date=February 3, 2021 |access-date=February 7, 2021 |website=[[ESPN.com]]}}</ref> He start dey date actress [[Shailene Woodley]] insyd de second half of 2020.<ref>{{Cite web |last=Weinberg |first=Lindsay |date=February 2, 2021 |title=Inside Shailene Woodley and Aaron Rodgers' "Private and Low Key" Romance |url=https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |url-status=live |archive-url=https://web.archive.org/web/20210207071957/https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |archive-date=February 7, 2021 |access-date=February 7, 2021 |website=[[E!]]}}</ref> Insyd an appearance on ''The Tonight Show Starring Jimmy Fallon'' insyd 2021, Woodley confirm say na she be engaged to Rodgers.<ref>{{Cite web |last=Kubota |first=Samantha |date=February 22, 2021 |title=Shailene Woodley engaged to Aaron Rodgers, says she's 'still learning' about football |url=https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |url-status=live |archive-url=https://web.archive.org/web/20210223055422/https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |archive-date=February 23, 2021 |access-date=February 23, 2021 |website=[[Today.com]]}}</ref> On February 16, 2022, na Rodgers den Woodley call off dema engagement.<ref>{{Cite web |last=Wang |first=Jessica |date=February 16, 2022 |title=Shailene Woodley and Aaron Rodgers split, call off engagement |url=https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |url-status=live |archive-url=https://web.archive.org/web/20220409131033/https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |archive-date=April 9, 2022 |access-date=February 16, 2022 |website=[[Yahoo!]] |language=en-US}}</ref>
Insyd December 2024, na Rodgers state say na he dey date a woman dem name Brittani. Insyd June 2025, Rodgers state say dem marry a few months prior.<ref>{{Cite web |last=Comiter |first=Jordana |date=June 10, 2025 |title=Who Is Aaron Rodgers' Wife, Brittani? All About Her Private Relationship with the NFL Quarterback |url=https://people.com/who-is-brittani-aaron-rodgers-11718036 |access-date=June 22, 2025 |website=People.com |language=en}}</ref><ref>{{cite web |last=Hooks |first=Kalan |date=June 10, 2025 |title=Aaron Rodgers announces marriage at Steelers minicamp |url=https://www.espn.com/nfl/story/_/id/45481936/aaron-rodgers-pittsburgh-steelers-announces-marriage |access-date=June 10, 2025 |website=[[ESPN]]}}</ref>
=== Honorary memberships den business ventures ===
Na dem initiate Rodgers as an honorary member of Tau Kappa Epsilon (TKE) on January 5, 2012, at de Sigma-Xi Chapter at St. Norbert College.<ref>{{Cite web |last=Zegers |first=Dan |date=January 6, 2012 |title=MEET FRATERS AARON RODGERS & GRAHAM HARRELL |url=https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |url-status=live |archive-url=https://web.archive.org/web/20221229085550/https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |archive-date=December 29, 2022 |access-date=December 29, 2022 |publisher=Tau Kappa Epsilon}}</ref>
Insyd April 2018, na dem annouce Rodgers as a limited partner insyd de Milwaukee Bucks ownership group, wey dey make am de first active NFL player plus an ownership stake insyd an NBA franchise.<ref>{{Cite web |last=Demovsky |first=Rob |date=April 20, 2018 |title=Aaron Rodgers buys minority stake in Bucks: 'A dream come true' |url=https://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |url-status=live |archive-url=https://web.archive.org/web/20180422052450/http://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |archive-date=April 22, 2018 |access-date=April 22, 2018 |website=[[ESPN.com]]}}</ref> De team later win de NBA Finals insyd 2021.<ref>{{Cite news|last=Deb|first=Sopan|date=July 21, 2021|title=The Milwaukee Bucks Win the N.B.A. Championship|url=https://www.nytimes.com/2021/07/20/sports/basketball/milwaukee-bucks-nba-finals-championship.html|access-date=February 12, 2026|work=The New York Times|language=en-US|issn=0362-4331}}</ref>
== Media appearances ==
Na Rodgers be a longtime spokesperson for State Farm Insurance wey na he frequently feature insyd dema commercials. Insyd de commercials, Rodgers often dey highlight ein "Championship Belt" touchdown celebration, wich State Farm rename as de "Discount Double Check".<ref>{{Cite web |title=State Farm® State of Imitation (Aaron Rodgers) |url=https://www.youtube.com/watch?v=j9Rv7czl9cU |url-status=live |archive-url=https://web.archive.org/web/20121017234148/http://www.youtube.com/watch?v=j9Rv7czl9cU |archive-date=October 17, 2012 |access-date=May 10, 2012 |publisher=State Farm |via=YouTube}}</ref> Rodgers sanso be featured insyd Pizza Hut advertisements,<ref>{{Cite web |last=Rovell |first=Darren |author-link=Darren Rovell |date=September 4, 2012 |title=Pizza Hut uses Aaron Rodgers in new ads |url=https://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |url-status=live |archive-url=https://web.archive.org/web/20161229100812/http://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=[[ESPN.com]]}}</ref> as well as numerous local Wisconsin-based advertisements.<ref name="milcomm">{{Cite web |last=Kirchen |first=Rich |date=August 20, 2015 |title=Aaron Rodgers' commercial work in Wisconsin appears to be dwindling |url=http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |url-status=live |archive-url=https://web.archive.org/web/20151008232237/http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |archive-date=October 8, 2015 |access-date=December 29, 2016 |website=Milwaukee Business Journal}}</ref>
Insyd May 2015, Rodgers appear as a contestant on ''Celebrity Jeopardy!''; he defeat ''Shark Tank'' investor [[Kevin O'Leary]] den astronaut den future United States Senator [[Mark Kelly]], winning $50,000 for ein charity. Insyd April 2021, Rodgers get a two-week stint as guest host on ''Jeopardy!'' from April 5–16.<ref>{{Cite web |last=Demovsky |first=Rob |date=January 12, 2021 |title=Green Bay Packers QB Aaron Rodgers says he'll be a 'Jeopardy!' guest host |url=https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |url-status=live |archive-url=https://web.archive.org/web/20210116152354/https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |archive-date=January 16, 2021 |access-date=January 16, 2021 |publisher=[[ESPN]]}}</ref><ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers sanso make numerous cameo appearances on television, wey dey include insyd a 2013 episode of ''The Office'', a 2019 episode of ''Game of Thrones'', den a 2015 episode of de sketch comedy television series ''Key & Peele''.<ref>{{Cite web |last=Zaldivar |first=Gabe |date=May 10, 2013 |title=Aaron Rodgers Judges Andy Bernard Breakdown on 'The Office' |url=https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |url-status=live |archive-url=https://web.archive.org/web/20210720173445/https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |archive-date=July 20, 2021 |access-date=July 20, 2021 |website=Bleacher Report}}</ref><ref>{{Cite web |date=May 13, 2019 |title=Video NFL star makes surprise cameo on 'Game of Thrones' |url=https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |url-status=live |archive-url=https://web.archive.org/web/20211018165222/https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |archive-date=October 18, 2021 |access-date=October 18, 2021 |website=ABC News |language=en}}</ref><ref>{{Cite web |last=Dubin |first=Jared |date=January 28, 2015 |title=WATCH: Key & Peele, Aaron Rodgers spoof player introductions |url=https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |url-status=live |archive-url=https://web.archive.org/web/20180831104426/https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |archive-date=August 31, 2018 |access-date=August 30, 2018 |website=CBS Sports}}</ref> He sanso tape a cameo as ''Jeopardy!'' host for an episode of ''The Conners''.<ref>{{Cite web |last=Cwik |first=Chris |date=May 8, 2021 |title=Aaron Rodgers guest starring as 'Jeopardy!' host on 'The Conners,' prompting speculation about future |url=https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |url-status=live |archive-url=https://web.archive.org/web/20210508190417/https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |archive-date=May 8, 2021 |access-date=May 8, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd 2021, Rodgers take part insyd ''The Match IV'', wich be de fourth installment insyd de exhibition match play golf series. Na he be paired plus professional golfer [[Bryson DeChambeau]]. De team go up against [[Phil Mickelson]] den Tom Brady.<ref>{{Cite web |last=Wells |first=Adam |date=May 26, 2021 |title=Mickelson, Tom Brady vs. DeChambeau, Aaron Rodgers Set for Capital One's 'The Match' |url=https://bleacherreport.com/articles/10003839-mickelson-tom-brady-vs-dechambeau-aaron-rodgers-set-for-capital-ones-the-match |access-date=May 26, 2021 |website=BleacherReport |publisher=Turner Broadcasting System, Inc.}}</ref> DeChambeau den Rodgers win de match 3 den 2.<ref>{{Cite web |last=VanHaaren |first=Tom |date=July 6, 2021 |title=Bryson DeChambeau, Aaron Rodgers beat Phil Mickelson, Tom Brady in 'The Match' |url=https://www.espn.co.uk/golf/story/_/id/31773982/bryson-dechambeau-aaron-rodgers-beat-phil-mickelson-tom-brady-match |access-date=May 26, 2022 |website=[[ESPN.com]]}}</ref> Rodgers sanso take part insyd de sixth edition of ''The Match'', wer na he team up plus Brady against fellow quarterbacks [[Josh Allen]] den [[Patrick Mahomes]].<ref>{{Cite web |date=April 18, 2022 |title=Tom Brady and Aaron Rodgers to Play Patrick Mahomes and Josh Allen in 'The Match' on June 1 |url=https://www.si.com/golf/news/tom-brady-aaron-rodgers-to-play-patrick-mahomes-josh-allen-in-the-match-june-1 |access-date=May 26, 2022 |website=Morning Read |language=en}}</ref> Rodgers den Brady defeat Mahomes den Allen 1 up.<ref>{{Cite web |last=Hamel |first=Riley |date=June 1, 2022 |title=Aaron Rodgers buries a birdie at the last, teams with Tom Brady to take down Patrick Mahomes, Josh Allen in Capital One's: The Match VI |url=https://golfweek.usatoday.com/lists/tracker-shot-to-shot-updates-of-the-match-vi-at-wynn-las-vegas/ |access-date=June 28, 2022 |website=Golfweek |language=en-US}}</ref>
== Humanitarian den charitable efforts ==
Rodgers be de founder, den de co-creator, along plus David Gruber, of itsAaron,<ref>{{Cite web |last=Littman |first=Chris |date=December 4, 2014 |title=Aaron Rodgers' surprise visit makes school dean scream with joy |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |url-status=live |archive-url=https://web.archive.org/web/20191017184232/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |archive-date=October 17, 2019 |access-date=October 17, 2019 |website=Sporting News}}</ref> a charity plus a mission of "creating awareness for organizations den people wey dey change de world".<ref name="Rodgers Charity">{{Cite web |title=It's Aaron & Gruber Law |url=https://www.gruber-law.com/itsaaron/ |url-status=live |archive-url=https://web.archive.org/web/20250523173120/https://www.gruber-law.com/itsaaron/ |archive-date=May 23, 2025 |access-date=July 1, 2025 |website=Gruber Law |language=en}}</ref><ref>{{Cite web |date=September 4, 2013 |title=Gruber Law Brings Awareness Through 'Its Aaron' with Aaron Rodgers |url=https://www.gruber-law.com/itsaaron/ |archive-url=https://web.archive.org/web/20190414173233/https://www.gruber-law.com/itsaaron/ |archive-date=April 14, 2019 |access-date=March 7, 2019 |website=Gruber Law Offices}}</ref>
He sanso be a supporter of de MACC Fund,<ref name="Nickel">{{Cite web |last=Nickel |first=Lori |date=May 14, 2013 |title=Aaron Rodgers Shines at MACC Fund Event |url=https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |url-status=live |archive-url=https://web.archive.org/web/20250306103414/https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |archive-date=March 6, 2025 |access-date=February 2, 2014 |website=Milwaukee Journal Sentinel}}</ref><ref name="Demovsky">{{Cite web |last=Demovsky |first=Rob |date=December 31, 2013 |title=Aaron Rodgers address 'crazy rumors' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |url-status=live |archive-url=https://web.archive.org/web/20140204035709/http://espn.go.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |archive-date=February 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> Raise Hope for Congo,<ref name="Garber">{{Cite web |last=Garber |first=Greg |date=January 1, 2014 |title=Aaron Rodgers makes real difference:Packers quarterback uses his clout to bring awareness to Raise Hope For Congo |url=https://www.espn.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |url-status=live |archive-url=https://web.archive.org/web/20140104044126/http://espn.go.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |archive-date=January 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> den oda humanitarian den charitable efforts.<ref>{{Cite web |title=Aaron Rodgers: Charity Work & Causes |url=https://www.looktothestars.org/celebrity/aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20211115164124/https://www.looktothestars.org/celebrity/aaron-rodgers |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=Look to the Stars |language=en}}</ref><ref>{{Cite web |date=March 1, 2021 |title=Aaron Rodgers donates $1 million to aid 80 small businesses in hometown |url=https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |url-status=live |archive-url=https://web.archive.org/web/20211115164225/https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=NFL.com |language=en-US}}</ref>
Rodgers ein ''[[List of Jeopardy! tournaments and events|Celebrity Jeopardy!]]'' win earn $50,000 for de MACC Fund.<ref name="Kaduk2015">{{Cite web |last=Kaduk |first=Kevin |date=May 12, 2015 |title=Aaron Rodgers wins his episode of Celebrity Jeopardy |url=https://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |url-status=live |archive-url=https://web.archive.org/web/20150514165207/http://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=[[Yahoo! Sports]]}}</ref><ref>{{Cite web |last=Hanzus |first=Dan |date=May 12, 2015 |title=Aaron Rodgers comes up clutch on Celebrity Jeopardy |url=https://www.nfl.com/news/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy-0ap3000000492438 |url-status=live |archive-url=https://web.archive.org/web/20150514155518/http://www.nfl.com/news/story/0ap3000000492438/article/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=NFL.com}}</ref> During ein 2021 appearance as ''Jeopardy!'' guest host, de show make a charitable donation equal to de cumulative winnings of de contestants (wey dey include de runners-up) for those ten shows.<ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers be a supporter of ein alma mater, University of California, Berkeley. He donate funds to renovate de athletic facilities<ref>{{Cite web |last=Kercheval |first=Ben |date=June 11, 2019 |title=Aaron Rodgers gives Cal football 'seven-figure gift' for locker room renovations, scholarship |url=https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |url-status=live |archive-url=https://web.archive.org/web/20210709182238/https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=CBS Sports |language=en}}</ref> wey he sanso establish an endowed scholarship give transfer students at de school. Insyd 2021, dem honor am by de school for ein charitable work.<ref>{{Cite web |date=June 1, 2021 |title=2021's Best and Brightest Alumni, Faculty Honored at Berkeley Charter Gala |url=https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |url-status=live |archive-url=https://web.archive.org/web/20210709182728/https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=Cal Alumni Association}}</ref>
Insyd 2021, Rodgers donate $1 million to help small businesses insyd Chico den Butte County, California.<ref>{{Cite web |date=March 1, 2021 |title=Packers QB Aaron Rodgers donates $1 million to help his hometown's small businesses |url=https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |url-status=dead |archive-url=https://web.archive.org/web/20230119205343/https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |archive-date=January 19, 2023 |access-date=January 19, 2023 |website=Packers.com |language=en-US}}</ref>
Insyd 2024, Rodgers raise $3 million for charities plus a flag football tournament.<ref>{{Cite web |last=Williams |first=Randall |date=May 4, 2024 |title=Aaron Rodgers Is Bullish on Flag Football, Uses to Raise Millions for Charity |url=https://www.bloomberg.com/news/articles/2024-05-04/nfl-qb-aaron-rodgers-says-olympic-flag-football-might-be-next-chapter |access-date=May 30, 2024 |website=Bloomberg.com}}</ref>
414znihgd8vstlmbwome5xnu7oycfe4
111297
111296
2026-08-29T22:24:48Z
DaSupremo
9
Improve article
111297
wikitext
text/x-wiki
{{Databox}}
'''Aaron Charles Rodgers''' (born December 2, 1983) be an American professional football quarterback give de Pittsburgh Steelers of de National Football League (NFL). He play college football give de California Golden Bears, setting de school ein record for lowest single-season den career interception rates before he be selected by de Green Bay Packers insyd de first round of de 2005 NFL draft.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{cite web |date=April 23, 2005 |title=Aaron Rodgers Selected by Green Bay |url=https://calbears.com/sports/2005/4/23/207736054 |access-date=September 25, 2025 |website=California Golden Bears Athletics}}</ref> He be regarded as one of de greatest den most talented quarterbacks of all time.<ref name="GOAT2">*{{Cite web |date=August 30, 2018|title=Where will Rodgers finish among the greatest QBs of all time?|url=http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|url-status=live|archive-url=https://web.archive.org/web/20181114060238/http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|archive-date=November 14, 2018|access-date=November 13, 2018|publisher=National Football League|type=Television production}}<li>{{Cite web |last=Siegel|first=Alan|date=February 28, 2018|title=The top 25 NFL quarterbacks of all-time|url=https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|url-status=live|archive-url=https://web.archive.org/web/20200724211140/https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|archive-date=July 24, 2020|access-date=November 13, 2018|work=[[USA Today]]|quote=By the time he's done, Rodgers may be No. 1 on this list. At 35, the seven-time Pro Bowler and two-time NFL MVP, who led the Packers to victory in Super Bowl XLV, is still going strong. He holds the NFL record in single-season and career passer rating (122.5, 103.2) and is creeping up on the leaders in nearly every major passing category.}}</li><li>{{Cite web |last=Schein|first=Adam|date=January 18, 2021|title=NFL Divisional Round aftermath: Aaron Rodgers most talented QB ever? Chiefs in trouble?|url=https://www.nfl.com/news/nfl-divisional-round-aftermath-aaron-rodgers-most-talented-qb-ever-chiefs-in-tro|access-date=April 4, 2023|website=[[NFL.com]]}}</li>*{{Cite web |last=Miller|first=Dalton|date=May 27, 2021|title=Ranking the Top Quarterbacks in NFL History from Tom Brady to Warren Moon|url=https://www.profootballnetwork.com/ranking-top-quarterbacks-in-nfl-history/|access-date=April 5, 2023|work=Pro Football Network}}
*{{Cite web |last=Schwab|first=Frank|date=February 1, 2023|title=What is Tom Brady's place among the 5 greatest QBS in NFL history?|url=https://sports.yahoo.com/what-is-tom-bradys-place-among-the-5-greatest-qbs-in-nfl-history-161857912.html|access-date=April 4, 2023|work=[[Yahoo! Sports]]}}</ref>
After backing up [[Brett Favre]] for de first three years of ein NFL career, Rodgers cam be de Packers dema starting quarterback insyd 2008. Insyd de 2010 season, he lead dem to a victory insyd Super Bowl XLV, earning de Super Bowl MVP. Na dem name am Associated Press Athlete of de Year insyd 2011,<ref name="Male Athlete of the year">{{Cite news|date=December 21, 2011|title=Rodgers named Male Athlete of the Year|work=[[Fox Sports]]|agency=[[Associated Press]]|url=http://msn.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|url-status=dead|access-date=May 13, 2011|archive-url=https://web.archive.org/web/20190718082529/https://www.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|archive-date=July 18, 2019}}</ref> wey na dem vote am league MVP by de Associated Press for de 2011, 2014, 2020, den 2021 NFL seasons. Rodgers be de fifth player to win NFL MVP insyd consecutive seasons, joining [[Peyton Manning]], Favre, [[Joe Montana]] den [[Jim Brown]]. Rodgers lead de NFL six times insyd touchdown-to-interception ratio (2011, 2012, 2014, 2018, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Leaders – Passing Touchdown/Interception Ratio |url=https://www.footballdb.com/leaders/yearly-passing-tdintratio |url-status=live |archive-url=https://web.archive.org/web/20190407190912/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=April 7, 2019 |access-date=April 7, 2019 |website=FootballDB.com}}</ref> six times insyd lowest passing interception percentage (2009, 2014, 2018, 2019, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passing Interception Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-intpct |url-status=live |archive-url=https://web.archive.org/web/20200724202503/https://www.footballdb.com/leaders/yearly-passing-intpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> four times insyd passer rating (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passer Rating Leaders |url=https://www.footballdb.com/leaders/yearly-passing-rating |url-status=live |archive-url=https://web.archive.org/web/20200724211550/https://www.footballdb.com/leaders/yearly-passing-rating |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den four times insyd touchdown passing percentage (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Touchdown Pass Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-tdpct |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.footballdb.com/leaders/yearly-passing-tdpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> three times insyd total touchdowns (2011, 2016, 2020); twice insyd touchdown passes (2016, 2020)<ref>{{Cite web |title=NFL Yearly Touchdown Passes Leaders |url=https://www.footballdb.com/leaders/yearly-passing-touchdowns |url-status=live |archive-url=https://web.archive.org/web/20200724202559/https://www.footballdb.com/leaders/yearly-passing-touchdowns |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den once insyd yards per attempt (2011) den completion percentage (2020).<ref>{{Cite web |title=NFL Yearly Passing Yards per Attempt Leaders |url=https://www.footballdb.com/leaders/yearly-passing-ydsattempt |url-status=live |archive-url=https://web.archive.org/web/20200724202800/https://www.footballdb.com/leaders/yearly-passing-ydsattempt |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> Insyd 2023, na dem trade Rodgers to de New York Jets, wer he spend two seasons plus de team. Released by de Jets after de 2024 season, Rodgers sign plus de Steelers, whom he lead to a division title dat season.
Ranking first on de NFL ein all-time regular-season career passer rating list,<ref>{{Cite web |last=Brizuela |first=James |date=September 16, 2025 |title=Ravens' Lamar Jackson Has Surpassed Aaron Rodgers in Major NFL Career Stat |url=https://www.newsweek.com/sports/nfl/ravens-lamar-jackson-has-surpassed-aaron-rodgers-major-nfl-career-stat-2130770 |access-date=September 16, 2025 |website=[[Newsweek]]}}</ref> Rodgers be among de most efficient quarterbacks of all time. Apart from a regular-season career passer rating of over 100 (de first to ever have a career rating over 100), he sanso dey hold de best touchdown-to-interception ratio den de lowest passing interception percentage insyd NFL history while he sanso get de highest passer rating insyd NFL history thru out de entire 2010s decade. Insyd de postseason, he be second in both touchdown passes den touchdown-to-interception ratio, fourth insyd passing yards, den eighth insyd all-time passer rating. Insyd de regular season, he get de best touchdown-to-interception ratio insyd NFL history at 4.34,<ref name="Football DB">{{Cite web |title=NFL Career Leaders – Passing Touchdown/Interception Ratio |url=http://www.footballdb.com/leaders/career-passing-tdintratio |archive-url=https://web.archive.org/web/20200508102359/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=May 8, 2020 |access-date=November 3, 2014 |website=FootballDB.com}}</ref> he dey hold de league ein second lowest career interception percentage at 1.4 percent<ref name="a">{{Cite web |title=NFL Career Pass Interception % Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |url-status=live |archive-url=https://web.archive.org/web/20110815065956/http://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |archive-date=August 15, 2011 |access-date=September 24, 2015 |work=[[Pro Football Reference]]}}</ref> den de highest single-season passer rating record of 122.5.<ref>{{Cite web |last=Mayer |first=Larry |date=September 12, 2012 |title=Bears gearing up to battle Rodgers |url=http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |url-status=dead |archive-url=https://web.archive.org/web/20150925095614/http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |archive-date=September 25, 2015 |access-date=September 24, 2015 |publisher=[[Chicago Bears]]}}</ref> Rodgers sanso be a four-time winner of de Best NFL Player ESPY Award.
== Early life ==
Ba dem born Aaron Charles Rodgers on December 2, 1983, insyd Chico, California,<ref>{{Cite magazine|title=Aaron Rodgers – No. 12 – QB|url=http://sportsillustrated.cnn.com/football/nfl/players/7200|url-status=dead|archive-url=https://web.archive.org/web/20110719095151/http://sportsillustrated.cnn.com/football/nfl/players/7200/|archive-date=July 19, 2011|access-date=February 6, 2011|magazine=[[Sports Illustrated]]}}</ref> de son of Darla Leigh (née Pittman) den Edward Wesley Rodgers. Na ein poppie be a Texas-born chiropractor wey play football as an offensive lineman give de Chico State Wildcats from 1973 to 1976.<ref name="about1">{{Cite web |last=Powell |first=Kimberly |date=October 15, 2018 |title=Ancestry of Aaron Rodgers |url=https://www.thoughtco.com/family-tree-of-aaron-rodgers-1421929 |url-status=live |archive-url=https://web.archive.org/web/20111211212214/http://genealogy.about.com/od/famous_family_trees/ss/aaron-rodgers.htm |archive-date=December 11, 2011 |access-date=May 10, 2012 |website=ThoughtCo.com}}</ref><ref name="Jackel2005">{{Cite web |last=Jackel |first=Pete |date=October 6, 2005 |title=Focus on Football: Rodgers preparing for his moment |url=http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |url-status=live |archive-url=https://web.archive.org/web/20110127115346/http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |archive-date=January 27, 2011 |access-date=March 14, 2012 |website=RacineSportsZone.com |publisher=JournalTimes.com}}</ref> Rodgers be of English, Irish den German ancestry.<ref name="about1" /> De family move go Ukiah, California, wer he attend Oak Manor Elementary School.<ref name="FreeThrows">{{Cite news|date=January 3, 1993|title='Free throws' are his forte|url=https://newspaperarchive.com/ukiah-daily-journal/1993-01-03/|url-status=live|archive-url=https://web.archive.org/web/20211201192340/https://newspaperarchive.com/browse/us/ca/ukiah/ukiah-daily-journal/|archive-date=December 1, 2021|access-date=March 14, 2012|work=Ukiah Daily Journal|via=Newspaper Archive|page=1}}</ref> Edward Rodgers toss a football plus ein sons Luke, Aaron den [[Jordan Rodgers]], wey he flow dem make dem no told drink den no party insyd college anaa dem go limit demaselves insyd sports like he do. Aaron take dis advice to heart.<ref name="Jackel2005" /> At de age of ten, he be featured on de front page of de ''Ukiah Daily Journal'' for ein top performance at a local basketball free throw competition.<ref name="FreeThrows" />
Later, de family move go Beaverton, Oregon, wer Rodgers attend Vose Elementary School den Whitford Middle School, wey he play baseball insyd de Raleigh Hills Little League at shortstop, center field den pitcher.<ref name="Oregonian">{{Cite web |date=February 5, 2011 |title=Green Bay quarterback Aaron Rodgers has strong ties to Beaverton |url=http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |url-status=live |archive-url=https://web.archive.org/web/20110216014347/http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |archive-date=February 16, 2011 |access-date=February 5, 2011 |work=[[The Oregonian]]}}</ref>
De Rodgers family return to Chico insyd 1997, wey Aaron attend Pleasant Valley High School, starting for two years at quarterback den garnering 4,421 passing yards.<ref>{{Cite web |last=Davidson |first=Joe |date=September 5, 2019 |title=Green Bay Packers quarterback Aaron Rodgers donates 354 new helmets to California high schools |url=https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |url-status=live |archive-url=https://web.archive.org/web/20190925105424/https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |archive-date=September 25, 2019 |access-date=September 13, 2019 |work=[[Honolulu Star-Advertiser]]}}</ref> He set single-game records of six touchdowns den 440 all-purpose yards. Rodgers set a single-season school record plus 2,466 total yards insyd 2001.<ref>{{Cite web |last=Carlton |first=Jimmy |date=April 26, 2018 |title=Of brains, Butte and baseball: How a tiny teenager became #Packers MVP Aaron Rodgers |url=https://onmilwaukee.com/articles/packersaaronrodgersjourney |access-date=May 30, 2024 |website=OnMilwaukee}}</ref> He graduate from Pleasant Valley High School insyd spring 2002, after scoring 1310 insyd de SAT den plus an A− average.<ref>{{Cite web |title=#12 Aaron Rodgers |url=http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |url-status=live |archive-url=https://web.archive.org/web/20110716022313/http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |archive-date=July 16, 2011 |access-date=February 6, 2011 |website=Packer Report |publisher=Scout with FoxSports.com}}</ref><ref>{{Cite news|date=November 20, 2002|title=JC Quarterback Commits to Cal, Butte's Rodgers Could Join the Competition to Replace Boller Next Year|url=http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|url-status=live|archive-url=https://web.archive.org/web/20181113165752/http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|archive-date=November 13, 2018|access-date=May 11, 2012|work=Contra Costa Times|location=Walnut Creek, California|via=NewsBank|quote=[He] scored 1310 on the SAT, so Cal's academic reputation was important to him.}}</ref><ref>{{Cite news|last=Crouse|first=Karen|date=January 31, 2011|title=Packers' Rodgers Has Deep Roots in Chico|url=https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|url-status=live|archive-url=https://web.archive.org/web/20190426170034/https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|archive-date=April 26, 2019|access-date=December 5, 2019|work=[[The New York Times]]|page=D1|quote=Despite his athletic prowess, an A-minus average and an SAT score of 1310, Rodgers did not receive an NCAA Division I scholarship offer coming out of high school.}}</ref>
== College career ==
Despite ein impressive high school record, Rodgers attract little interest from Division I programs.<ref>{{Cite web |last=Kalland |first=Robby |date=September 3, 2015 |title=How Aaron Rodgers went from not being recruited to a star at Cal |url=https://www.cbssports.com/college-football/news/how-aaron-rodgers-went-from-not-being-recruited-to-a-star-at-cal/ |access-date=May 30, 2024 |website=CBSSports.com}}</ref> Insyd a 2011 interview plus ''E:60'', he attribute de relative lack of attention insyd de recruiting process to ein unimposing physical stature as a high school player at {{convert|5|ft|10|in|m|abbr=on}} den {{convert|165|lb|kg}}. Na Rodgers want to attend Florida State den play under head coach [[Bobby Bowden]], buh na dem reject am.<ref name="E60 Youtube">{{Cite web |date=October 27, 2011 |title=E:60 – Aaron Rodgers |url=https://www.youtube.com/watch?v=blrmdIfXPwI |url-status=live |archive-url=https://web.archive.org/web/20120302212553/https://www.youtube.com/watch?v=blrmdIfXPwI |archive-date=March 2, 2012 |access-date=May 13, 2012 |publisher=ESPN |via=YouTube}}</ref> Na he only be offered an opportunity to compete for a scholarship as a walk-on from University of Illinois.<ref>{{Cite news|last=McGrath|first=Jim|date=June 29, 2011|title=Green Bay QB Rodgers Visits All-Pro Campers at W&M|work=Williamsburg Yorktown Daily|url=http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|url-status=dead|access-date=August 22, 2013|archive-url=https://web.archive.org/web/20130921054645/http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|archive-date=September 21, 2013}}</ref> He decline de invitation, wey na he consider quitting football to play baseball instead anaa giving up entirely on de idea of playing insyd professional sports den attending law school after completing ein undergraduate degree.<ref name="Babb">{{Cite news|last=Babb|first=Kent|date=December 15, 2015|title=For Aaron Rodgers, road to the NFL started at an apparent dead end|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|url-status=live|access-date=November 30, 2018|archive-url=https://web.archive.org/web/20181130205037/https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|archive-date=November 30, 2018}}</ref>
He then be recruited to play football at Butte College insyd Oroville, a junior college about {{convert|15|mi|km}} southeast of Chico.<ref>{{Cite book |last=Sandler |first=Michael |url=https://archive.org/details/aaronrodgersgree0000sand |title=Aaron Rodgers and the Green Bay Packers: Super Bowl XLV |date=August 1, 2011 |publisher=Bearport Publishing |isbn=9781617723094 |url-access=registration}}</ref>
=== Butte ===
==== 2002 season ====
Rodgers throw 26 touchdowns insyd ein freshman season at Butte,<ref>{{Cite web |title=Aaron Rodgers |url=https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |url-status=live |archive-url=https://web.archive.org/web/20211028170413/https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |archive-date=October 28, 2021 |access-date=October 13, 2021 |website=California Community Colleges Chancellor's Office}}</ref><ref>{{Cite web |title=Stats & Records |url=http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-url=https://web.archive.org/web/20081202112615/http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-date=December 2, 2008 |access-date=November 18, 2011 |website=butte.edu |publisher=[[Butte College]]}}</ref> leading de school to a 10–1 record, de NorCal Conference championship,<ref>{{Cite web |date=November 8, 2008 |title=Title-tilt bound: Butte secures NorCal championship |url=https://www.chicoer.com/20081108/title-tilt-bound-butte-secures-norcal-championship/ |access-date=May 30, 2024 |work=Chico Enterprise-Record}}</ref> den a {{nowrap|No. 2}} national ranking. While der, na he be discovered by de California Golden Bears ein head coach [[Jeff Tedford]], wey na he dey recruite Butte tight end Garrett Cross.<ref>{{Cite web |last=McGrath |first=Dan |date=November 11, 2004 |title=Cal QB Rodgers has the pedigree |url=https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-url=https://web.archive.org/web/20191205183533/https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-date=December 5, 2019 |access-date=September 13, 2019 |work=Chicago Tribune}}</ref> Na Tedford be surprised to learn say Rodgers no be recruited earlier. Secof Rodgers ein good high school scholastic record, he be eligible to transfer to de University of California, Berkeley after one year of junior college instead of de typical two.<ref name="Cal">{{Cite news|last=Adams|first=Bruce|date=August 3, 2003|title=Cal's QB hope: JC transfer Rodgers has what Tedford likes|work=San Francisco Chronicle|url=https://www.sfchronicle.com/sports/article/Cal-s-QB-hope-JC-transfer-Rodgers-has-what-2598626.php|url-status=live|access-date=22 February 2026}}</ref>
=== California ===
==== 2003 season ====
As a junior college transfer, Rodgers get three years of eligibility at Cal. Na dem name am de starting quarterback insyd de fifth game of de 2003 season, beating de only team wey offer am a {{nowrap|Division I}} opportunity out of high school, Illinois.<ref>{{Cite web |date=October 14, 2014 |title=Aaron Rodgers: I wanted to join Illini; they passed |url=https://www.chicagotribune.com/2014/10/14/aaron-rodgers-i-wanted-to-join-illini-they-passed/ |access-date=May 30, 2024 |work=Chicago Tribune}}</ref> As a sophomore, he help lead de Golden Bears to a 7–3 record as a starter.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{Cite web |last=King |first=Randy |date=December 26, 2003 |title=Virginia Tech finishes on wrong foot with Insight Bowl loss to Cal |url=https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |url-status=live |archive-url=https://web.archive.org/web/20191208021513/https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |work=The Roanoke Times}}</ref>
Insyd ein second career start, Rodgers lead de team to a 21–7 halftime lead against #3 USC. Secof injury, na dem replace Rodgers insyd de second half by Reggie Robertson.<ref name="calfans" /><ref>{{Cite web |date=September 27, 2003 |title=Cal-USC Postgame Quotes |url=http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121444/http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |archive-date=June 9, 2012 |website=California Golden Bears |quote=After the interception for the touchdown, I went over to him and said 'Do you want to take a couple of series off?' and he said 'Yes.' We put Reggie (Robertson) in and Reggie did a nice job for us."}}</ref> De Bears win insyd triple overtime, 34–31.<ref name="calfans">{{Cite web |date=September 27, 2003 |title=Cal fans storm field after win |url=http://espn.go.com/ncf/recap?gameId=232700025 |url-status=dead |archive-url=https://web.archive.org/web/20161119182933/https://www.espn.com/college-football/recap?gameId=232700025 |archive-date=November 19, 2016 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |last=Faraudo |first=Jeff |date=September 29, 2009 |title=Cal's triple-overtime thriller against USC in 2003 produced multiple heroes |url=https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |url-status=live |archive-url=https://web.archive.org/web/20191208021406/https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=East Bay Times}}</ref> Rodgers pass for 394 yards wey na dem name am game MVP insyd de Insight Bowl against Virginia Tech.<ref>{{Cite web |title=Insight Bowl – Virginia Tech vs California Box Score, December 26, 2003 |url=https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |url-status=live |archive-url=https://web.archive.org/web/20180312084010/https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |work=[[Sports Reference]]}}</ref><ref>{{Cite book |last=Tsuchiya |first=Anita |url=https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |title=Aaron Rodgers: Biography of a Super Bowl MVP |date=July 30, 2012 |publisher=Hyperink Inc |isbn=9781614646129 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203201742/https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |archive-date=February 3, 2021 |url-status=live}}</ref>
Insyd 2003, Rodgers tie de school season record for 300-yard games plus five wey he set a school record for de lowest percentage of passes dem intercept at 1.43%.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref>
==== 2004 season ====
As a junior, Rodgers lead Cal to a 10–1 record den top-five ranking at de end of de regular season, plus dema only loss a 23–17 loss at {{nowrap|No. 1}} USC.<ref>{{Cite web |title=2004 California Golden Bears Schedule and Results |url=https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |url-status=live |archive-url=https://web.archive.org/web/20180312085053/https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref> Insyd dat game, Rodgers set a school record for consecutive passes dem plete plus 26 wey he tie an NCAA record plus 23 consecutive passes dem plete insyd one game.<ref>{{Cite web |last=Lee |first=Ted |date=October 10, 2004 |title=It was there for the taking |url=https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-url=https://web.archive.org/web/20191205183922/https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-date=December 5, 2019 |access-date=September 13, 2019 |website=BearTerritory.net}}</ref> Na he set a Cal single-game record for passing completion percentage of 85.3.<ref>{{Cite web |last=Lowry |first=Matthew |date=November 15, 2019 |title=Trojans Throwback: 2004 USC vs California |url=https://www.conquestchronicles.com/football/2019/11/15/20966700/trojans-throwback-2004-usc-vs-california |access-date=May 30, 2024 |work=Conquest Chronicles}}</ref><ref>{{Cite web |last=Wharton |first=David |date=October 10, 2004 |title=Rodgers Can't See It Through to Completion |url=https://www.latimes.com/archives/la-xpm-2004-oct-10-sp-uscside10-story.html |access-date=May 30, 2024 |work=Los Angeles Times}}</ref> Rodgers dey hold de Cal career record for lowest percentage of passes dem intercept at 1.95 percent.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref> Rodgers ein performance set up de Golden Bears at first den goal plus 1:47 remaining den a chance for de game-winning touchdown. On de first play of USC ein goal line stand, Rodgers throw an incomplete pass. Na dis be followed by a second-down sack by [[Manuel Wright]].<ref name="Cal Vs USC 2004" /> After a timeout den Rodgers ein incomplete pass on third down, USC stop Cal ein run play to win de game.<ref name="Cal Vs USC 2004" /> Rodgers comment say na e be "frustrating dat we no fi get de job done."<ref name="Cal Vs USC 2004">{{Cite web |date=October 9, 2004 |title=Trojans' defense stymies Cal QB at first-and-goal |url=http://scores.espn.go.com/ncf/recap?gameId=242830030 |url-status=dead |archive-url=https://web.archive.org/web/20170817065913/http://scores.espn.com/ncf/recap?gameId=242830030 |archive-date=August 17, 2017 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Overall, he fini de 2004 season plus 2,566 passing yards, 24 touchdowns, den eight interceptions. Ein 66.1% pass completion percentage lead de Pac-10.<ref>{{Cite web |title=Aaron Rodgers 2004 Game Log |url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |url-status=live |archive-url=https://web.archive.org/web/20180312084136/https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref><ref>{{Cite web |title=2004 Pacific-10 Conference Leaders |url=https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |url-status=live |archive-url=https://web.archive.org/web/20180328231847/https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Sports Reference]]}}</ref> He fini ninth insyd Heisman Trophy voting.<ref>{{Cite web |title=2004 Heisman Trophy Voting |url=https://www.sports-reference.com/cfb/awards/heisman-2004.html |access-date=December 2, 2022 |website=[[Sports Reference]] |language=en}}</ref>
After na dem pick Texas over Cal for a Rose Bowl berth, na dem award de fourth-ranked Bears a spot insyd de Holiday Bowl, wich dem loose to Texas Tech, 45–31.<ref>{{Cite web |date=December 15, 2017 |title=2004 Holiday Bowl: Cal caught in Texas Tech's Air Raid |url=https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208021644/https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> After de season, Rodgers decide to forgo ein senior season to enter de 2005 NFL draft.<ref>{{Cite web |date=January 6, 2005 |title=Who to watch in 2005 |url=http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |url-status=live |archive-url=https://web.archive.org/web/20190426144539/http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |archive-date=April 26, 2019 |access-date=February 15, 2012 |website=Chico News & Review}}</ref>
== Professional career ==
=== 2005 NFL draft ===
Na Rodgers be expected to be selected early insyd de 2005 NFL draft as he post impressive numbers as a junior plus Cal, throwing for 2,320 yards plus a 67.5 completion rate insyd de regular season. He throw for 24 touchdowns den only eight interceptions insyd ein last college season, impressing chaw NFL scouts. Na dem comment say na he be a "talented strong-armed junior"<ref name="Draft Insider">{{Cite web |title=NFL Draft – QB Aaron Rodgers |url=http://www.draftinsiders.com/node/1288 |url-status=dead |archive-url=https://web.archive.org/web/20120111054622/http://www.draftinsiders.com/node/1288 |archive-date=January 11, 2012 |access-date=December 9, 2011 |website=DraftInsiders.com}}</ref> wey dey "combine arm strength, mechanics den delivery to make all de throws", buh dem note say ein stats fi be inflated secof playing insyd a quarterback-friendly system den dat he go need to adjust to de more elaborate defensive schemes of de NFL.<ref name="Draft Insider" />
Before de draft, na Rodgers be confident say he go be drafted to de San Francisco 49ers, de team he support den grow up near,<ref name="Bensiger">{{Cite AV media |url=https://www.youtube.com/watch?v=8_a6O3vdlU0 |title=In Depth with Graham Bensinger: Aaron Rodgers: Thought I'd be a 49er |date=December 21, 2016 |last=Bensinger |first=Graham |type=Television production, YouTube video |access-date=December 26, 2016 |archive-url=https://ghostarchive.org/varchive/youtube/20211212/8_a6O3vdlU0 |archive-date=December 12, 2021 |url-status=live |orig-year=2010}}</ref> wey possess de No. 1 overall pick insyd de draft.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> De 49ers, however, draft quarterback [[Alex Smith]] out of Utah instead, wey Rodgers slid all de way down to de 24th overall pick by de Green Bay Packers. Na Rodgers say he experience much angst den restlessness wen waiting to be selected several hours into de draft, as na he expect einself to be selected much sooner.<ref name="Bensiger" /> Rodgers ein slip to de 24th selection den de Packers choosing to pick [[Brett Favre]] ein future replacement cam be one of de biggest stories of de draft, though na he still be de second quarterback dem select. Na ein drop insyd de draft later be ranked number one on de NFL Network ein Top 10 Draft Day Moments.<ref>{{Cite web |last=Currie |first=David |date=April 27, 2017 |title=NFL Draft: Top 10 Moments – Aaron Rodgers falling to Tim Tebow trade |url=https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |url-status=live |archive-url=https://web.archive.org/web/20200727131640/https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |archive-date=July 27, 2020 |access-date=September 13, 2019 |website=Sky Sports}}</ref> Chaw teams wey dey draft between de second den 23rd positions get positional needs more pressing dan quarterback.<ref name="ESPN Column">{{Cite web |last=Clayton |first=John |date=April 23, 2005 |title=Clayton: Waiting is the hardest part |url=https://www.espn.com/nfl/draft05/columns/story?columnist=clayton_john&id=2044646 |url-status=live |archive-url=https://web.archive.org/web/20160702194839/http://espn.go.com/nfl/draft05/columns/story?id=2044646&columnist=clayton_john |archive-date=July 2, 2016 |access-date=April 27, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |title=2005 NFL Draft Listing |url=https://www.pro-football-reference.com/years/2005/draft.htm |url-status=live |archive-url=https://web.archive.org/web/20170921001516/https://www.pro-football-reference.com/years/2005/draft.htm |archive-date=September 21, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers be one of six quarterbacks wey [[Jeff Tedford]] coach to be drafted insyd de first round of an NFL draft, joining [[Trent Dilfer]], [[Akili Smith]], [[David Carr (American football)|David Carr]], [[Joey Harrington]] den [[Kyle Boller]].<ref>{{Cite news|last=Greenberg|first=Steve|date=November 20, 2012|title=Jeff Tedford developed Aaron Rodgers, but recent QBs struggled|work=Sporting News|url=http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|url-status=live|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20161230042613/http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|archive-date=December 30, 2016}}</ref>
=== Green Bay Packers ===
==== Backup years: 2005–2007 ====
Insyd August 2005, Rodgers agree to a reported five-year, $7.7 million deal wey include $5.4 million in guaranteed money wey e get de potential to pay am as much as $24.5 million if na dem meet all incentives den escalators.<ref name="Sportrac Contract">{{Cite web |title=Aaron Rodgers Contract Breakdown |url=https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |url-status=live |archive-url=https://web.archive.org/web/20210506052810/https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |archive-date=May 6, 2021 |access-date=November 15, 2021 |website=Spotrac.com |language=en-US}}</ref>
Rodgers spend ein rookie season as de Packers dema backup quarterback behind Brett Favre.<ref>{{Cite web |title=2005 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2005.htm |url-status=live |archive-url=https://web.archive.org/web/20211107183417/https://www.pro-football-reference.com/teams/gnb/2005.htm |archive-date=November 7, 2021 |access-date=December 8, 2019 |website=[[Pro Football Reference]]}}</ref> Na de Packers be 4–12 at dis point wey he receive ein first extended look insyd de opening preseason game against de San Diego Chargers after replacing Favre.<ref name="Chargers Vs Packers 2005 Preseason">{{Cite web |date=August 11, 2005 |title=Favre completes nine of 10 passes for 91 yards, TD |url=http://scores.espn.go.com/nfl/recap?gameId=250811009 |archive-url=https://web.archive.org/web/20180127084112/https://www.espn.com/nfl/recap?gameId=250811009 |archive-date=January 27, 2018 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd ein first NFL game, Rodgers plete two out of seven passes wey na dem sack am twice. He continue to struggle thru de preseason, before ending de preseason by converting two third downs den throwing a touchdown pass to tight end [[Ben Steele]] against de Tennessee Titans.<ref name="GB Vs Tennesee">{{Cite web |date=September 1, 2005 |title=Green Bay 21, Tennessee 17 |url=http://scores.espn.go.com/nfl/recap?gameId=250901010 |url-status=dead |archive-url=https://web.archive.org/web/20131105175854/http://scores.espn.go.com/nfl/recap?gameId=250901010 |archive-date=November 5, 2013 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Once de regular season begin, Rodgers see very little action dat year. He play against de New Orleans Saints insyd de fourth quarter of a 52–3 victory, wey he plete ein first career pass to fullback [[Vonta Leach]] for 0 yards.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> On {{nowrap|December 19, 2005,}} Rodgers enter de game against de Baltimore Ravens at de end of de third quarter insyd a 48–3 loss.<ref name="Green Bay Bio" /> He plete eight of 15 passes for 65 yards den an interception.<ref name="Packers Vs. Ravens 2005">{{Cite web |date=December 20, 2005 |title=Boller outplays Favre in Ravens' rout of Packers |url=http://scores.espn.go.com/nfl/recap?gameId=251219033 |url-status=dead |archive-url=https://web.archive.org/web/20121023103816/http://scores.espn.go.com/nfl/recap?gameId=251219033 |archive-date=October 23, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref>
After de Packers dema losing season, na dem fire den replace head coach [[Mike Sherman]] by [[Mike McCarthy]].<ref name="Packers Fire Sherman">{{Cite news|date=January 2, 2006|title=Packers fire coach Mike Sherman|work=Yahoo! Sports|url=https://sports.yahoo.com/nfl/news?slug=packerssherman|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20140426105024/https://sports.yahoo.com/nfl/news?slug=packerssherman|archive-date=April 26, 2014}}</ref><ref name="Packers to hire 49ers">{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=January 12, 2006 |title=Packers to hire 49ers' McCarthy as coach |url=https://www.espn.com/nfl/news/story?id=2288985 |url-status=live |archive-url=https://web.archive.org/web/20121014050433/http://sports.espn.go.com/nfl/news/story?id=2288985 |archive-date=October 14, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]]}}</ref> Rodgers then be placed insyd McCarthy ein "Quarterback school" for six hours a day several times a week.<ref name="Journal Sentinel">{{Cite web |last=Silverstein |first=Tom |date=September 7, 2008 |title=The Education of Aaron Rodgers |url=http://www.jsonline.com/sports/packers/32579374.html |url-status=live |archive-url=https://web.archive.org/web/20101223123643/http://www.jsonline.com/sports/packers/32579374.html |archive-date=December 23, 2010 |access-date=May 11, 2012 |website=Milwaukee Journal Sentinel}}</ref> Dis focus on working on Rodgers ein motor skills such as hand-eye coordination, finger dexterity, den mechanics.<ref name="New York Times QB School">{{Cite news|last=Bishop|first=Greg|date=December 2, 2011|title=The Education of a Quarterback|work=The New York Times|url=https://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|url-status=live|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20120501123445/http://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|archive-date=May 1, 2012}}</ref> McCarthy sanso work on Rodgers ein release point, moving am from right beside de ear hole of ein helmet to further below am, to give am a smoother release.<ref name="Aaron Rodgers Leader of The Pack">{{Cite book |last=Reischel |first=Rob |title=Aaron Rodgers: Leader of the Pack: An Intimate Portrait of a Super Bowl MVP |date=March 1, 2011 |publisher=Triumph Books |isbn=978-1-60078-645-7 |language=English}}</ref> Wen de 2006 preseason begin, Rodgers play as de backup insyd all four games; he plete 22 out 38 passes for 323 yards den three touchdowns.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> Rodgers see very little action during de 2006 season, buh did step insyd briefly on {{nowrap|October 2}} against de Philadelphia Eagles wen Favre lef de game secof injury.<ref name="Green Bay Bio" /> On {{nowrap|November 19, 2006,}} Rodgers break ein left foot while playing against de New England Patriots insyd a 35–0 defeat at home, filling insyd for an injured Favre, wey Rodgers miss de remainder of de 2006 season.<ref name="Journal Sentinel" />
Following de team ein season-ending victory at Chicago, Favre announce say he go stay plus de Packers for de 2007 season, again postponing Rodgers ein hopes of becoming de Packers dema starting quarterback.<ref name="Favre">{{Cite web |last=Silverstein |first=Tom |date=January 7, 2007 |title=Favre leaves lasting impression |url=http://www.jsonline.com/news/milwaukee/29212859.html |url-status=dead |archive-url=https://web.archive.org/web/20120908152601/http://www.jsonline.com/news/milwaukee/29212859.html |archive-date=September 8, 2012 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref> Prior to de 2007 season, rumors surface about a potential trade involving Rodgers insyd wich he go be traded to de Oakland Raiders for wide receiver [[Randy Moss]].<ref>{{Cite web |date=March 18, 2007 |title=Packers GM insists QB Rodgers not on trading block |url=https://www.espn.com/nfl/news/story?id=2803272 |url-status=live |archive-url=https://web.archive.org/web/20121107040642/http://sports.espn.go.com/nfl/news/story?id=2803272 |archive-date=November 7, 2012 |access-date=December 30, 2010 |website=[[ESPN.com]]}}</ref> However, Moss be traded to de Patriots during de second day of de 2007 NFL draft, wey Rodgers stay insyd Green Bay.<ref>{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=April 29, 2007 |title=Pats acquire WR Moss from Raiders for draft pick |url=https://www.espn.com/nfl/draft07/news/story?id=2853116 |url-status=live |archive-url=https://web.archive.org/web/20171229132248/http://www.espn.com/nfl/draft07/news/story?id=2853116 |archive-date=December 29, 2017 |access-date=January 1, 2018 |website=[[ESPN.com]]}}</ref>
Rodgers step in wen na Favre injure insyd de second quarter against de Dallas Cowboys on ''Thursday Night Football'' on {{nowrap|November 29, 2007}}.<ref name="Cowboys Versus Packers 2007">{{Cite web |date=November 30, 2007 |title=Cowboys hold off Favre-less Packers to clinch playoff berth |url=http://scores.espn.go.com/nfl/recap?gameId=271129006 |url-status=dead |archive-url=https://web.archive.org/web/20121111035600/http://scores.espn.go.com/nfl/recap?gameId=271129006 |archive-date=November 11, 2012 |access-date=May 12, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers plete 18 passes for 201 yards, plus no interceptions.<ref name="Cowboys Versus Packers 2007" /> He sanso throw ein first touchdown pass buh na he be sacked three times.<ref name="Cowboys Versus Packers 2007" /> Rodgers bring de team back from a 17-point deficit to a 3-point deficit, buh de Cowboys go on to win 37–27.<ref name="Cowboys Versus Packers 2007" />
==== 2008: Transition to starter ====
[[File:AaronRodgers.jpg|left|thumb|Rodgers going down de tunnel at Lambeau Field insyd 2008]]
Favre ein retirement announcement on {{nowrap|March 4, 2008,}} open up de Packers dema starting quarterback position to Rodgers for de 2008 season. Although Favre decide to return from retirement, he be traded to de New York Jets, wich mean say Rodgers go cam be de starter.<ref>{{Cite web |last=Nickel |first=Lori |date=March 9, 2008 |title=Rodgers preparing to assume control |url=http://www.jsonline.com/story/index.aspx?id=726140 |url-status=dead |archive-url=https://web.archive.org/web/20081007044908/http://www.jsonline.com/story/index.aspx?id=726140 |archive-date=October 7, 2008 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref>
Rodgers quickly prove say na he be one of de best quarterbacks insyd de league by passing for 4,038 yards insyd ein first season as a starter as well as throwing for 28 touchdowns den only 13 interceptions. As of de 2025 season, dis still dey stand as de most interceptions he throw insyd a season.<ref>{{Cite web |title=Aaron Rodgers 2008 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |url-status=live |archive-url=https://web.archive.org/web/20180313183821/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Plus Rodgers making ein debut as a starter, de Packers beat de Minnesota Vikings 24–19 at Lambeau Field. Dis mark de first time since 1992 wey a quarterback oda dan Favre start a regular season game give de Packers. Rodgers end de game plus 178 yards passing den two touchdowns (one passing den one rushing).<ref name="Rodgers Debut">{{Cite web |last=Jenkins |first=Chris |date=September 10, 2008 |title=Solid debut frees Rodgers from post-Favre scrutiny |url=http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |url-status=live |archive-url=https://web.archive.org/web/20130921062040/http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |archive-date=September 21, 2013 |access-date=May 13, 2012 |website=USA Today |agency=Associated Press}}</ref> Insyd just ein second NFL start de following week, na dem vote Rodgers de FedEx Air award winner after passing for 328 yards den three touchdowns insyd a win against de Lions.<ref name="FedEx Air and Ground Winners Week 2 2008">{{Cite web |date=September 20, 2008 |title=FedEx Air and Ground Week 2 2008 Winners |url=http://www.nfl.com/videos?videoId=09000d5d80af20df |url-status=live |archive-url=https://web.archive.org/web/20090108060338/http://www.nfl.com/videos?videoId=09000d5d80af20df |archive-date=January 8, 2009 |access-date=September 20, 2008 |website=NFL Network |publisher=National Football League}}</ref>
During de fourth week of de season, Rodgers ein streak of 157 consecutive pass attempts widout an interception end wen na he be intercepted by [[Derrick Brooks]] of de Tampa Bay Buccaneers. Na de streak be de third-longest insyd franchise history behind [[Bart Starr]] (294) den Brett Favre (163).<ref name="Buccaneers">{{Cite web |date=September 29, 2008 |title=Buccaneers' defense rattles Rodgers in win over Packers |url=http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081001100738/http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |archive-date=October 1, 2008 |access-date=September 29, 2008 |publisher=National Football League}}</ref> Rodgers suffer a severe shoulder sprain insyd de game buh he continue to start den play well insyd a win against de Seattle Seahawks two weeks later.<ref name="Rodgers">{{Cite web |last=Jenkins |first=Chris |date=December 26, 2008 |title=Packers' Rodgers learns lessons from trying season |url=http://seattletimes.nwsource.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-url=https://web.archive.org/web/20150226064522/http://old.seattletimes.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-date=February 26, 2015 |access-date=May 13, 2012 |website=The Seattle Times}}</ref> Despite early successes, Rodgers be unable to win a close game during de season despite seven opportunities to do so.<ref name="Rodgers" /><ref name="Bears cap unlikely rally with OT win to stay alive in playoff race">{{Cite web |date=December 23, 2008 |title=Bears cap unlikely rally with OT win to stay alive in playoff race |url=http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081225222724/http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |archive-date=December 25, 2008 |access-date=December 23, 2008 |publisher=National Football League |agency=Associated Press}}</ref>
On {{nowrap|October 31, 2008}}, Rodgers sign a six-year, {{nowrap|$65 million}} contract extension thru de 2014 season.<ref name="Packers Sign Rodgers Through 2014">{{Cite web |date=October 31, 2008 |title=Packers sign QB Rodgers to $65M extension through 2014 |url=https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |url-status=live |archive-url=https://web.archive.org/web/20201204181536/https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |archive-date=December 4, 2020 |access-date=April 27, 2022 |publisher=National Football League |language=en-US |agency=Associated Press}}</ref><ref name="Contracts: Rodgers vs. Romo">{{Cite web |last=Silverstein |first=Tom |date=November 5, 2008 |title=Contracts: Rodgers vs. Romo |url=http://www.jsonline.com/sports/packers/33941369.html |url-status=live |archive-url=https://web.archive.org/web/20081205152249/http://www.jsonline.com/sports/packers/33941369.html |archive-date=December 5, 2008 |access-date=November 6, 2008 |website=JSOnline |publisher=Milwaukee Journal-Sentinel}}</ref> Insyd Rodgers ein first full season plus de team, de Packers fini plus a 6–10 record wey dem miss de playoffs.<ref>{{Cite web |title=2008 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2008.htm |url-status=live |archive-url=https://web.archive.org/web/20180907044946/https://www.pro-football-reference.com/teams/gnb/2008.htm |archive-date=September 7, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2009 ====
For de opening game of de 2009 season, Rodgers record ein first win insyd a comeback situation. Na de Packers dey trail at de beginning of de fourth quarter wen Rodgers plete a fifty-yard touchdown pass to wide receiver [[Greg Jennings]] plus about a minute remaining insyd de game to contribute to de 21–15 victory over de Chicago Bears.<ref>{{Cite web |last=Jenkins |first=Chris |date=December 8, 2019 |title=Rodgers brings Pack back for 21–15 win over Bears |url=https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |url-status=dead |archive-url=https://web.archive.org/web/20191208022530/https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Holland Sentinel}}</ref>
Na dem name Rodgers NFC Offensive Player of de Month for {{nowrap|October 2009}}, wen he pass for 988 yards, he plete 74.5 percent of ein passes, wey he record a passer rating over 110 for all three games he play during de month.<ref name="Rodgers, Sharper, Knox win NFC player of month honors">{{Cite web |last=Rosenthal |first=Gregg |date=October 29, 2009 |title=Rodgers, Sharper, Knox win NFC player of month honors |url=http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |url-status=live |archive-url=https://web.archive.org/web/20140112100938/http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |archive-date=January 12, 2014 |access-date=May 13, 2012 |website=ProFootballTalk.com}}</ref>
After a 4–4 start to de season den a 38–28 loss to de previously winless Buccaneers,<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – November 8th, 2009 |url=https://www.pro-football-reference.com/boxscores/200911080tam.htm |url-status=live |archive-url=https://web.archive.org/web/20171108032603/https://www.pro-football-reference.com/boxscores/200911080tam.htm |archive-date=November 8, 2017 |access-date=November 4, 2017 |website=[[Pro Football Reference]]}}</ref> de team begin to heat up. Rodgers lead de Packers to five straight wins, insyd wich he throw for a total of 1,324 yards, nine touchdowns, den two interceptions.<ref>{{Cite web |title=Aaron Rodgers – Games 9–13 in 2009 |url=http://pfref.com/tiny/3NZjQ |url-status=live |archive-url=https://web.archive.org/web/20211201192346/https://stathead.com/tools/tiny.fcgi?id=3NZjQ |archive-date=December 1, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers win two of dema last three games, finishing de second half of de season plus a 7–1 record den an overall 11–5 record; good enough to secure a wild card playoff berth wey dem clinch de fifth seed insyd de playoffs.<ref>{{Cite web |title=Aaron Rodgers 2009 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180101211154/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2009 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2009.htm |url-status=live |archive-url=https://web.archive.org/web/20171115032207/https://www.pro-football-reference.com/teams/gnb/2009.htm |archive-date=November 15, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers set a new franchise record by scoring 461 total points (third insyd de league), breaking de previous record wey de 1996 Super Bowl team (456) hold.<ref>{{Cite web |title=2009 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180504033136/https://www.pro-football-reference.com/years/2009/ |archive-date=May 4, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=1996 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/1996/ |url-status=live |archive-url=https://web.archive.org/web/20100211094812/http://www.pro-football-reference.com/years/1996/ |archive-date=February 11, 2010 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers cam be de first quarterback insyd NFL history ever to throw for 4,000 yards insyd both of ein first two years as a starter.<ref name="Rodgers Proscout.com">{{Cite web |last=Huber |first=Bill |date=May 9, 2012 |title=Wisconsin Makes 12–12–12 'Aaron Rodgers Day' |url=http://gnb.scout.com/2/1185173.html |url-status=dead |archive-url=https://web.archive.org/web/20130701070113/http://gnb.scout.com/2/1185173.html |archive-date=July 1, 2013 |access-date=May 13, 2012 |work=Fox Sports}}</ref> He fini de season fourth insyd passing yards (4,434), touchdown passes (30), passer rating (103.2), den yards per attempt (8.2) as well as eighth insyd completion percentage (64.7%), while he sanso cam second among quarterbacks insyd rushing yards (316).<ref>{{Cite web |title=Quarterbacks by rushing yards, 2009 season |url=http://pfref.com/tiny/dkEhS |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=dkEhS |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Ein passing yardage make am second all-time insyd Packers history, behind only [[Lynn Dickey]] ein all-time single-season record.<ref>{{Cite web |title=Individual Records – Passing |url=http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |url-status=live |archive-url=https://web.archive.org/web/20210126102232/http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |archive-date=January 26, 2021 |access-date=January 8, 2011 |publisher=Packers.com}}</ref> Na ein passer rating of 103.2 sanso be third-highest insyd team history at de time, behind only [[Bart Starr]] ein 105.0 rating insyd 1966 den 104.3 rating insyd 1968 (minimum 150 attempts).<ref>{{Cite web |title=Green Bay Packers, 1950–2009, highest passer rating. |url=http://pfref.com/tiny/a4QtT |url-status=live |archive-url=https://web.archive.org/web/20211201192343/https://stathead.com/tools/tiny.fcgi?id=a4QtT |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref>
[[File:Aaron_Rodgers_-_December_27,_2009_2.jpg|thumb|Rodgers insyd 2009, before a snap]]
Insyd de Wild Card Round, de Packers play de Arizona Cardinals, de same team wey na dem previously beat de week before, 33–7.<ref>{{Cite web |last=Baum |first=Bob |date=January 4, 2010 |title=Rodgers shreds Cardinals backups in 33–7 rout |url=https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208022718/https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Rodgers den Cardinals quarterback [[Kurt Warner]] put on a show wey dem later rank second on NFL Network ein ''Top 10 Quarterback Duels''.<ref>{{Cite web |title=Top Ten Quarterback Duels |url=http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |url-status=live |archive-url=https://web.archive.org/web/20180101135801/http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |archive-date=January 1, 2018 |access-date=January 1, 2018 |publisher=National Football League}}</ref> Na Rodgers ein first pass be intercepted by [[Dominique Rodgers-Cromartie]].<ref>{{Cite web |title=Wild Card – Green Bay Packers at Arizona Cardinals – January 10th, 2010 |url=https://www.pro-football-reference.com/boxscores/201001100crd.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003908/https://www.pro-football-reference.com/boxscores/201001100crd.htm |archive-date=August 21, 2017 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Rodgers settle down after dat miscue, however, wey he fini de game completing 28 of 42 passes for 423 yards, plus four touchdown passes all insyd a second-half comeback. Ein 423 passing yards be de most by any quarterback insyd ein first playoff game as well as ein four touchdown passes den five total touchdowns.<ref>{{Cite book |last=Cohen |first=Robert W. |url=https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |title=The 50 Greatest Players in Green Bay Packers History |date=September 1, 2018 |publisher=Rowman & Littlefield |isbn=9781493031894 |language=en |access-date=September 13, 2019 |archive-url=https://web.archive.org/web/20210203205326/https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |archive-date=February 3, 2021 |url-status=live}}</ref> Warner shred de Packers dema second-ranked defense, completing 29 of 33 passes for 379 yards, five touchdowns, no interceptions, den a passer rating of 154.1. Despite Rodgers ein offensive efforts, de Packers loose de game wen he fumble on a controversial play insyd overtime. Na dem return de ball by [[Karlos Dansby]] for de winning touchdown insyd de 51–45 Cardinals victory.<ref>{{Cite news|last=Crouse|first=Karen|date=January 10, 2010|title=Cardinals' Defense Ends Shootout With Packers in Overtime|work=The New York Times|url=https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20190824010502/https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|archive-date=August 24, 2019}}</ref> Na e be de highest scoring playoff game insyd NFL history.<ref>{{Cite web |date=January 10, 2015 |title=Remembering The Day of the Highest Scoring Playoff Game in NFL History |url=http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |url-status=live |archive-url=https://web.archive.org/web/20191208022939/http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=ThePostGame.com}}</ref>
Secof ein regular season performance, Rodgers earn a trip to ein first Pro Bowl as de NFC ein third quarterback, behind [[Drew Brees]] den Brett Favre. However, after Favre drop out secof injury wey Brees replace am secof ein participation insyd Super Bowl XLIV, Rodgers cam be de NFC ein starter.<ref>{{Cite web |title=2009 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2009/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180821031640/https://www.pro-football-reference.com/years/2009/probowl.htm |archive-date=August 21, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2010: Super Bowl XLV season ====
Insyd 2010, Rodgers lead de Packers to a 2–0 start, buh then dem loose three of dema next four games, wey dey include back-to-back overtime losses. De two overtime defeats bring Rodgers ein record insyd overtime games to 0–5.<ref>{{Cite web |title=2010 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2010.htm |url-status=live |archive-url=https://web.archive.org/web/20180313175307/https://www.pro-football-reference.com/teams/gnb/2010.htm |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
At midseason, Rodgers already throw nine interceptions dem compare to only throwing seven all of de previous season, wey na he be 16th insyd de league plus an 85.3 passer rating.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 1–8 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Over de remainder of de regular season, however, ein play improve as he throw 16 touchdowns to only two interceptions, he plete 71.4% of ein passes, wey he get a passer rating of 122.0.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 9–16 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref>
Insyd {{nowrap|Week 13}}, insyd a 34–16 victory over de San Francisco 49ers, Rodgers get 298 passing yards den three touchdowns to earn ein first career NFC Offensive Player of de Week honor.<ref>{{Cite web |title=AP Game Story: Packers Topple 49ers, 34–16 |url=https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |url-status=live |archive-url=https://web.archive.org/web/20191208221408/https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=packers.com}}</ref><ref>{{Cite web |title=2010 NFL Week 13 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_13.htm |url-status=live |archive-url=https://web.archive.org/web/20180319084545/https://www.pro-football-reference.com/years/2010/week_13.htm |archive-date=March 19, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd {{nowrap|Week 14}}, he sustain ein second concussion of de season. Na dem put backup [[Matt Flynn (American football)|Matt Flynn]] into de game as Rodgers ein replacement. De Packers loose de game 7–3 to de Lions.<ref>{{Cite web |last=Lage |first=Larry |date=December 12, 2010 |title=Rodgers suffers concussion in Packers' 7–3 loss to Lions |url=https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |url-status=live |archive-url=https://web.archive.org/web/20191208023253/https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The Journal Times |agency=Associated Press}}</ref> Against de Patriots, Rodgers miss de next week ein regular season start, ending ein streak of consecutive starts at 45, wich be tied for de second longest insyd team history.<ref name="Green Bay Packers QB Matt Flynn has fine 1st road start">{{Cite web |author=<!-- not stated --> |date=June 16, 2015 |title=Matt Flynn has plenty to learn at minicamp as new Patriots backup QB |url=https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |url-status=live |archive-url=https://web.archive.org/web/20211206085002/https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |archive-date=December 6, 2021 |access-date=March 3, 2026 |website=Fox Sports |publisher= |location=}}</ref>
After dema road loss to de Patriots, de Packers find demaselves at 8–6 wey dem for win dema final two regular season games to qualify for de playoffs. Rodgers turn around de team ein performance; dem win dema final two regular season games, one of dem against de New York Giants, wer Rodgers plete 25 of 37 passes for 404 yards, plus four touchdown passes, den plus a passer rating of 139.9.<ref>{{Cite news|date=December 26, 2010|title=NFL: Rodgers, Packers hammer Giants|url=https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|url-status=live|archive-url=https://web.archive.org/web/20191208023159/https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|archive-date=December 8, 2019|access-date=December 8, 2019|website=New Haven Register|agency=Associated Press}}</ref> Na e be ein first regular season 400-yard passing game. For ein effort against de Giants, he earn ein second NFC Offensive Player of de Week honor for de 2010 season.<ref>{{Cite web |title=2010 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002511/https://www.pro-football-reference.com/years/2010/week_16.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de next game, dem defeat de Bears by a score of 10–3 insyd de regular season finale.<ref name="Packers 10, Bears 3: Nothing Comes Easy">{{Cite web |last=Wilde |first=Jason |date=January 2, 2011 |title=Packers 10, Bears 3: Nothing Comes Easy |url=http://www.channel3000.com/sports/26347682/detail.html |url-status=dead |archive-url=https://web.archive.org/web/20110208054239/http://www.channel3000.com/sports/26347682/detail.html |archive-date=February 8, 2011 |access-date=January 24, 2011 |website=Channel3000.com}}</ref>
Na dem name Rodgers de FedEx Air NFL Player of de Year for ein passing performance insyd de 2010 season.<ref>{{Cite web |title=Aaron Rodgers voted FedEx Air NFL Player of the Year |url=http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |url-status=dead |archive-url=https://web.archive.org/web/20110225154931/http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |archive-date=February 25, 2011 |access-date=February 2, 2011 |publisher=Packers.com}}</ref>
[[File:Aaron_Rodgers_-_January_2,_2011_4.jpg|right|thumb|Rodgers dey greet de fans insyd Lambeau Field during de 2010 season ein finale against de Bears]]
Plus a 10–6 record, de Packers enter de playoffs as a Wild Card den de {{nowrap|No. 6}} seed. Insyd de Wild Card Round, dem defeat de {{nowrap|No. 3}} seeded Eagles 21–16.<ref>{{Cite web |date=January 9, 2011 |title=Rodgers, Packers Beat Eagles 21–16 |url=https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |url-status=live |archive-url=https://web.archive.org/web/20191208023430/https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=CBS – New York}}</ref> Insyd de Divisional Round, Rodgers plete 31 of 36 pass attempts for 366 yards den four touchdowns insyd a 48–21 blowout victory over de {{nowrap|No. 1}} seeded Atlanta Falcons.<ref>{{Cite news|last=Newberry|first=Paul|date=January 16, 2011|title=Rodgers stars in Green Bay's 48–21 rout of Falcons|publisher=AP via Yahoo Sports|url=https://sports.yahoo.com/nfl/recap?gid=20110115001|url-status=live|access-date=January 24, 2011|archive-url=https://web.archive.org/web/20110119180042/https://sports.yahoo.com/nfl/recap?gid=20110115001|archive-date=January 19, 2011}}</ref> Na e be de most points dem score insyd Packers postseason history.<ref>{{Cite web |title=Green Bay Packers Playoff History |url=https://www.pro-football-reference.com/teams/gnb/playoffs.htm |url-status=live |archive-url=https://web.archive.org/web/20161220082023/http://www.pro-football-reference.com/teams/gnb/playoffs.htm |archive-date=December 20, 2016 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> During de contest, Rodgers tie an NFL record for consecutive playoff games plus at least three touchdown passes (3 games). Rodgers sanso set an NFL record by becoming de only quarterback to pass for ten touchdowns dem combine thru three consecutive playoff games. On {{nowrap|January 23, 2011,}} Rodgers get a 55.4 passer rating as de Packers beat de {{nowrap|No. 2}} seed Chicago Bears 21–14 win insyd de NFC Championship.<ref>{{Cite news|date=January 23, 2011|title=NFC championship: Aaron Rodgers leads Packers past Bears 21–14|work=East Bay Times|agency=Associated Press|url=https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20200724211418/https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|archive-date=July 24, 2020}}</ref>
After winning de NFC Championship, de Packers earn a trip to Super Bowl XLV against de Pittsburgh Steelers. Insyd de game, Rodgers plete 24 of 39 pass attempts for 304 yards den three touchdowns insyd de 31–25 win, wey na dem name am Super Bowl MVP for ein performance.<ref name="Layden2011">{{Cite magazine|last=Layden|first=Tim|date=February 14, 2011|title=Green And Golden: Behind the poise and precision of quarterback Aaron Rodgers and the gutsy contributions of a host of role players, the Packers burnished their championship legacy with a memorable 31—25 victory over Pittsburgh in Super Bowl XLV|url=http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|url-status=dead|archive-url=https://web.archive.org/web/20131029203436/http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|archive-date=October 29, 2013|access-date=February 11, 2011|magazine=Sports Illustrated}}</ref><ref>{{Cite web |date=February 6, 2011 |title=Aaron Rodgers tosses 3 TD passes as Packers drop Steelers to win Super Bowl XLV |url=http://espn.go.com/nfl/recap?gameId=310206009 |url-status=dead |archive-url=https://web.archive.org/web/20110225151826/http://espn.go.com/nfl/recap?gameId=310206009 |archive-date=February 25, 2011 |access-date=February 7, 2011 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Dis ultimately go be ein only Super Bowl appearance plus de Packers.
From ein playoff performance, Rodgers cam be only se third player insyd NFL history to pass for over 1,000 yards insyd a single postseason wey he sanso cam be one of only four quarterbacks to record over 300 yards passing, plus at least three touchdown passes, den no interceptions insyd a Super Bowl.<ref>{{Cite web |title=Super Bowl, 300+ pass yds, 3+ TD, 0 Int |url=http://pfref.com/tiny/1posa |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=1posa |archive-date=December 1, 2021 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> He fini plus 1,094 passing yards, nine touchdown passes, two rushing touchdowns, den two interceptions, while completing 68.2% of ein passes for a passer rating of 109.8.<ref>{{Cite web |title=Aaron Rodgers Career Playoff Stats |url=https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |url-status=live |archive-url=https://web.archive.org/web/20220427191344/https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |archive-date=April 27, 2022 |access-date=April 27, 2022 |website=StatMuse |language=en}}</ref> From dis postseason, Rodgers sanso cam be de only player to pass for at least 900 yards den rush for at least two touchdowns insyd a single postseason.<ref>{{Cite web |title=Playoffs, 900+ pass yds, 2 rush TDs |url=https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |url-status=live |archive-url=https://web.archive.org/web/20200728195759/https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |archive-date=July 28, 2020 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Na dem rank am 11th by ein fellow players on de ''NFL Top 100'' Players of 2011.<ref>{{Cite web |title=2011 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20210308170627/https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |archive-date=March 8, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2011: First MVP ====
[[File:Aaron_Rodgers_drops_back_(cropped).jpg|thumb|Rodgers dey drop back for a pass insyd 2011.]]
Secof de 2011 NFL lockout, de Packers den Rodgers no schedule unofficial off-season workouts, despite chaw teams doing so.<ref name="allgbp">{{Cite web |last=Burke |first=Kris |date=July 2, 2011 |title=No Workouts? No Problem for the Packers |url=http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-url=https://web.archive.org/web/20161229101517/http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=All Green Bay Packers}}</ref> Rodgers den de Packers quickly quel any concerns over dema readiness by defeating de Saints, wey schedule off-season workouts, 42–34. He get 312 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 8, 2011 |title=Rodgers throws 3 TDs, Packers outlast Saints 42–34 |url=https://www.dailyherald.com/article/20110908/sports/709089632/ |url-status=live |archive-url=https://web.archive.org/web/20191208023757/https://www.dailyherald.com/article/20110908/sports/709089632/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Daily Herald |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 1 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_1.htm |url-status=live |archive-url=https://web.archive.org/web/20180830192658/https://www.pro-football-reference.com/years/2011/week_1.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> After de game, Rodgers say insyd de press conference, ''"I was going to ask myself, what would have happened if we had offseason workouts? I mean, could we have started any faster and scored more points tonight?"''<ref>{{Cite web |last=Darlington |first=Jeff |date=May 25, 2016 |title=Drew Brees' absence no big deal, but July 16 deadline looms |url=https://www.nfl.com/news/drew-brees-absence-no-big-deal-but-july-16-deadline-looms-09000d5d82956d8b |url-status=live |archive-url=https://web.archive.org/web/20161208145630/http://www.nfl.com/news/story/09000d5d82956d8b/article/drew-brees-absence-no-big-deal-but-july-16-deadline-looms |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref>
Insyd Week 4, a 49–23 victory over de Denver Broncos, Rodgers get 408 passing yards, four touchdowns, den one interception wey he run for two touchdowns to earn anoda NFC Offensive Player of de Week honor.<ref>{{Cite web |date=October 2, 2011 |title=Rodgers' big day helps Packers beat Broncos 49–23 |url=https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |url-status=live |archive-url=https://web.archive.org/web/20191208025355/https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Duluth News Tribune}}</ref><ref>{{Cite web |title=2011 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180401100045/https://www.pro-football-reference.com/years/2011/week_4.htm |archive-date=April 1, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, a 24–3 victory over de St. Louis Rams, Rodgers convert on a career-high 93-yard touchdown pass to [[Jordy Nelson]].<ref>{{Cite web |last=Jenkins |first=Chris |date=October 16, 2011 |title=Packers stay perfect at 6–0, beat Rams 24–3 |url=http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |url-status=live |archive-url=https://web.archive.org/web/20181211010230/http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |archive-date=December 11, 2018 |access-date=December 10, 2018 |website=The Salt Lake Tribune}}</ref> Insyd Week 9, a 45–38 victory over de Chargers, he get 247 passing yards den four touchdowns to earn ein third NFC Offensive Player of de Week honor for de 2011 season.<ref>{{Cite web |date=November 6, 2011 |title=Packers survive Chargers' late push as Aaron Rodgers delivers again |url=https://www.espn.com/nfl/game?gameId=311106024 |url-status=live |archive-url=https://web.archive.org/web/20191210232803/https://www.espn.com/nfl/game?gameId=311106024 |archive-date=December 10, 2019 |access-date=December 8, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 9 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_9.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231451/https://www.pro-football-reference.com/years/2011/week_9.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers get off to a 13–0 start insyd 2011, tying de NFC record for most consecutive wins to start a season, buh na dem be upset by de Kansas City Chiefs 19–14 insyd week 15, ending dema winning streak at 19 games, de second-longest winning streak insyd NFL history.<ref>{{Cite web |title=Green Bay Packers at Kansas City Chiefs – December 18th, 2011 |url=https://www.pro-football-reference.com/boxscores/201112180kan.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211142/https://www.pro-football-reference.com/boxscores/201112180kan.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2011.htm |url-status=live |archive-url=https://web.archive.org/web/20171115033715/https://www.pro-football-reference.com/teams/gnb/2011.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de season plus 4,643 passing yards, 45 touchdown passes, den six interceptions, good for a passer rating of 122.5, wich as of 2024 be de highest single-season passer rating insyd NFL history.<ref>{{Cite web |title=Aaron Rodgers 2011 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |url-status=live |archive-url=https://web.archive.org/web/20180101135748/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Ein passing yards, touchdown passes, den passer rating set single-season franchise records.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to passer rating, Rodgers lead de league insyd touchdown to interception ratio (7.5, fourth-best all-time), touchdowns passing % (9.0%, second highest all-time), den yards per attempt (9.2, fourth-highest all-time since becoming an official stat insyd 1970), while finishing second insyd both touchdown passes (45, sixth-highest all-time) den completion percentage (68.3%), as well as fifth insyd passing yards. He earn NFC Offensive Player of de Month awards for September, October, den November, den FedEx Air Player of de Week six times (Weeks 4, 5, 6, 7, 9, den 13). Insyd week four, against de Denver Broncos, Rodgers cam be de only quarterback insyd NFL history to record over 400 passing yards plus four touchdown passes, while sanso dey rush for two touchdowns insyd de same game.<ref>{{Cite web |title=List of players with at least 400 passing yards, four passing touchdowns, and two rushing touchdowns in a single game. NFL history |url=http://pfref.com/tiny/Io0Od |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=Io0Od |archive-date=December 1, 2021 |access-date=December 6, 2016 |website=[[Pro Football Reference]]}}</ref> Na he de winner of de 2011 Galloping gobbler as MVP of de Thanksgiving game between de Packers den de Lions, a 27–15 Green Bay victory, wey he tie an NFL record for consecutive games plus at least two touchdown passes (13).
De Packers cam be de fifth team insyd NFL history to finish de regular season plus a 15–1 record.<ref>{{Cite web |last=Kruse |first=Zach |date=January 2, 2012 |title=Green Bay Packers Are 5th 15–1 Team in NFL History: How Did the First 4 Finish? |url=https://bleacherreport.com/articles/1007036-green-bay-packers-are-5th-15-1-team-in-nfl-history-how-did-the-first-4-finish |access-date=May 30, 2024 |website=Bleacher Report |language=en}}</ref> Rodgers play insyd 15 of de 16 games, plus de only exception be Week 17 against de Lions, a game insyd wich Rodgers be rested after de club clinched home-field advantage for de playoffs de previous week. Insyd de game, Rodgers assist backup quarterback Matt Flynn insyd ein stellar 480-yard, six-touchdown performance by helping call some plays.<ref>{{Cite web |last=Samano |first=Simon |date=January 1, 2012 |title=Rodgers preps Flynn, calls plays during backup QB's big day |url=https://www.nfl.com/news/rodgers-preps-flynn-calls-plays-during-backup-qb-s-big-day-09000d5d825a02db |url-status=live |archive-url=https://web.archive.org/web/20190829082359/http://www.nfl.com/news/story/09000d5d825a02db/article/rodgers-preps-flynn-calls-plays-during-backup-qbs-big-day |archive-date=August 29, 2019 |access-date=September 13, 2019 |publisher=National Football League}}</ref> De Packers dema offense set franchise record for points scored insyd a season plus 560, wich as of 2016 be de third-most ever behind only de 2007 Patriots den 2013 Broncos.<ref>{{Cite web |title=All Time Most Points Scored by an NFL Team in a Season |url=https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-url=https://web.archive.org/web/20130802114230/https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-date=August 2, 2013 |access-date=December 6, 2016 |website=Sporting Charts}}</ref>
Rodgers set numerous NFL records insyd 2011. He record a passer rating of over 100.0 insyd thirteen games during de season, wey dey include twelve games in a row (both records), den a passer rating of 110.0 anaa higher insyd twelve games, wey dey include eleven in a row (sanso be records). Rodgers sanso win de league ein MVP award, receiving 48 of de 50 votes (de oda two dey go to [[Drew Brees]]). He sanso fini second, behind Brees, for de AP Offensive Player of de Year award.<ref>{{Cite web |date=February 4, 2012 |title=Saints' Brees wins AP Offensive Player of the Year award |url=https://www.nfl.com/news/saints-brees-wins-ap-offensive-player-of-the-year-award-09000d5d8269e4fe |url-status=live |archive-url=https://web.archive.org/web/20161208145625/http://www.nfl.com/news/story/09000d5d8269e4fe/article/saints-brees-wins-ap-offensive-player-of-the-year-award |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League |agency=Associated Press}}</ref> Rodgers ein 2011 season later be ranked as de third greatest passing season of all time by ESPN insyd 2013, wey na he be regarded as de most efficient.<ref name="Efficient QBS">{{Cite web |last=Seifert |first=Kevin |date=October 3, 2013 |title=Top 10 greatest quarterback seasons |url=https://www.espn.com/blog/nflnation/post/_/id/90974/ |url-status=live |archive-url=https://web.archive.org/web/20141103072453/http://espn.go.com/blog/nflnation/post/_/id/90974/ |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref>
Na de Packers be upset by de eventual Super Bowl champion New York Giants insyd de Divisional Round by de score of 37–20. De Packers dema receiving corps drop six passes insyd de loss wey Rodgers fini de game plus 264 passing yards, two touchdown passes, den an interception on ein last pass attempt.<ref>{{Cite news|last=Wang|first=Gene|date=January 15, 2012|title=NFL playoffs 2012: New York Giants stun Green Bay Packers, 37–20|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|url-status=live|access-date=December 8, 2019|archive-url=https://web.archive.org/web/20180906090329/https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|archive-date=September 6, 2018}}</ref> De 2011 Packers cam be de only team insyd NFL history to go 15–1 wey dem no win a playoff game, as well as dem be de fourth consecutive team to win at least 15 games wey dem no win de Super Bowl.<ref>{{Cite web |last=Emery |first=Mark |date=January 26, 2016 |title=As Carolina Panthers prepare for Super Bowl 50, a look at the fates of six previous teams that won at least 15 in regular season |url=http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |url-status=live |archive-url=https://web.archive.org/web/20161214152104/http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |archive-date=December 14, 2016 |access-date=December 12, 2016 |website=Daily News |location=New York}}</ref> Na dem name Rodgers to de Pro Bowl for ein 2011 season to go along plus a First-team All-Pro honor.<ref>{{Cite web |title=2011 NFL All-Pros |url=https://www.pro-football-reference.com/years/2011/allpro.htm |url-status=live |archive-url=https://web.archive.org/web/20180830185703/https://www.pro-football-reference.com/years/2011/allpro.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2011/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180830174119/https://www.pro-football-reference.com/years/2011/probowl.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> He be voted by ein fellow players as de best player insyd de league on de ''NFL Top 100'' Players of 2012.<ref>{{Cite web |title=2012 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190322201849/https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |archive-date=March 22, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2012 ====
Rodgers den de Packers start off de 2012 season plus a 30–22 loss to de 49ers.<ref>{{Cite web |last=Jenkins |first=Chris |date=September 10, 2012 |title=49ers stop Rodgers' rally, beat Packers 30–22 |url=https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025344/https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Plus de loss, Rodgers loose ein bet plus de music group Boyz II Men, wey he for wear an Alex Smith jersey during de next week of practice.<ref name="boyz">{{Cite web |last=Hanzus |first=Dan |date=September 8, 2012 |title=Aaron Rodgers' head-scratching bet with Boyz II Men |url=https://www.nfl.com/news/aaron-rodgers-head-scratching-bet-with-boyz-ii-men-0ap1000000059772 |url-status=live |archive-url=https://web.archive.org/web/20161220224204/http://www.nfl.com/news/story/0ap1000000059772/article/aaron-rodgers-headscratching-bet-with-boyz-ii-men |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Had de Packers win de game, Boyz II Men go sing de national anthem during dema next home game at Lambeau.<ref name="boyz" />
Insyd Week 4, a 28–27 victory over de Saints, Rodgers get 319 passing yards, four touchdowns, den one interception to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 28, 2012 |title=Rodgers throws late TD, Packers beat Saints 28–27 |url=https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |url-status=live |archive-url=https://web.archive.org/web/20191208025349/https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Twin Cities Pioneer Press}}</ref><ref>{{Cite web |title=2012 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020203/https://www.pro-football-reference.com/years/2012/week_4.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de undefeated Houston Texans, he tie de franchise record by throwing six touchdown passes, insyd a 42–24 victory, to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Houston Texans – October 14th, 2012 |url=https://www.pro-football-reference.com/boxscores/201210140htx.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081312/https://www.pro-football-reference.com/boxscores/201210140htx.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2012 NFL Week 6 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_6.htm |url-status=live |archive-url=https://web.archive.org/web/20210308120125/https://www.pro-football-reference.com/years/2012/week_6.htm |archive-date=March 8, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> De Texans allow only six total touchdown passes during de season up to dat point.<ref>{{Cite web |title=2012 Houston Texans, opponent TD log |url=https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |url-status=live |archive-url=https://web.archive.org/web/20180724093239/https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |archive-date=July 24, 2018 |access-date=December 31, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dis spark a five-game winning streak wich Rodgers plete 65.7% of ein passes for 1,320 yards, 17 touchdowns, two interceptions, den a passer rating of 119.1.<ref>{{Cite web |title=Rodgers, 2012, games 6–10 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227055845/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> During dat stretch, na dem name Rodgers NFC Offensive Player of de Month for October.<ref>{{Cite web |date=March 27, 2015 |title=Packers QB Rodgers leads group of NFC's best for October |url=https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |url-status=live |archive-url=https://web.archive.org/web/20200724202413/https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |archive-date=July 24, 2020 |access-date=September 13, 2019 |publisher=Fox News}}</ref> Insyd Week 15, Rodgers throw for 291 yards den three touchdowns to lead de Packers past de Bears, 21–13, making dem NFC North champions for de second consecutive year.<ref>{{Cite web |date=December 16, 2012 |title=Packers bounce Bears to clinch NFC North |url=https://www.wtsp.com/article/sports/nfl/packers-bounce-bears-to-clinch-nfc-north/67-376020825 |access-date=December 8, 2019 |publisher=WTSP}}</ref> Insyd de season finale, despite Rodgers go 28 of 40 for 365 yards, four touchdowns, no interceptions den a passer rating of 131.8, de Packers loose 37–34 against de Vikings.<ref>{{Cite web |date=December 30, 2012 |title=Vikings beat Packers 37–34, earn playoff berth |url=https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |url-status=live |archive-url=https://web.archive.org/web/20191208025350/https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=HeraldNet.com |agency=Associated Press}}</ref> Dis end de Packers dema twelve-game winning streak against NFC North opponents.
De Packers fini plus an 11–5 record, first insyd de NFC North, wey dem clinch de #3-seed insyd de NFC playoffs.<ref>{{Cite web |title=2012 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2012 |url-status=live |archive-url=https://web.archive.org/web/20180127072019/https://www.pro-football-reference.com/years/2012/ |archive-date=January 27, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers lead de league for de second straight year insyd passer rating (108.0) touchdowns passing % (7.1%), den touchdown-to-interception ratio (4.875), while finishing second insyd touchdown passes (39), third insyd completion percentage (67.2%), fifth insyd yards per attempt (7.78), den eighth insyd passing yards (4,295).<ref>{{Cite web |title=Aaron Rodgers 2012 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |url-status=live |archive-url=https://web.archive.org/web/20180101135930/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd de playoffs, de Packers defeat de Minnesota Vikings 24–10 insyd de Wild Card Round. Rodgers plete 23 of 33 passes to ten different players for 274 yards den a touchdown.<ref>{{Cite web |date=January 5, 2013 |title=Ponder-less Vikings fall to Packers in wild-card game |url=https://www.nfl.com/news/ponder-less-vikings-fall-to-packers-in-wild-card-game-0ap1000000122612 |url-status=live |archive-url=https://web.archive.org/web/20191208025349/http://www.nfl.com/news/story/0ap1000000122612/printable/ponderless-vikings-fall-to-packers-in-wildcard-game |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=NFL.com}}</ref> De 49ers beat dema 45–31 insyd de Divisional Round.<ref>{{Cite web |last=Farmer |first=Sam |date=January 13, 2013 |title=NFC playoffs: 49ers topple Packers 45–31 |url=https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025348/https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Chicago Tribune}}</ref> Rodgers plete 26 of 39 passes for 257 yards, two touchdowns, den an interception, while sanso dey rush for 28 yards, insyd de losing effort. He earn ein third career Pro Bowl nomination for ein performance insyd de 2012 season.<ref>{{Cite web |title=2012 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2012/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180316023449/https://www.pro-football-reference.com/years/2012/probowl.htm |archive-date=March 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2013.<ref>{{Cite web |title=2013 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200406154219/https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |archive-date=April 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2013 ====
On April 26, 2013, de Packers den Rodgers agree to a 5-year, $110 million contract extension wey dey make am de highest paid player insyd NFL history.<ref>{{Cite web |last1=Schefter |first1=Adam |last2=Mortensen |first2=Chris |date=April 26, 2013 |title=Source: Rodgers agrees to $110M extension |url=https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |url-status=live |archive-url=https://web.archive.org/web/20210414204446/https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |archive-date=April 14, 2021 |access-date=April 14, 2021 |website=[[ESPN.com]] |agency=Associated Press}}</ref> De Packers begin dema 2013 season against de reigning NFC champions, de 49ers, de team wey sanso end dema playoff run de previous season. Rodgers go 21 for 37 insyd completions, 333 yards, three touchdowns den an interception insyd de 34–28 loss.<ref>{{Cite web |title=Green Bay Packers at San Francisco 49ers – September 8th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309080sfo.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080800/https://www.pro-football-reference.com/boxscores/201309080sfo.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers get a career-high 480 passing yards to tie de franchise record insyd de 38–20 home-opener win against de Washington Redskins. He earn NFC Offensive Player of de Week for ein effort against de Redskins.<ref>{{Cite web |title=Washington Redskins at Green Bay Packers – September 15th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309150gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081525/https://www.pro-football-reference.com/boxscores/201309150gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2013 NFL Week 2 Leaders & Scores |url=https://www.pro-football-reference.com/years/2013/week_2.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020211/https://www.pro-football-reference.com/years/2013/week_2.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 335 passing yards insyd de first half set a club record.<ref name="w930">{{cite web |last=Huber |first=Bill |date=September 15, 2013 |title=Monster Half Propels Rodgers to Record Day |url=https://247sports.com/nfl/green-bay-packers/Article/monster-half-propels-rodgers-to-record-day-105030089/ |access-date=October 23, 2024 |website=247Sports}}</ref> He sanso cam be de first quarterback since [[Y. A. Tittle]] insyd 1962 to throw for at least 480 yards, four touchdowns den no interceptions insyd a game.<ref>{{Cite web |title=480+ passing yards, 4+ passing touchdowns, no interceptions, NFL history |url=http://pfref.com/tiny/rQ3Cc |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=rQ3Cc |archive-date=December 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers see ein NFL record of 41 consecutive games widout throwing multiple interceptions come to an end insyd a loss to de Cincinnati Bengals by de score of 34–30.<ref>{{Cite web |last=White |first=Scott |date=September 22, 2013 |title=Aaron Rodgers doesn't play usual mistake-free football |url=https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |url-status=live |archive-url=https://web.archive.org/web/20201025173245/https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |archive-date=October 25, 2020 |access-date=September 13, 2019 |website=CBS Sports}}</ref><ref>{{Cite web |title=Green Bay Packers at Cincinnati Bengals – September 22nd, 2013 |url=https://www.pro-football-reference.com/boxscores/201309220cin.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081320/https://www.pro-football-reference.com/boxscores/201309220cin.htm |archive-date=August 29, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
After de loss to de Bengals, de Packers start rolling, winning dema next four games. Against de Ravens, de Packers loose two receivers: [[Randall Cobb (American football)|Randall Cobb]] den [[James Jones (wide receiver)|James Jones]]. Na Cobb be sidelined plus a broken leg den Jones plus a sprained PCL.<ref>{{Cite web |title=Green Bay Packers' Randall Cobb, James Jones injured |url=https://www.nfl.com/news/green-bay-packers-randall-cobb-james-jones-injured-0ap2000000261308 |url-status=live |archive-url=https://web.archive.org/web/20170722195052/http://www.nfl.com/news/story/0ap2000000261308/article/green-bay-packers-randall-cobb-james-jones-injured |archive-date=July 22, 2017 |access-date=September 13, 2019 |publisher=National Football League}}</ref> Against de Cleveland Browns, na dem cart tight end [[Jermichael Finley]] off de field plus a bruised spinal cord, leaving Rodgers widout three of ein top four offensive weapons.<ref>{{Cite web |last=Lee |first=Caroline |date=October 21, 2013 |title=Jermichael Finley, Packers tight end, in ICU with neck injury |url=https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |url-status=live |archive-url=https://web.archive.org/web/20190203150423/https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |archive-date=February 3, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref> De next week against de Vikings, Rodgers plete 24 of 29 passes insyd a 44–31 victory.<ref>{{Cite web |title=Green Bay Packers at Minnesota Vikings – October 27th, 2013 |url=https://www.pro-football-reference.com/boxscores/201310270min.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080251/https://www.pro-football-reference.com/boxscores/201310270min.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
At home against de Bears insyd Week 9, na Rodgers be sacked by [[Shea McClellin]]. He fracture ein left clavicle insyd de process, den de speculation for ein return dem range from a few weeks to an indefinite timetable wey cam be a weekly spectacle of whether anaa wen he fi be cleared to san play.<ref>{{Cite web |date=November 5, 2013 |title=Aaron Rodgers has fractured collarbone, could miss a month |url=http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |url-status=live |archive-url=https://web.archive.org/web/20131111030547/http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |archive-date=November 11, 2013 |access-date=November 6, 2013 |website=[[The Denver Post]] |agency=Associated Press}}</ref><ref name="Aaron Rodgers wasn">{{Cite web |last=Mortensen |first=Chris |author-link=Chris Mortensen |date=December 22, 2013 |title=Aaron Rodgers wasn't close to return |url=https://www.espn.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |url-status=live |archive-url=https://web.archive.org/web/20141103072203/http://espn.go.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref><ref name="Rodgers not ready to play">{{Cite web |last=Dougherty |first=Pete |date=December 19, 2013 |title=Packers' Aaron Rodgers 'looks ready to play' but probably won't |url=https://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |url-status=live |archive-url=https://web.archive.org/web/20150805151227/http://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |archive-date=August 5, 2015 |access-date=November 3, 2014 |website=USA Today}}</ref> Before Rodgers break ein collarbone, de Packers win four straight games to climb to de top of de NFC North division plus a 5–2 record. Plus Rodgers injured den unable to play, de Packers go winless over de next five weeks to fall to 5–6–1 on de season.<ref>{{Cite web |title=Green Bay Packers 2013 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2013/gamelog/ |access-date=October 23, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
After rallying insyd December behind re-acquired backup quarterback Matt Flynn,<ref name="Backup Flynn">{{Cite web |last=Dunne |first=Tyler |date=December 16, 2013 |title=Stoic Matt Flynn delivers Packers win |url=http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |url-status=live |archive-url=https://web.archive.org/web/20141103071905/http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=web |publisher=Milwaukee-Wisconsin Journal Sentinel}}</ref> de Packers fight dema way back to a 7–7–1 record going into de final week of de season. On December 26, Packers head coach Mike McCarthy announce Rodgers go return den start insyd de season-finale showdown against de Chicago Bears at Soldier Field for de NFC North championship.<ref>{{Cite news|last=Breech|first=John|date=December 26, 2013|title=Packers make it official: QB Aaron Rodgers will start vs. Bears|work=CBS Sports|url=http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|url-status=live|access-date=December 27, 2013|archive-url=https://web.archive.org/web/20131227003701/http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|archive-date=December 27, 2013}}</ref> Returning from de injury, Rodgers throw for 318 yards, two touchdowns, den two interceptions insyd de regular season finale against de Bears.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – December 29th, 2013 |url=https://www.pro-football-reference.com/boxscores/201312290chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081317/https://www.pro-football-reference.com/boxscores/201312290chi.htm |archive-date=August 29, 2017 |access-date=May 5, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Trailing 27–28 plus under a minute to go insyd de game den facing de third 4th down of de drive, a 4th & 8 from de 48-yard line, Rodgers connect plus Cobb, wey sanso dey return for ein first game since breaking ein leg insyd Week 6, for a 48-yard game-winning touchdown to clinch de NFC North den earn de right to host a home playoff game against de San Francisco 49ers as de fourth seed.<ref>{{Cite magazine|last=Bedard|first=Greg A.|date=December 30, 2013|title=Answered Prayers|url=https://www.si.com/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|url-status=live|archive-url=https://web.archive.org/web/20211201192432/https://www.si.com/nfl/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|archive-date=December 1, 2021|access-date=September 13, 2019|magazine=Sports Illustrated}}</ref> Rodgers win de 2013 GMC Never Say Never Award for de come-from-behind, division-winning touchdown pass. Rodgers fini fifth insyd de league insyd passer rating (104.9), completion percentage (66.6%), den yards per game (282) while he sanso fini second insyd yards per attempt (8.75).<ref>{{Cite web |title=2013 NFL Passing |url=https://www.pro-football-reference.com/years/2013/passing.htm |access-date=July 17, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
Rodgers san lead de Packers to de playoffs, dis time plus an 8–7–1 record wey na dem be up against de team wey eliminate dem last year insyd de Divisional Round of de playoffs, de 49ers.<ref>{{Cite web |title=2013 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2013.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030637/https://www.pro-football-reference.com/teams/gnb/2013.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de 49ers for de fourth consecutive time, 23–20 on a last second field goal at Lambeau Field, insyd de Wild Card Round. Rodgers record only 177 yards passing, ein lowest insyd a playoff game, den one touchdown pass.<ref>{{Cite web |title=Wild Card – San Francisco 49ers at Green Bay Packers – January 5th, 2014 |url=https://www.pro-football-reference.com/boxscores/201401050gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170821043340/https://www.pro-football-reference.com/boxscores/201401050gnb.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> He sanso be ranked No. 11 by ein fellow players on de ''NFL Top 100'' Players of 2014.<ref>{{Cite web |title=2014 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112164602/https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2014: Second MVP ====
[[File:Aaron_rodgers_2014.jpg|right|thumb|Rodgers insyd 2014]]
De Packers dema 2014 regular season debut cam against de defending Super Bowl champion Seahawks—a game insyd wich dem go go on to loose 36–16.<ref>{{Cite web |title=Green Bay Packers at Seattle Seahawks – September 4th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409040sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182750/https://www.pro-football-reference.com/boxscores/201409040sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 2, de team begin de game plus a 21–3 deficit against de Jets, bug dem cam back wey dem win 31–24.<ref>{{Cite web |title=New York Jets at Green Bay Packers – September 14th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409140gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829120234/https://www.pro-football-reference.com/boxscores/201409140gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De 18-point comeback mark de biggest comeback insyd Rodgers ein career.<ref>{{Cite web |last=Imig |first=Paul |date=September 14, 2014 |title=Rodgers overcomes 'nerves' to complete biggest comeback of career |url=http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |url-status=live |archive-url=https://web.archive.org/web/20140918022944/http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |archive-date=September 18, 2014 |access-date=September 13, 2019 |work=Fox Sports}}</ref> Insyd de third week of de season, de Packers offense be shut down by de Lions dema defense, 19–7.<ref>{{Cite web |title=Green Bay Packers at Detroit Lions – September 21st, 2014 |url=https://www.pro-football-reference.com/boxscores/201409210det.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211151/https://www.pro-football-reference.com/boxscores/201409210det.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Na de Packers dema 7 points be de fewest points dem allow insyd a game Rodgers fini; na de 223 yards of total Packer offense be de lowest since Rodgers take over at quarterback den ein 162 passing yards sanso be a career low. For de third consecutive season, na de Packers be off to a 1–2 start. Insyd those three games, Rodgers throw five touchdowns den one interception combined, plus a passer rating of 95.1. Amid widespread concern, Rodgers telll de fans den de media, "''R-E-L-A-X. Relax. We're going to be OK."''<ref>{{Cite web |last=Wilde |first=Jason |date=September 23, 2014 |title=R-E-L-A-X (ESPN Wisconsin) |url=http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |url-status=dead |archive-url=https://web.archive.org/web/20151101051643/http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |archive-date=2015-11-01 |access-date=December 7, 2014}}</ref>
After dema loss to de Lions, de Packers go on a four-game win streak, during wich, Rodgers throw 13 touchdowns plus no interceptions.<ref>{{Cite web |title=Aaron Rodgers 2014 Game Log (Weeks 4–7) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231025726/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |archive-date=December 31, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> Insyd Week 4, a 38–17 victory over de Bears, he get 302 passing yards den four touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – September 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409280chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081419/https://www.pro-football-reference.com/boxscores/201409280chi.htm |archive-date=August 29, 2017 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180321130559/https://www.pro-football-reference.com/years/2014/week_4.htm |archive-date=March 21, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de Miami Dolphins, Rodgers lead de Packers to a game-winning drive plus less dan two minutes remaining. He plete a 4th & 10 pass to wide receiver Jordy Nelson wey he mimick [[Dan Marino]] ein famous fake spike play by completing a pass to wide receiver [[Davante Adams]] to get to within four yards of de endzone later insyd de drive.<ref>{{Cite web |last=Sherman |first=Rodger |date=October 12, 2014 |title=Packers use fake spike to beat Dolphins |url=https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |archive-date=March 30, 2019 |access-date=March 7, 2019 |website=SBNation.com}}</ref> Rodgers then plete a touchdown pass to tight end [[Andrew Quarless]] to win de game 27–24.<ref name="gmc">{{Cite web |title=2014 GMC Never Say Never Moment |url=http://www.nfl.com/voting/never-say-never/2014/REG/6 |url-status=live |archive-url=https://web.archive.org/web/20161220230141/http://www.nfl.com/voting/never-say-never/2014/REG/6 |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Dis play go later win Rodgers de GMC Never Say Never Moment of de Year Award.<ref name="gmc" /> Insyd Week 7, a 38–17 victory over de Carolina Panthers, na he be 19-of-22 for 255 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Carolina Panthers at Green Bay Packers – October 19th, 2014 |url=https://www.pro-football-reference.com/boxscores/201410190gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002513/https://www.pro-football-reference.com/boxscores/201410190gnb.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 7 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_7.htm |url-status=live |archive-url=https://web.archive.org/web/20210928154945/https://www.pro-football-reference.com/years/2014/week_7.htm |archive-date=September 28, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd a Week 8 loss against de Saints, Rodgers fini 28 of 39 for 418 yards, plus one touchdown pass den two interceptions, ending ein 212 consecutive attempts widout an interception streak<ref name="packsaintsoct">{{Cite web |last=Imig |first=Paul |date=October 27, 2014 |title=5 things we learned: Packers at Saints |url=http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |url-status=live |archive-url=https://web.archive.org/web/20170105180746/http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |archive-date=January 5, 2017 |access-date=January 5, 2017 |work=Fox Sports}}</ref>—de second longest insyd team history. Insyd de game, Rodgers injure ein hamstring wich appear to get an effect on ein play for de remainder of de game.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 27, 2014 |title=Aaron Rodgers of Green Bay Packers injures hamstring in loss |url=https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |url-status=live |archive-url=https://web.archive.org/web/20200818134022/https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |archive-date=August 18, 2020 |access-date=September 13, 2019 |website=[[ESPN.com]]}}</ref>
[[File:Rodgers_handing_off_2014.jpg|left|thumb|Rodgers handing de ball off to running back [[Eddie Lacy]] insyd 2014]]
Insyd Week 10, against de Chicago Bears, Rodgers cam be de second player insyd NFL history den de first since [[Daryle Lamonica]] insyd 1969 to throw six touchdown passes insyd de first half.<ref>{{Cite news|last=Armas|first=Genaro C.|date=November 10, 2014|title=Aaron Rodgers Throws 6 TD Passes in 1st Half As Packers Crush Bears 55–14|work=[[HuffPost]]|url=http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|url-status=live|access-date=November 27, 2014|archive-url=https://web.archive.org/web/20141112143148/http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|archive-date=November 12, 2014}}</ref> Rodgers fini 18 of 27 for 315 yards den six touchdowns despite only playing one drive insyd de second half to earn NFC Offensive Player of de Week.<ref name="nbcchi" /><ref>{{Cite web |title=2014 NFL Week 10 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_10.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020149/https://www.pro-football-reference.com/years/2014/week_10.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers set multiple records during de game: most touchdown passes of 70 anaa more yards plus 16—breaking de record dem wey Brett Favre den [[Peyton Manning]] hold, most consecutive touchdown passes widout an interception at home—he sanso break de record wey Favre den Manning, wey he cam be de first quarterback to ever have 10 touchdown passes against de same team insyd a season.<ref name="nbcchi">{{Cite web |last=Neveau |first=James |date=November 12, 2014 |title=Aaron Rodgers Suffered Back Injury vs. Bears |url=http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |url-status=live |archive-url=https://web.archive.org/web/20170105180011/http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=NBC Chicago}}</ref> De 55–14 victory tie de Packers dema 55–7 win vs. De Titans insyd 2009 for de most points wey a Rodgers-led offense score.
Insyd a Week 11 game against de 7–2 Eagles, Rodgers set a record for most consecutive attempts at home widout an interception, breaking [[Tom Brady]] ein record of 288 consecutive attempts.<ref>{{Cite web |last=Massey |first=Evan |date=November 16, 2014 |title=Packers' Aaron Rodgers Breaks Tom Brady's Record |url=https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |url-status=live |archive-url=https://web.archive.org/web/20200724201538/https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |archive-date=July 24, 2020 |access-date=September 12, 2019 |website=FanSided}}</ref> Insyd de 53–20 victory, he fini dey go 22 of 36, plus 341 passing yards, three touchdown passes den no interceptions.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – November 16th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829074637/https://www.pro-football-reference.com/boxscores/201411160gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De 8–3 Packers meet de 9–2 Patriots insyd Week 13, at [[Lambeau Field]] insyd na wat be Brady den Rodgers' first time playing against each oda as starters.<ref>{{Cite web |last=Imig |first=Paul |date=November 30, 2014 |title=Rodgers outduels Brady for win in first-ever matchup of elite QBs |url=https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |url-status=live |archive-url=https://web.archive.org/web/20190102094626/https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |archive-date=January 2, 2019 |access-date=January 1, 2019 |work=Fox Sports}}</ref> Rodgers fini dey go 24 of 38, plus 368 passing yards den two passing touchdowns insyd de 26–21 Packers victory.<ref>{{Cite web |title=New England Patriots at Green Bay Packers – November 30th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411300gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171228171554/https://www.pro-football-reference.com/boxscores/201411300gnb.htm |archive-date=December 28, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> For ein efforts insyd de month of November, he earn NFC Offensive Player of de Month.<ref>{{Cite web |date=December 4, 2014 |title=Aaron Rodgers among NFC's best for November |url=https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |url-status=live |archive-url=https://web.archive.org/web/20190812115629/https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |archive-date=August 12, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref>
Rodgers suffer a calf injury insyd Week 16, against de Buccaneers, secof severe dehydration he endure from flu-like symptoms he suffer during de week.<ref name="flu">{{Cite web |last=Demovsky |first=Rob |date=December 22, 2014 |title=Aaron Rodgers played with pulled calf |url=https://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |url-status=live |archive-url=https://web.archive.org/web/20170105180655/http://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=[[ESPN.com]]}}</ref>
Insyd de Week 17 game against de Lions, Rodgers re-injure ein left calf while extending a play den throwing a touchdown pass to [[Randall Cobb (American football)|Randall Cobb]], then na e help off de field, wey dem cart am off to de locker room. After missing a series, Rodgers re-enter de game plus de score dem tie 14–14. Despite he be less mobile plus de injury, Rodgers plete 13 of 15 passes for 129 yards den two scores against de league ein second-ranked defense. De Packers win 30–20, winning dema fourth straight NFC North title. Rodgers fini 17 of 22 for 226 yards, two touchdown passes, no interceptions, a 139.6 passer rating, den a rushing touchdown to earn ein fourth NFC Offensive Player of de Week honor for de 2014 season.<ref>{{Cite web |title=Detroit Lions at Green Bay Packers – December 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201412280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20190330032513/https://www.pro-football-reference.com/boxscores/201412280gnb.htm |archive-date=March 30, 2019 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 17 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_17.htm |url-status=live |archive-url=https://web.archive.org/web/20180226175215/https://www.pro-football-reference.com/years/2014/week_17.htm |archive-date=February 26, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers secure de second seed insyd de NFC, rewarding dem plus a playoff bye den a week off wich help Rodgers rest den rehabilitate ein injured left calf.<ref>{{Cite web |title=2014 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2014 |url-status=live |archive-url=https://web.archive.org/web/20211011053552/https://www.pro-football-reference.com/years/2014/ |archive-date=October 11, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round, na de Packers be scheduled to play de 13–4 Cowboys, wich mark de first time insyd NFL playoff history wen a team wich go undefeated at home (Packers) play against a team wich go undefeated away (Cowboys).<ref>{{Cite web |last=Imig |first=Paul |date=January 9, 2015 |title=Something has to give: Packers unbeaten at home; Cowboys 8–0 on road |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |url-status=live |archive-url=https://web.archive.org/web/20170101091540/http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |archive-date=January 1, 2017 |access-date=December 31, 2016 |work=Fox Sports}}</ref> Rodgers help secure a 26–21 victory by finishing 24 of 35 for 316 yards, three touchdowns, no interceptions, den a 125.4 passer rating.<ref>{{Cite web |title=Divisional Round – Dallas Cowboys at Green Bay Packers – January 11th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501110gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171114040923/https://www.pro-football-reference.com/boxscores/201501110gnb.htm |archive-date=November 14, 2017 |access-date=December 15, 2017 |website=[[Pro Football Reference]]}}</ref>
De Packers then travel go Seattle to face de top-seeded Seahawks insyd a rematch of de regular season opener.<ref>{{Cite web |last=Pittman |first=Travis |date=January 11, 2015 |title=Seahawks vs. Packers rematch for NFC Championship |url=https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |archive-date=July 24, 2020 |access-date=September 12, 2019 |publisher=KING}}</ref> Insyd de NFC Championship Game, na de Packers dey lead 19–7 plus just over five minutes to go, buh na de home team ein offense finally wake up den, plus de assistance of a crucial Packers special teams gaffe on an onside kick, de Seahawks lead 22–19, plus 44 seconds remaining. Rodgers quickly drive downfield to set up a tying field goal, only to watch from de sidelines as de Seahawks win de coin toss insyd overtime wey he proceed to score de game-winning touchdown on dema first possession. Rodgers be 19-for-34 for 178 yards den a touchdown, plus two interceptions insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Seattle Seahawks – January 18th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501180sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182804/https://www.pro-football-reference.com/boxscores/201501180sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de regular season first insyd touchdown-to-interception ratio (7.6), lowest interception percentage (1.0%), second insyd passer rating (112.2), yards per attempt (8.4), den touchdown passing percentage (7.1%), third insyd touchdown passes (38), seventh insyd passing yards (4,381), den ninth insyd completion percentage (65.6%).<ref>{{Cite web |title=2014 NFL Leaders and Leaderboards |url=https://www.pro-football-reference.com/years/2014/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20190915221740/https://www.pro-football-reference.com/years/2014/leaders.htm |archive-date=September 15, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> He set an NFL record for most consecutive pass attempts (512) at home widout an interception, den touchdown passes (41).
Na dem vote Rodgers de AP NFL Most Valuable Player for de 2014 season, receiving 31 votes,<ref>{{Cite web |last=Demovsky |first=Rob |date=January 31, 2015 |title=Aaron Rodgers named NFL MVP |url=https://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20161217162150/http://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |archive-date=December 17, 2016 |access-date=December 12, 2016 |publisher=[[ESPN]]}}</ref> wey dem name am NFC Offensive Player of de Year by de Kansas City Committee of 101<ref name="KC101off">{{Cite web |title=Past NFC Offensive Honorees |url=http://www.101awards.com/awards/past_nfc_offensive_honorees |url-status=dead |archive-url=https://web.archive.org/web/20161220130101/http://www.101awards.com/awards/past_nfc_offensive_honorees |archive-date=December 20, 2016 |access-date=December 13, 2016 |website=101awards.com}}</ref> den Fed-Ex Air NFL Player of de Year.<ref>{{Cite web |date=January 31, 2015 |title=2015 'NFL Honors' complete list of winners |url=https://www.nfl.com/news/2015-nfl-honors-complete-list-of-winners-0ap3000000466415 |url-status=live |archive-url=https://web.archive.org/web/20161018132754/http://www.nfl.com/news/story/0ap3000000466415/article/2015-nfl-honors-complete-list-of-winners |archive-date=October 18, 2016 |access-date=December 12, 2016 |publisher=National Football League}}</ref> He sanso be named to de AP All-Pro team as de first quarterback, receiving 44 votes while runner-up [[Tony Romo]] receive three.<ref>{{Cite web |last=Wesseling |first=Chris |date=January 2, 2015 |title=2014 All-Pro Teams: Analysis of the full rosters |url=https://www.nfl.com/news/2014-all-pro-teams-analysis-of-the-full-rosters-0ap3000000452986 |url-status=live |archive-url=https://web.archive.org/web/20140104005331/http://pro32.ap.org/article/2013-all-pro-team |archive-date=January 4, 2014 |access-date=February 4, 2015 |publisher=National Football League}}</ref> Na dem name am to de Pro Bowl for de 2014 season.<ref>{{Cite web |title=2014 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2014/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180816061701/https://www.pro-football-reference.com/years/2014/probowl.htm |archive-date=August 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am as de second best player insyd de league among ein fellow players on de ''NFL Top 100'' Players of 2015.<ref>{{Cite web |title=2015 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200508061426/https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |archive-date=May 8, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2015 ====
Insyd 2015, Rodgers get a down year by ein standards. He throw for a career low 3,821 yards insyd wich he play for at least 15 games, although he get 31 touchdowns to just eight interceptions.<ref>{{Cite web |last=Hirschhorn |first=Jason B. |date=July 6, 2016 |title=NFL Top 100: Packers' Aaron Rodgers lands at No. 6 in 2016 |url=https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |url-status=live |archive-url=https://web.archive.org/web/20211115204818/https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=ACME Packing Company |language=en}}</ref> Rodgers plete 60.7 of ein passes per, averaged only 6.7 yards per attempt wey he fini plus a passer rating of 92.7, all career lows. Na Pro Bowl wide receiver Jordy Nelson ein absence secof injury for de season be considered a contributing factor insyd Rodgers ein statistical drop dem compare to previous seasons.<ref>{{Cite web |last=Kelly |first=Danny |date=November 15, 2015 |title=Aaron Rodgers and the Packers miss Jordy Nelson more than we thought they would |url=https://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |url-status=live |archive-url=https://web.archive.org/web/20161226145804/http://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=sbnation.com}}</ref><ref>{{Cite web |date=January 19, 2016 |title=Packers hope Nelson's return will revitalize offense |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |url-status=live |archive-url=https://web.archive.org/web/20161226145654/http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |archive-date=December 26, 2016 |access-date=December 25, 2016 |work=Fox Sports}}</ref><ref>{{Cite web |last=Spofford |first=Mike |date=December 30, 2015 |title=Stats don't matter to Aaron Rodgers |url=http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |url-status=dead |archive-url=https://web.archive.org/web/20161226145201/http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=packers.com}}</ref>
Insyd Week 3, a 38–28 victory over de Chiefs, Rodgers get 333 passing yards den five touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Kansas City Chiefs at Green Bay Packers – September 28th, 2015 |url=https://www.pro-football-reference.com/boxscores/201509280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20220218210924/https://www.pro-football-reference.com/boxscores/201509280gnb.htm |archive-date=February 18, 2022 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2015 NFL Week 3 Leaders & Scores |url=https://www.pro-football-reference.com/years/2015/week_3.htm |url-status=live |archive-url=https://web.archive.org/web/20180330172357/https://www.pro-football-reference.com/years/2015/week_3.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> During Week 9 against de Panthers, he fini plus 369 passing yards, four touchdowns, den one interception. De interception cam plus only 1:47 left insyd de fourth quarter, den following de interception, Rodgers express frustration by throwing down a Microsoft Surface tablet.<ref>{{Cite web |last=Davis |first=Scott |date=November 9, 2015 |title=Aaron Rodgers angrily threw a Microsoft Surface tablet after throwing a crucial interception |url=https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |archive-date=March 30, 2019 |access-date=September 13, 2019 |website=Business Insider}}</ref> De Packers end up losing de game 29–37.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – November 8th, 2015 |url=https://www.pro-football-reference.com/boxscores/201511080car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211145/https://www.pro-football-reference.com/boxscores/201511080car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
On December 3, 2015, insyd a Week 13 match-up against de Lions, Rodgers throw a Hail Mary pass wey [[Richard Rodgers (tight end)|Richard Rodgers]] catch for 61 yards plus 0:00 left to beat de Lions 27–23, after dem extend de game secof a facemask penalty dem call on Detroit.<ref name="2015mary">{{Cite web |last=Rosenthal |first=Gregg |date=December 3, 2015 |title=Packers stun Lions on Aaron Rodgers' Hail Mary TD |url=https://www.nfl.com/news/packers-stun-lions-on-aaron-rodgers-hail-mary-td-0ap3000000593884 |url-status=live |archive-url=https://web.archive.org/web/20180408144543/http://www.nfl.com/news/story/0ap3000000593884/article/packers-stun-lions-on-miracle-td-throw-by-rodgers |archive-date=April 8, 2018 |access-date=December 25, 2016 |publisher=National Football League}}</ref> Na de play quickly be dubbed as "The Miracle in Motown."<ref>{{Cite news|last=Bennett|first=Colin|date=December 9, 2015|title=Getaway winner witnesses Motown Miracle|publisher=WTMJ|url=https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|url-status=dead|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20180312083608/https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|archive-date=March 12, 2018}}</ref><ref>{{Cite book |last=Aretha |first=David |url=https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |title=Aaron Rodgers: Champion Football Star |date=July 15, 2017 |publisher=Enslow Publishing, LLC |isbn=9780766087170 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203181206/https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |archive-date=February 3, 2021 |url-status=live}}</ref>
De Packers make de playoffs as de fifth seed insyd de NFC plus a 10–6 record.<ref>{{Cite web |title=2015 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2015.htm |url-status=live |archive-url=https://web.archive.org/web/20171010004706/https://www.pro-football-reference.com/teams/gnb/2015.htm |archive-date=October 10, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Dem defeat de Redskins 35–18 on de road insyd de Wild Card Round of de playoffs. Rodgers fini de game plus 210 yards den two passing touchdowns.<ref>{{Cite web |title=Wild Card – Green Bay Packers at Washington Redskins – January 10th, 2016 |url=https://www.pro-football-reference.com/boxscores/201601100was.htm |url-status=live |archive-url=https://web.archive.org/web/20180308042317/https://www.pro-football-reference.com/boxscores/201601100was.htm |archive-date=March 8, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round against de Cardinals, Rodgers throw a 41-yard Hail Mary touchdown pass to [[Jeff Janis]] as time expire to send de game into overtime. However, de Packers loos3 26–20 insyd overtime. Rodgers fini de game 24 for 44 for 261 yards plus two touchdowns den an interception.<ref>{{Cite web |last=Wilde |first=Jason |date=January 17, 2016 |title=Jeff Janis forces OT with Hail Mary catch, but celebration short-lived |url=https://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |url-status=live |archive-url=https://web.archive.org/web/20161213200125/http://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=[[ESPN.com]]}}</ref> Dem name am to ein fifth Pro Bowl wey na dem rank am as de sixth best player by ein peers on de ''NFL Top 100'' Players of 2016.<ref>{{Cite web |title=2015 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2015/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180308103829/https://www.pro-football-reference.com/years/2015/probowl.htm |archive-date=March 8, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2016 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190404010429/https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |archive-date=April 4, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2016 ====
[[File:Aaron_Rodgers,_Redskins_v_Packers,_Jan_2016.jpg|right|thumb|Rodgers insyd 2016]]
Thru out de first five games of de 2016 season, Rodgers ein struggles from de 2015 season appear to continue.<ref name="pff2016" /> Thru those games, he plete 60.2% of ein passes, dem average 6.5 yards per attempt, wey he post a passer rating of 88.4—all of wich na be similar to ein 2015 numbers.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log (Games 1–5) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/#127-131-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227180403/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016#127-131-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]]}}</ref> He sanso fumble five times, wey he loose two. Ein lackluster performance thru those games cause much speculation about de causes of ein problems.<ref>{{Cite web |last=Florio |first=Mike |author-link=Mike Florio |date=October 20, 2016 |title=What's wrong with Aaron Rodgers? |url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/whats-wrong-with-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20161226215024/http://profootballtalk.nbcsports.com/2016/10/20/whats-wrong-with-aaron-rodgers/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=NBC Sports |language=en-US}}</ref><ref name="pff2016">{{Cite web |last=Monson |first=Sam |date=October 17, 2016 |title=What's wrong with Aaron Rodgers and the Packers' offense? |url=https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |url-status=live |archive-url=https://web.archive.org/web/20161226214838/https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=profootballfocus.com}}</ref><ref>{{Cite web |last=Gonzalez |first=Jason |date=October 17, 2016 |title=What's wrong with the Packers? All signs point to Aaron Rodgers |url=http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |url-status=live |archive-url=https://web.archive.org/web/20161226145502/http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=Star Tribune}}</ref><ref>{{Cite web |last=Demovsky |first=Rob |date=October 20, 2016 |title=Experts weigh in on Aaron Rodgers: 'No easy fix' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |url-status=live |archive-url=https://web.archive.org/web/20161226150119/http://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=[[ESPN.com]]}}</ref>
[[File:Pro_Football_Hall_of_Fame_(23945585187).jpg|thumb|Rodgers ein uniform dem exhibit at de Pro Football Hall of Fame]]
Insyd a Week 7 ''Thursday Night Football'' game against de Bears, Rodgers rebound by recording a franchise record den career-high 39 completions, breaking Brett Favre ein previous record of 36 insyd 1993, sanso be against de Bears.<ref>{{Cite web |date=October 21, 2016 |title=Aaron Rodgers sets Green Bay Packers completion record in win over Chicago Bears |url=http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |url-status=live |archive-url=https://web.archive.org/web/20161213015800/http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=United Press International}}</ref> Rodgers record 326 passing yards for ein first 300-yard passing game since Week 10 of de 2015 season insyd de 26–10 win.<ref name="pfr gamelog" /> De following week against de Atlanta Falcons, Rodgers record a career regular season high of 60 rushing yards,<ref name="pfr gamelog">{{Cite web |title=Aaron Rodgers Career Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/ |url-status=dead |archive-url=https://web.archive.org/web/20111219211828/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog |archive-date=December 19, 2011 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> wey he fini plus four touchdown passes den a 125.5 passer rating.<ref>{{Cite web |last=Dubin |first=Jared |date=October 30, 2016 |title=Packers vs. Falcons highlights, score: Matt Ryan Aaron Rodgers trade lasers all day |url=http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |url-status=live |archive-url=https://web.archive.org/web/20161226215154/http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=CBS Sports}}</ref>
After a Week 11 loss to de Redskins—de Packers dema fourth in a row, putting dem at 4–6—Rodgers be optimistic about de remainder of de season, saying, "I feel like we fi run de table, I really do."<ref name="runtable1">{{Cite web |last=Demovsky |first=Rob |date=November 23, 2016 |title=Aaron Rodgers: Packers, at 4–6, can close with 6 straight wins |url=https://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |url-status=live |archive-url=https://web.archive.org/web/20170105180337/http://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref> Despite widespread doubt over de likelihood of such a run,<ref name="runtable2">{{Cite web |last=Demovsky |first=Rob |date=January 2, 2016 |title=Aaron Rodgers' magic carries Packers into playoffs on a run-the-table roll |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |url-status=live |archive-url=https://web.archive.org/web/20170103184508/http://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |archive-date=January 3, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Sipple |first=George |date=January 2, 2017 |title=Packers QB Aaron Rodgers makes good on 'run the table' prediction |url=http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |url-status=live |archive-url=https://web.archive.org/web/20170105175931/http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=Detroit Free Press}}</ref><ref>{{Cite web |last=Gantt |first=Darin |date=November 24, 2016 |title=Aaron Rodgers: "I feel we can run the table" |url=http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |url-status=live |archive-url=https://web.archive.org/web/20170105180803/http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=profootballtalk.nbcsports.com}}</ref> de Packers go go on to finish de season plus six straight wins—as Rodgers say dem go fi.
Insyd a Week 12 ''Monday Night Football'' game Rodgers appeare to injure ein hamstring on a scrambling play against de Eagles.<ref name="packnews">{{Cite web |last=Silverstein |first=Tom |date=November 29, 2016 |title=Hamstring injury sends Rodgers to tent |url=http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |url-status=live |archive-url=https://web.archive.org/web/20161129161247/http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |archive-date=November 29, 2016 |access-date=December 13, 2016 |website=Milwaukee Journal Sentinel}}</ref> After de play, Rodgers go into an injury tent on de sideline to get ein leg taped up.<ref name="packnews" /> Na Rodgers, however, no miss any snaps insyd de game wey he fini 30 out of 39 for 313 yards plus no sacks anaa interceptions.<ref name="2016eagles" /> Ein 300-yard performance be ein fourth of de season den de first wey de Eagles dema defense allow all season.<ref name="2016eagles">{{Cite web |last=Jackson |first=Zac |date=November 28, 2016 |title=Rodgers, defense step up as Packers snap losing streak |url=http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |url-status=live |archive-url=https://web.archive.org/web/20161213165321/http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |archive-date=December 13, 2016 |access-date=December 13, 2016}}</ref> De Packers win, 27–13, snapping dema four-game losing streak.
Insyd a 38–10 victory over de Seahawks insyd a Week 14 game, Rodgers den de Packers continue dema recent offensive den defensive success.<ref name="38-10" /><ref name="38-102">{{Cite web |last=Pelissero |first=Tom |date=December 12, 2016 |title=After rout of Seattle, Packers re-emerge as team no one wants to see in January |url=https://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |url-status=live |archive-url=https://web.archive.org/web/20161213014329/http://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=USA Today Sports}}</ref> Rodgers fini plus 246 passing yards, three touchdown passes den a 150.8 passer rating. De 150.8 passer rating be de best recorded against Seattle ein defense since head coach [[Pete Carroll]] take over insyd 2010.<ref name="38-10">{{Cite web |last=Wesseling |first=Chris |date=December 11, 2016 |title=Aaron Rodgers, Packers dismantle Seahawks |url=https://www.nfl.com/news/aaron-rodgers-packers-dismantle-seahawks-0ap3000000755388 |url-status=live |archive-url=https://web.archive.org/web/20161213001101/http://www.nfl.com/news/story/0ap3000000755388/article/mvp-candidate-rodgers-packers-dismantle-seahawks |archive-date=December 13, 2016 |access-date=December 13, 2016 |publisher=National Football League}}</ref> Rodgers do dis despite suffering a calf injury early insyd de game.<ref name="38-10" /> Na dem name am NFC Offensive Player of de Week for ein performance against de Seahawks.<ref>{{Cite web |last=Lam |first=Quang M. |date=December 14, 2016 |title=Le'Veon Bell, Rodgers among NFL Players of the Week |url=http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |url-status=dead |archive-url=https://web.archive.org/web/20190330021109/http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |archive-date=March 30, 2019 |access-date=November 12, 2019 |publisher=National Football League}}</ref>
On December 20, 2016, na Rodgers be selected to ein third consecutive Pro Bowl den ein sixth overall insyd ein career.<ref name="probowl2016">{{Cite web |date=December 20, 2016 |title=NFL announces 2017 Pro Bowl rosters |url=https://www.nfl.com/news/nfl-announces-2017-pro-bowl-rosters-0ap3000000760503 |url-status=live |archive-url=https://web.archive.org/web/20181117075658/http://www.nfl.com/news/story/0ap3000000760503/article/nfl-announces-2017-pro-bowl-rosters |archive-date=November 17, 2018 |access-date=December 24, 2016 |publisher=National Football League}}</ref>
During Week 16, Rodgers den [[Drew Brees]] tie de NFL record for most seasons plus at least 35 touchdown passes plus four—a record he share plus Peyton Manning den Tom Brady.<ref name="35tdpass">{{Cite web |title=Most seasons with at least 35 passing touchdowns, career |url=http://pfref.com/tiny/ww1Iz |url-status=live |archive-url=https://web.archive.org/web/20220209214231/https://stathead.com/tools/tiny.fcgi?id=ww1Iz |archive-date=February 9, 2022 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref><ref name="mosttdpass">{{Cite web |title=NFL Single-Season Passing Touchdowns Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20210201232241/https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |archive-date=February 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> Insyd de game against de Vikings, Rodgers fini 28 of 38 for 347 yards, four touchdown passes den a rushing touchdown to earn NFC Offensive Player of de Week.<ref name="espnvik2016">{{Cite web |last=Demovsky |first=Rob |date=December 24, 2016 |title=Aaron Rodgers for MVP: Packers QB makes case in win over Vikings |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |url-status=live |archive-url=https://web.archive.org/web/20161225084224/http://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |archive-date=December 25, 2016 |access-date=December 25, 2016 |publisher=[[ESPN]]}}</ref><ref>{{Cite web |title=2016 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2016/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231416/https://www.pro-football-reference.com/years/2016/week_16.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 300-yard performance be de first allowed by de Vikings dema defense all season.<ref name="espnvik2016" /> He sanso set Packer regular season records for most 4,000-yard passing seasons (6), most completions insyd a season (374), den—plus Jordy Nelson—most touchdowns by a quarterback/wide receiver combination plus (59).<ref name="espnvik2016" /> Na dem name Rodgers NFC Offensive Player of de Month for December.<ref>{{Cite web |date=January 5, 2017 |title=Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |url-status=live |archive-url=https://web.archive.org/web/20200724202520/https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |archive-date=July 24, 2020 |access-date=September 13, 2019 |website=packers.com}}</ref>
Rodgers help lead de Packers to a NFC North title den a playoff berth insyd 2016.<ref>{{Cite web |title=2016 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2016 |url-status=live |archive-url=https://web.archive.org/web/20180329001215/https://www.pro-football-reference.com/years/2016/ |archive-date=March 29, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers defeat de Giants insyd de Wild Card Round. Rodgers plete 25 of 40 passes for 364 yards den four touchdowns insyd de victory. Dem defeat de #1-seed Cowboys insyd de Divisional Round. Plua de game tied at 31 plus only 18 seconds remaining plus de ball on dema own 32-yard line, Rodgers throw a 36-yard completion to tight end [[Jared Cook]] to put de Packers insyd Mason Crosby ein field goal range. Crosby convert de 51-yard attempt as time expire to win de game.<ref>{{Cite web |last=Steele |first=David |date=January 15, 2017 |title=Aaron Rodgers-to-Jared-Cook joins list of legendary clutch NFL playoff catches |url=https://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |url-status=live |archive-url=https://web.archive.org/web/20190415003703/http://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |archive-date=April 15, 2019 |access-date=September 13, 2019 |website=Sporting News}}</ref> Overall, Rodgers plete 28 of 43 passes for 355 yards, two touchdowns den an interception insyd de victory.<ref>{{Cite web |title=Wild Card – New York Giants at Green Bay Packers – January 8th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701080gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171011073327/https://www.pro-football-reference.com/boxscores/201701080gnb.htm |archive-date=October 11, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=Divisional Round – Green Bay Packers at Dallas Cowboys – January 15th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701150dal.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030639/https://www.pro-football-reference.com/boxscores/201701150dal.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de Falcons insyd de NFC Championship insyd de final game at de Georgia Dome. Rodgers plete 27 of ein 45 passing attempts for 287 yards plus three touchdowns den an interception insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Atlanta Falcons – January 22nd, 2017 |url=https://www.pro-football-reference.com/boxscores/201701220atl.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003240/https://www.pro-football-reference.com/boxscores/201701220atl.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd 2016, Rodgers fini plus 401 completions den 610 attempts (both career highs), a 65.7% completion percentage, 4,428 passing yards, 40 touchdown passes, seven interceptions, a passer rating of 104.2, 369 rushing yards (career-high), den four rushing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |url-status=live |archive-url=https://web.archive.org/web/20211115205043/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Plus ein 40 touchdown passes, he lead de league insyd de statistic for de first time insyd ein career<ref>{{Cite web |last=Borek |first=Jesse |date=January 1, 2017 |title=Packers' Aaron Rodgers leads NFL in TD passes |url=http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |url-status=dead |archive-url=https://web.archive.org/web/20170104172003/http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |archive-date=January 4, 2017 |access-date=January 4, 2017 |website=fanrangsports.com |publisher=Nafstrops Media, LLC}}</ref> wey he cam be one of only four quarterbacks to pass for at least 40 touchdowns insyd multiple seasons.<ref name="40td">{{Cite web |title=Most seasons with at least 40 passing touchdowns, career |url=http://pfref.com/tiny/6BiBx |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=6BiBx |archive-date=December 1, 2021 |access-date=January 5, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Rodgers sanso fini fourth insyd passing yards, completions, attempts, den passer rating.<ref name="2016leaderspfr">{{Cite web |title=2016 NFL Leaders |url=https://www.pro-football-reference.com/years/2016/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20210108041718/https://www.pro-football-reference.com/years/2016/leaders.htm |archive-date=January 8, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Among quarterbacks, he fini third insyd rushing yards den fifth insyd rushing touchdowns.<ref name="2016qbrush">{{Cite web |title=2016 QB rushing leaders |url=http://pfref.com/tiny/698kQ |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=698kQ |archive-date=December 1, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2017.<ref>{{Cite web |title=2017 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201106081444/https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |archive-date=November 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2017 ====
Insyd a Week 1 victory over de Seahawks, Rodgers get ein 50th career game plus at least 300 passing yards. He fini de game plus 311, buh ein streak of 251 consecutive passes widout an interception cam to an end wen defensive tackle [[Nazair Jones]] pick am off insyd de first quarter.<ref>{{Cite news|date=September 10, 2017|title=Rodgers, Packers' defense spark season-opener win over Seahawks|work=Fox Sports|agency=Associated Press|url=http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|url-status=live|access-date=September 10, 2017|archive-url=https://web.archive.org/web/20170912011719/http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|archive-date=September 12, 2017}}</ref> Insyd a Week 2 loss of 34–23 to de Falcons, he get 343 passing yards, two touchdowns, den an interception insyd de first game insyd de new Mercedes-Benz Stadium insyd Atlanta.<ref>{{Cite web |title=Green Bay Packers at Atlanta Falcons – September 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201709170atl.htm |url-status=live |archive-url=https://web.archive.org/web/20171008080102/https://www.pro-football-reference.com/boxscores/201709170atl.htm |archive-date=October 8, 2017 |access-date=October 13, 2017 |website=[[Pro Football Reference]]}}</ref> Insyd Week 5, down by 28–31 against de Cowboys plus less dan two minutes on de clock, Rodgers lead a nine-play, 75-yard touchdown drive insyd de 35–31 victory, earning am NFC Offensive Player of de Week.<ref>{{Cite web |last=Lewis |first=Edward |date=October 11, 2017 |title=Aaron Rodgers, Earl Thomas among Players of Week |url=https://www.nfl.com/news/aaron-rodgers-earl-thomas-among-players-of-week-0ap3000000859999 |url-status=live |archive-url=https://web.archive.org/web/20190504022932/http://www.nfl.com/news/story/0ap3000000859999/article/aaron-rodgers-earl-thomas-among-players-of-week |archive-date=May 4, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref>
During Week 6 against de Vikings, na dem take Rodgers off de field by ein coaches den medical personnel after suffering a shoulder injury on a hit from [[Anthony Barr (American football)|Anthony Barr]]. Shortly thereafter, na dem reveal say Rodgers suffer a fractured right collarbone.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 15, 2017 |title=Aaron Rodgers has broken collarbone, could miss season |url=https://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |url-status=live |archive-url=https://web.archive.org/web/20190504114010/http://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |archive-date=May 4, 2019 |access-date=October 15, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Wesseling |first=Chris |date=October 15, 2017 |title=Aaron Rodgers suffers broken collarbone vs. Vikings |url=https://www.nfl.com/news/aaron-rodgers-suffers-broken-collarbone-vs-vikings-0ap3000000861006 |url-status=live |archive-url=https://web.archive.org/web/20171015222153/http://www.nfl.com/news/story/0ap3000000861006/article/aaron-rodgers-suffers-broken-collarbone-vs-vikings |archive-date=October 15, 2017 |access-date=October 15, 2017 |website=NFL.com |publisher=National Football League}}</ref> De next day, on October 16, na dem announce say Rodgers go get surgery on ein broken collarbone.<ref>{{Cite web |last=Patra |first=Kevin |date=October 16, 2017 |title=Aaron Rodgers will have surgery on broken collarbone |url=https://www.nfl.com/news/aaron-rodgers-will-have-surgery-on-broken-collarbone-0ap3000000862438 |url-status=live |archive-url=https://web.archive.org/web/20171016214737/http://www.nfl.com/news/story/0ap3000000862438/article/aaron-rodgers-will-have-surgery-on-broken-collarbone |archive-date=October 16, 2017 |access-date=October 16, 2017 |website=NFL.com |publisher=National Football League}}</ref> On October 19, he undergo surgery on ein collarbone, wey na he be officially placed on injured reserve de next day.<ref>{{Cite web |date=October 19, 2017 |title=Aaron Rodgers has surgery on collarbone |url=https://www.nfl.com/news/packers-aaron-rodgers-has-surgery-on-collarbone-0ap3000000864021 |url-status=live |archive-url=https://web.archive.org/web/20171020135141/http://www.nfl.com/news/story/0ap3000000864021/article/packers-aaron-rodgers-has-surgery-on-collarbone |archive-date=October 20, 2017 |access-date=October 19, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |date=October 20, 2017 |title=Packers place QB Rodgers on injured reserve |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |url-status=dead |archive-url=https://web.archive.org/web/20171021061030/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |archive-date=October 21, 2017 |access-date=October 20, 2017 |website=Packers.com}}</ref> Na dem insert a total of 13 screws to stabilize ein collarbone.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 26, 2017 |title=Injury roundup: Rodgers has '13 screws' in collarbone |url=https://www.nfl.com/news/injuries-aaron-rodgers-has-13-screws-in-collarbone-0ap3000000867422 |url-status=live |archive-url=https://web.archive.org/web/20171026222152/http://www.nfl.com/news/story/0ap3000000867422/article/injury-roundup-rodgers-has-13-screws-in-collarbone |archive-date=October 26, 2017 |access-date=October 26, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Knoblauch |first=Austin |date=November 3, 2017 |title=Aaron Rodgers focusing on his health, not return date |url=https://www.nfl.com/news/aaron-rodgers-focusing-on-his-health-not-return-date-0ap3000000871634 |url-status=live |archive-url=https://web.archive.org/web/20171104033909/http://www.nfl.com/news/story/0ap3000000871634/article/aaron-rodgers-focusing-on-his-health-not-return-date |archive-date=November 4, 2017 |access-date=November 3, 2017 |website=NFL.com |publisher=National Football League}}</ref>
Rodgers return to practice on December 2, wey dey make am eligible to play insyd de upcoming Week 15 game.<ref>{{Cite web |last=Bergman |first=Jeremy |date=December 2, 2017 |title=Aaron Rodgers returns to Packers practice Saturday |url=https://www.nfl.com/news/aaron-rodgers-returns-to-packers-practice-saturday-0ap3000000885977 |url-status=live |archive-url=https://web.archive.org/web/20191202121449/http://www.nfl.com/news/story/0ap3000000885977/article/aaron-rodgers-returns-to-packers-practice-saturday |archive-date=December 2, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> On December 12, na dem announce say Rodgers be medically cleared by doctors wey he be set to start de next game against de Panthers.<ref>{{Cite web |last=Lewis |first=Edward |date=December 12, 2017 |title=Aaron Rodgers cleared to return, to start vs. Panthers |url=http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |url-status=dead |archive-url=https://web.archive.org/web/20191109071351/http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |archive-date=November 9, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> He be officially activated on December 16.<ref>{{Cite web |date=December 16, 2017 |title=Aaron Rodgers activated from injured reserve |url=https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |url-status=live |archive-url=https://web.archive.org/web/20190413105005/https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |archive-date=April 13, 2019 |access-date=September 12, 2019 |website=Packers.com}}</ref> As dem plan, Rodgers return insyd Week 15 against de Panthers, wer he fini plus 290 passing yards, three touchdowns, den three interceptions as de Packers loose 24–31.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – December 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201712170car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101135719/https://www.pro-football-reference.com/boxscores/201712170car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> However, on December 19, na dem place Rodgers back on injured reserve after de Packers be eliminated from playoff contention.<ref>{{Cite web |date=December 19, 2017 |title=Packers place QB Aaron Rodgers on IR |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |url-status=dead |archive-url=https://web.archive.org/web/20180326030719/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |archive-date=March 26, 2018 |website=Packers.com}}</ref><ref>{{Cite web |last=Patra |first=Kevin |date=December 19, 2017 |title=Packers place Aaron Rodgers back on injured reserve |url=https://www.nfl.com/news/packers-place-aaron-rodgers-back-on-injured-reserve-0ap3000000895650 |url-status=live |archive-url=https://web.archive.org/web/20190920235723/http://www.nfl.com/news/story/0ap3000000895650/article/packers-place-aaron-rodgers-back-on-injured-reserve |archive-date=September 20, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Rapoport |first=Ian |author-link=Ian Rapoport |date=December 17, 2017 |title=Aaron Rodgers' collarbone still not completely healed |url=https://www.nfl.com/news/aaron-rodgers-collarbone-still-not-completely-healed-0ap3000000893627 |url-status=live |archive-url=https://web.archive.org/web/20171223065547/http://www.nfl.com/news/story/0ap3000000893627/article/aaron-rodgers-collarbone-still-not-completely-healed |archive-date=December 23, 2017 |access-date=December 23, 2017 |website=NFL.com |publisher=National Football League}}</ref> He be ranked No. 10 by ein fellow players on de ''NFL Top 100'' Players of 2018.<ref>{{Cite web |title=2018 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201104205316/https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |archive-date=November 4, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2018 ====
[[File:Rodgersthrowing2018redskins.jpg|thumb|Rodgers dey throw a pass insyd 2018]]
On August 29, 2018, Rodgers sign a four-year extension plus de Packers worth $134 million featuring a $57.5 million signing bonus.<ref>{{Cite web |last=Siegle |first=Evan |date=August 29, 2018 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |url-status=live |archive-url=https://web.archive.org/web/20180830044455/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |archive-date=August 30, 2018 |access-date=August 29, 2018 |website=packers.com}}</ref><ref>{{Cite web |last=Teope |first=Herbie |date=August 29, 2018 |title=Aaron Rodgers agrees to 4-year, $134M extension |url=http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |url-status=dead |archive-url=https://web.archive.org/web/20180830005310/http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |archive-date=August 30, 2018 |access-date=August 29, 2018 |publisher=National Football League}}</ref>
During ''Sunday Night Football'' against de Bears insyd Week 1, Rodgers lef de game plus a knee injury buh he return insyd de third quarter. Down by 20 points, Rodgers fini plus 286 passing yards den three touchdowns, leading de Packers rally to a 24–23 win.<ref>{{Cite web |last=Bergman |first=Jeremy |date=September 9, 2018 |title=Rodgers helps Packers rally against Bears |url=https://www.nfl.com/news/aaron-rodgers-rallies-packers-to-improbable-win-0ap3000000960283 |url-status=live |archive-url=https://web.archive.org/web/20180910164829/http://www.nfl.com/news/story/0ap3000000960283/article/aaron-rodgers-rallies-packers-to-improbable-win |archive-date=September 10, 2018 |access-date=September 10, 2018 |publisher=National Football League}}</ref> Despite a nagging knee injury, Rodgers get at least 40 pass attempts insyd each of de next three games. Insyd de last of these, he throw ein first interception insyd 150 attempts.<ref>{{Cite web |date=September 30, 2018 |title=GAME RECAP: Bills fall on the road in Green Bay |url=https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |url-status=live |archive-url=https://web.archive.org/web/20181008214257/https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |archive-date=October 8, 2018 |access-date=December 17, 2018 |website=buffalobills.com}}</ref> Insyd Week 5, Rodgers pass for 442 yards (de second-best of ein career) den three touchdowns, buh sanso two fumbles, insyd a 31–23 loss to de Lions.<ref>{{Cite web |last=Owczarski |first=Jim |date=October 7, 2018 |title=Packers doomed by slow start, Mason Crosby's misses in loss to Lions |url=https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |url-status=live |archive-url=https://web.archive.org/web/20201109032148/https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |archive-date=November 9, 2020 |access-date=December 17, 2018 |website=USA Today}}</ref> Insyd de following game, a 33–30 victory over de 49ers, he get 425 passing yards den two passing touchdowns.<ref>{{Cite web |date=October 16, 2018 |title=Bloodied Aaron Rodgers leads Packers and Crosby to redemption over 49ers |url=https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |url-status=live |archive-url=https://web.archive.org/web/20181030035759/https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |archive-date=October 30, 2018 |access-date=October 29, 2018 |website=The Guardian |agency=Associated Press}}</ref>
Following de bye-week, despite a continuing knee injury,<ref>{{Cite news|last=Maske|first=Mark|date=October 16, 2018|title=Aaron Rodgers's knee isn't quite right. But he's still good enough to carry the Packers|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|url-status=live|access-date=December 6, 2019|archive-url=https://web.archive.org/web/20191207093807/https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|archive-date=December 7, 2019}}</ref> Rodgers get ein third consecutive week plus a 100+ quarterback rating,<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log (Games 5, 6, and 8) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231012655/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |archive-date=December 31, 2019 |access-date=December 5, 2019 |website=[[Pro Football Reference]]}}</ref> wich include 286 yards passing, no interceptions, den a go-ahead 40-yard touchdown pass to [[Marquez Valdes-Scantling]] insyd a 29–27 loss to de Los Angeles Rams.<ref>{{Cite web |last=Beacham |first=Greg |date=October 29, 2018 |title=Late fumble keeps Rams unbeaten with 29–27 win over Packers |url=https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |url-status=live |archive-url=https://web.archive.org/web/20181217202249/https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref>
Insyd Week 14, against de Falcons, Rodgers set an NFL record by converting ein 359th consecutive pass widout an interception, breaking Tom Brady ein previous record.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 9, 2018 |title=No picks for Packer: Rodgers sets no-INT mark |url=https://www.espn.com/nfl/story/_/id/25491996 |url-status=live |archive-url=https://web.archive.org/web/20181210123157/http://www.espn.com/nfl/story/_/id/25491996 |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=[[ESPN.com]]}}</ref> Insyd Week 15, against de Chicago Bears, Rodgers throw for 274 yards den an interception insyd a 24–17 loss. Rodgers ein record streak widout an interception end plus 402 pass attempts after he be intercepted by free safety [[Eddie Jackson (safety)|Eddie Jackson]].<ref>{{Cite web |last=Cohen |first=Jay |date=December 16, 2018 |title=Rodgers throws interception as Packers lose 24–17 to Bears |url=https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |url-status=live |archive-url=https://web.archive.org/web/20181217145036/https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref> During Week 16 against de Jets, Rodgers fini plus 442 passing yards, two passing touchdowns, den two rushing touchdowns. Trailing at one point by 15 points, Rodgers den de Packers win 44–38 insyd overtime.<ref>{{Cite web |date=December 23, 2018 |title=Rodgers leads Packers to wild 44–38 overtime win over Jets |url=https://www.espn.com/nfl/recap?gameId=401030870 |url-status=live |archive-url=https://web.archive.org/web/20190101002910/http://www.espn.com/nfl/recap?gameId=401030870 |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> He match ein own feat of achieving at least 400 passing yards, two passing touchdowns, deb two rushing touchdowns insyd a single game. De only oda time insyd NFL history wey na e occur be wen Rodgers accomplish am insyd 2011 against de Denver Broncos.<ref>{{Cite web |last=Kruse |first=Zach |date=December 24, 2018 |title=Packers QB Aaron Rodgers matches his own rare feat vs. Jets |url=https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |url-status=live |archive-url=https://web.archive.org/web/20190123071358/https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Packers Wire}}</ref>
On December 18, 2018, na dem name Rodgers to ein seventh Pro Bowl.<ref>{{Cite web |date=December 18, 2018 |title=NFL reveals rosters for 2019 Pro Bowl in Orlando |url=https://www.nfl.com/news/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando-0ap3000001001792 |url-status=live |archive-url=https://web.archive.org/web/20190108220211/http://www.nfl.com/news/story/0ap3000001001792/article/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando |archive-date=January 8, 2019 |access-date=January 1, 2019 |publisher=National Football League}}</ref> He decline de appearance secof injury wey na he be replaced by [[Russell Wilson]].<ref>{{Cite web |last=Fentress |first=Aaron |date=January 9, 2019 |title=Russell Wilson replaces Aaron Rodgers on NFC Pro Bowl team |url=https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |url-status=live |archive-url=https://web.archive.org/web/20190626144630/https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |archive-date=June 26, 2019 |access-date=June 26, 2019 |website=NBC Sports Northwest}}</ref>
Insyd de regular season finale against de Detroit Lions, Rodgers suffer a concussion early insyd de game wey he no go return.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 30, 2018 |title=Aaron Rodgers suffers concussion in Packers' regular season finale |url=https://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |url-status=live |archive-url=https://web.archive.org/web/20190101005826/http://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]]}}</ref> Na den then send am to de hospital to test for concussion symptoms.<ref name="2018conc">{{Cite web |last=Jones |first=Brian |date=December 31, 2018 |title=Aaron Rodgers sent to hospital after suffering concussion |url=https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |url-status=live |archive-url=https://web.archive.org/web/20220427185549/https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |archive-date=April 27, 2022 |access-date=January 1, 2019 |website=247 SPORTS}}</ref> Secof na de Packers already be eliminated from playoff contention, Rodgers answer questions about whether he for be playing, for fear of injury, by saying: "''That's just not the way I lead, and I'm super-competitive, and I want to be out there with the guys and I look forward to being out there."''<ref name="2018conc" /> Na dem later spot Rodgers at de Packers dema facility after de game.<ref name="2018conc" />
Rodgers fini de season plus 372 completions, 597 attempts, 4,442 passing yards, 25 passing touchdowns, two interceptions den a passer rating of 97.6.<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/ |access-date=January 8, 2026 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to setting de record for consecutive passes widout an interception during de season, Rodgers set NFL records for interception percentage for a season, plus only 0.335% of ein passes be intercepted, den for de amount of thrown away passes.<ref name="passintpfr">{{Cite web |title=NFL Pass Interception % Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20190102050903/https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |archive-date=January 2, 2019 |access-date=January 1, 2019 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |last=Smith |first=Michael David |date=December 3, 2018 |title=Aaron Rodgers avoids interceptions by throwing the ball away at a record rate |url=https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |url-status=live |archive-url=https://web.archive.org/web/20190807024232/https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |archive-date=August 7, 2019 |access-date=November 12, 2019 |website=ProFootballTalk}}</ref> Na dem rank am eighth by ein fellow players on de ''NFL Top 100'' Players of 2019.<ref>{{Cite web |title=2019 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112140727/https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2019 ====
[[File:Aaron_Rodgers_2019.jpg|right|thumb|Rodgers insyd a game against de Washington Redskins ]]
Rodgers start de 2019 season plus a new head coach insyd [[Matt LaFleur]] following de departure of Mike McCarthy.<ref>{{Cite web |last=Wilde |first=Jason |date=September 17, 2019 |title=Believing offensive success is 'close,' Matt LaFleur and Aaron Rodgers focus on making more plays |url=https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |url-status=live |archive-url=https://web.archive.org/web/20190927192039/https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=madison.com}}</ref> De Packers offense rely less on Rodgers ein trademark passes den more on heavy formations den play-action throws to take advantage of running back [[Aaron Jones (running back)|Aaron Jones]].<ref>{{Cite web |last=Mays |first=Robert |date=January 17, 2020 |title=The Incalculable Legacy of Aaron Rodgers |url=https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |url-status=live |archive-url=https://web.archive.org/web/20200409091343/https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |archive-date=April 9, 2020 |access-date=April 7, 2020 |website=The Ringer |language=en}}</ref>
Rodgers help lead de Packers to a 3–0 start plus victories over de Bears, Vikings, den Broncos.<ref>{{Cite web |last=Wilner |first=Barry |date=September 6, 2019 |title=Packers' D, Aaron Rodgers beat Bears 10–3 in opener |url=https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |url-status=live |archive-url=https://web.archive.org/web/20190927192201/https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref><ref>{{Cite web |date=September 15, 2019 |title=Packers ride Rodgers' hot start to 21–16 win over Vikings |url=https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |url-status=dead |archive-url=https://web.archive.org/web/20190927192237/https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |publisher=WBAY |agency=Associated Press}}</ref><ref>{{Cite web |last=Jenkins |first=Keith |date=September 22, 2019 |title=Packers remain unbeaten with 27–16 win over Broncos |url=https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |url-status=live |archive-url=https://web.archive.org/web/20190927193720/https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref> Insyd Week 4, against de Eagles on ''Thursday Night Football'', he get 422 passing yards den two passing touchdowns, buh he sanso throw de game-ending interception as de Packers be handed dema first loss of de season by a score of 34–27.<ref>{{Cite web |date=September 27, 2019 |title=Eagles pick off Aaron Rodgers' late pass to beat Packers |url=https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |url-status=live |archive-url=https://web.archive.org/web/20190927063930/https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=Los Angeles Times |agency=Associated Press}}</ref> Insyd Week 7, against de Raiders, Rodgers post ein first-ever game plus a perfect passer rating of 158.3, de first quarterback insyd team history to do so.<ref>{{Cite web |last=Joseph |first=Andrew |date=October 20, 2019 |title=The Packers players were so pumped to find out Aaron Rodgers had a perfect passer rating |url=https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |url-status=live |archive-url=https://web.archive.org/web/20191021004107/https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |archive-date=October 21, 2019 |access-date=October 20, 2019 |website=USA Today}}</ref> He plete 25-of-31 passes for 429 yards den five touchdowns insyd de 42–24 victory.<ref>{{Cite web |last=Kruse |first=Zach |date=October 20, 2019 |title=Perfection: Aaron Rodgers finishes with perfect passer rating vs. Raiders |url=https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |url-status=live |archive-url=https://web.archive.org/web/20191020214833/https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |archive-date=October 20, 2019 |access-date=October 20, 2019 |website=PackersWire}}</ref> Na dem name am de NFC Offensive Player of de Week for ein performance.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 23, 2019 |title=Aaron Rodgers, Jacoby Brissett among Players of the Week |url=https://www.nfl.com/news/aaron-rodgers-jacoby-brissett-among-players-of-the-week-0ap3000001068643 |url-status=live |archive-url=https://web.archive.org/web/20191023124430/http://www.nfl.com/news/story/0ap3000001068643/article/aaron-rodgers-jacoby-brissett-among-players-of-the-week |archive-date=October 23, 2019 |access-date=October 23, 2019 |publisher=National Football League}}</ref> Insyd Week 17, against de Lions, Rodgers help lead de team to a 23–20 comeback win. As a result of de victory, de Packers secure a first round bye insyd de playoffs.<ref>{{Cite web |date=December 29, 2019 |title=Packers barely beat Lions 23–20 to earn first-round bye |url=https://www.espn.com/nfl/recap?gameId=401127983 |url-status=live |archive-url=https://web.archive.org/web/20220415135127/https://www.espn.com/nfl/recap?gameId=401127983 |archive-date=April 15, 2022 |access-date=December 29, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers fini de 2019 season plus 4,002 passing yards, 26 passing touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2019 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |url-status=live |archive-url=https://web.archive.org/web/20191231012649/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |archive-date=December 31, 2019 |access-date=December 31, 2019 |website=[[Pro Football Reference]]}}</ref>
Insyd de Divisional Round of de playoffs against de Seahawks, Rodgers plete 16 passes on 27 attempts wey he throw for 243 yards den two touchdowns during de 28–23 win.<ref>{{Cite web |date=January 12, 2020 |title=Packers hold off Seahawks 28–23 to reach NFC title game |url=https://www.espn.com/nfl/recap?gameId=401131042 |url-status=live |archive-url=https://web.archive.org/web/20200417042143/https://www.espn.com/nfl/recap?gameId=401131042 |archive-date=April 17, 2020 |access-date=January 13, 2020 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd de NFC Championship Game against de 49ers, Rodgers plete 31 passes on 39 attempts wey he throw for 326 yards den two touchdowns, buh he sanso throw two interceptions, wey dey include one to [[Richard Sherman (American football)|Richard Sherman]] insyd de final two minutes of de game as de Packers loose 37–20.<ref>{{Cite web |last=Wagner-McGough |first=Sean |date=January 19, 2020 |title=Packers suffer system-wide failure in ugly NFC Championship loss as clock ticks on the Aaron Rodgers era |url=https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |url-status=live |archive-url=https://web.archive.org/web/20200121163627/https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |archive-date=January 21, 2020 |access-date=January 20, 2020 |website=CBS Sports}}</ref> De loss mark Rodgers ein third consecutive NFC Championship loss (a streak wey go extend to four de following season).<ref name="Clunker">{{Cite web |last=Reischel |first=Rob |date=January 19, 2020 |title=Green Bay Packers' Aaron Rodgers Has Another NFC Championship Game Clunker |url=https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |url-status=live |archive-url=https://web.archive.org/web/20200120124354/https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |archive-date=January 20, 2020 |access-date=January 22, 2020 |website=Forbes}}</ref> Na dem rank am 16th by ein fellow players on de ''NFL Top 100'' Players of 2020.<ref>{{Cite web |title=2020 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200015/https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2020: Third MVP ====
Prior to a Week 5 bye, Rodgers help lead de Packers to a four-game winning streak to start de 2020 season.<ref>{{Cite web |date=October 7, 2020 |title=Packers head into their Week 5 bye |url=https://www.packers.com/news/packers-head-into-their-week-5-bye |url-status=live |archive-url=https://web.archive.org/web/20211115190601/https://www.packers.com/news/packers-head-into-their-week-5-bye |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=packers.com |language=en-US}}</ref> That winning streak go end insyd Week 6 against de Buccaneers, insyd wich Rodgers throw for 160 yards den two interceptions, wey dey include a pick-six (de third of ein professional career), during de 38–10 loss.<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – October 18th, 2020 |url=https://www.pro-football-reference.com/boxscores/202010180tam.htm |url-status=live |archive-url=https://web.archive.org/web/20201019130703/https://www.pro-football-reference.com/boxscores/202010180tam.htm |archive-date=October 19, 2020 |access-date=October 22, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> After a 3–2 stretch give de team, Rodgers throw for 211 yards den four touchdowns insyd a 41–25 victory over de Bears insyd Week 12. During de game, he cam be de 11th player insyd NFL history to eclipse 50,000 career passing yards, achieving de milestone on a 39-yard touchdown pass to tight end [[Robert Tonyan]] midway thru de third quarter.<ref>{{Cite magazine|last=Huber|first=Bill|date=November 29, 2020|title=Rodgers Makes History with 50,000-Yard Milestone|url=https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|url-status=live|archive-url=https://web.archive.org/web/20201130035319/https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|archive-date=November 30, 2020|access-date=November 30, 2020|magazine=Sports Illustrated}}</ref> In Week 13 against de Eagles, Rodgers throw for 295 yards den three touchdowns during de 30–16 win. Rodgers ein third touchdown pass of de game be to wide receiver [[Davante Adams]] wey na e be ein 400th career touchdown pass.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – December 6th, 2020 |url=https://www.pro-football-reference.com/boxscores/202012060gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20201125163729/https://www.pro-football-reference.com/boxscores/202012060gnb.htm |archive-date=November 25, 2020 |access-date=December 8, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Na dem name Rodgers de NFC Offensive Player of de Week for ein performance insyd Week 13.<ref>{{Cite web |last=Gordon |first=Grant |date=December 9, 2020 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |url-status=live |archive-url=https://web.archive.org/web/20201209165050/https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |archive-date=December 9, 2020 |access-date=December 10, 2020 |publisher=National Football League |language=en-US}}</ref> On December 21, 2020, na dem select am for de 2021 Pro Bowl.<ref>{{Cite web |date=December 21, 2020 |title=NFL reveals complete AFC, NFC rosters for 2021 Pro Bowl |url=https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |url-status=live |archive-url=https://web.archive.org/web/20201222000525/https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |archive-date=December 22, 2020 |access-date=December 21, 2020 |publisher=National Football League}}</ref> N dem name Rodgers de NFC Offensive Player of de Month for ein performance insyd December after passing for 15 touchdowns den one interception insyd five victories for de Packers.<ref>{{Cite web |last=Gordon |first=Grant |date=January 7, 2021 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen among Players of the Month |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20210107133506/https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |archive-date=January 7, 2021 |access-date=January 7, 2021 |publisher=National Football League}}</ref>
Overall, Rodgers fini de 2020 regular season plus 4,299 passing yards, 48 passing touchdowns, den five interceptions. Ein passing touchdowns total set a new franchise record.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> He get seven total games plus four passing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2020 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |url-status=live |archive-url=https://web.archive.org/web/20210109144744/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |archive-date=January 9, 2021 |access-date=January 7, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> He lead de league insyd numerous statistical categories, wey dey include completion percentage, touchdown passes, den passer rating.<ref>{{Cite web |last=Kruse |first=Zach |date=January 4, 2021 |title=Packers QB Aaron Rodgers led NFL in all these statistical categories in 2020 |url=https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |url-status=live |archive-url=https://web.archive.org/web/20210104150141/https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |archive-date=January 4, 2021 |access-date=January 7, 2021 |website=Packers Wire |language=en-US}}</ref> On January 8, 2021, he make de 2020 All-Pro Team first-team.<ref>{{Cite web |date=January 8, 2021 |title=2020 NFL All-Pro Team Roster |url=https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |url-status=live |archive-url=https://web.archive.org/web/20210108171953/https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |archive-date=January 8, 2021 |access-date=January 8, 2021 |work=Associated Press News}}</ref> De Pro Football Writers of America name am de NFL MVP.<ref>{{Cite web |last=Werner |first=Barry |date=January 21, 2021 |title=Aaron Rodgers earns PFWA NFL MVP honors |url=https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |url-status=live |archive-url=https://web.archive.org/web/20210131171403/https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |archive-date=January 31, 2021 |access-date=January 24, 2021 |website=Yahoo! Sports}}</ref>
De Packers fini plus a 13–3 record, dem win de NFC North, wey dem earn a first-round bye for de NFC playoffs.<ref>{{Cite web |title=2020 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2020/index.htm |url-status=live |archive-url=https://web.archive.org/web/20211115190600/https://www.pro-football-reference.com/years/2020/index.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de Divisional Round of de playoffs against de Rams, Rodgers throw for 296 yards den two touchdowns wey he sanso rush for anoda touchdown during de 32–18 win.<ref>{{Cite web |title=Divisional Round – Los Angeles Rams at Green Bay Packers – January 16th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210118220025/https://www.pro-football-reference.com/boxscores/202101160gnb.htm |archive-date=January 18, 2021 |access-date=January 20, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de NFC Championship against de Buccaneers, Rodgers throw for 346 yards den three touchdowns, buh he sanso throw an interception wey na he be sacked five times while he be constantly pressured during de 31–26 loss.<ref name="mcatee_01242021">{{Cite news|last=McAtee|first=Riley|date=January 24, 2021|title=The Packers' Championship-Game Curse Continues. Will It Cost Them Aaron Rodgers?|work=The Ringer|url=https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125040540/https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|archive-date=January 25, 2021}}</ref><ref>{{Cite news|last=Hoffman|first=Benjamin|date=January 24, 2021|title=What We Learned From the N.F.L.'s Conference Championships|work=The New York Times|url=https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125041821/https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|archive-date=January 25, 2021}}</ref><ref name="demovsky_01242021">{{Cite web |last=Demovsky |first=Rob |date=January 24, 2021 |title=Aaron Rodgers uncertain about future with Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20210125195535/https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |archive-date=January 25, 2021 |access-date=January 25, 2021 |website=[[ESPN.com]]}}</ref> Rodgers fall to 1–4 insyd conference championship games, becoming de first quarterback insyd NFL history to loose four in a row.<ref name="mcatee_01242021" /><ref name="demovsky_01242021" /><ref>{{Cite web |title=NFC Championship – Tampa Bay Buccaneers at Green Bay Packers – January 24th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101240gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210129001224/https://www.pro-football-reference.com/boxscores/202101240gnb.htm |archive-date=January 29, 2021 |access-date=January 31, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> After de season, he win de AP Most Valuable Player Award<ref>{{Cite web |last=Shook |first=Nick |date=February 6, 2021 |title=Packers QB Aaron Rodgers named 2020 AP NFL Most Valuable Player |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |url-status=live |archive-url=https://web.archive.org/web/20210207034518/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |archive-date=February 7, 2021 |access-date=February 6, 2021 |publisher=National Football League}}</ref> as well as de FedEx Air Player of de Year.<ref>{{Cite web |title=FedEx Air and Ground Players of the Year |url=https://www.nfl.com/voting/air-and-ground/player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20210125192004/https://www.nfl.com/voting/air-and-ground/player-of-the-year |archive-date=January 25, 2021 |access-date=January 25, 2021 |publisher=National Football League}}</ref> Na dem rank am 3rd by ein fellow players on de ''NFL Top 100'' Players of 2021.<ref>{{Cite web |title=2021 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200023/https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2021: Fourth MVP ====
[[File:Aaron_Rodgers_Packers_OCT2021_(cropped).jpg|right|thumb|Rodgers insyd 2021]]
Rodgers ein 2021 season get a rough start, as he plete 15 of 28 passes for 133 yards den two interceptions as Green Bay loose 38–3 to de Saints at TIAA Bank Field.<ref>{{Cite web |last=Benjamin |first=Cody |date=September 12, 2021 |title=Packers bench Aaron Rodgers for Jordan Love as Jameis Winston torches Green Bay in Week 1 |url=https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |url-status=live |archive-url=https://web.archive.org/web/20210913012242/https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |archive-date=September 13, 2021 |access-date=September 13, 2021 |website=CBS Sports |language=en}}</ref> Na dem pull am insyd de fourth quarter for [[Jordan Love]] as na ein chance of a comeback be all buh eliminated.<ref>{{Cite web |last=Polacek |first=Scott |date=September 12, 2021 |title=Packers' Aaron Rodgers Pulled for Jordan Love amid Blowout by Jameis Winston, Saints |url=https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |url-status=live |archive-url=https://web.archive.org/web/20211021021121/https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |archive-date=October 21, 2021 |access-date=October 21, 2021 |website=Bleacher Report |language=en}}</ref> However, Rodgers dem de Packers recover, going on a seven-game winning streak following de loss to New Orleans.<ref>{{Cite web |last1=Hodkiewicz |first1=Wes |last2=Spofford |first2=Mike |date=October 28, 2021 |title=Late interception wins it for Packers, 24–21 over Cardinals |url=https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |url-status=live |archive-url=https://web.archive.org/web/20211030160810/https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |archive-date=October 30, 2021 |access-date=October 30, 2021 |website=packers.com |language=en-US}}</ref>
Insyd Week 6, Rodgers seal a 24–14 victory against de Bears plus a six-yard touchdown run with 4:34 to go insyd de fourth quarter. During ein celebration, he yell at de Chicago crowd, "''All my f***ing life I own you! I still own you!"''<ref>{{cite web |last1=Demovsky |first1=Rob |date=October 17, 2021 |title=Packers QB Aaron Rodgers taunts jeering Bears fans after game-clinching TD run: 'I still own you' |url=https://www.espn.com/nfl/story/_/id/32419669/packers-qb-aaron-rodgers-taunts-jeering-bears-fans-game-clinching-td-run-own-you |access-date=September 3, 2025 |website=ESPN.com |publisher=ESPN}}</ref> Na de utterance be heavily discussed insyd ein aftermath, den two months later- wen Rodgers play de second game against Chicago- he state say na he get no regrets for making de comment.<ref>{{cite web |last1=Goodbread |first1=Chase |date=December 9, 2021 |title=Packers QB Aaron Rodgers has no regrets for saying 'I own you' to Bears fan |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-has-no-regrets-for-saying-i-own-you-to-bears-fan |access-date=September 3, 2025 |website=NFL.com |publisher=NFL}}</ref>
Following a positive test for [[COVID-19]], na dem place Rodgers on de COVID-19 reserve list on November 3.<ref>{{Cite web |date=November 3, 2021 |title=Packers place QB Aaron Rodgers on reserve/COVID-19 list |url=https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211107032353/https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |archive-date=November 7, 2021 |access-date=November 15, 2021 |website=Packers.com}}</ref> He miss 10 days per de league ein COVID-19 policies for unvaccinated players, wey dey include a game against de Chiefs.<ref>{{Cite web |last=Shook |first=Nick |date=November 3, 2021 |title=Packers QB Aaron Rodgers tests positive for COVID-19, will not play in Week 9 versus Chiefs |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |url-status=live |archive-url=https://web.archive.org/web/20211103152721/https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |archive-date=November 3, 2021 |access-date=November 3, 2021 |publisher=National Football League}}</ref> Despite answering "''Yeah, I'm immunized''" wen dem biz am during de preseason if na he be vaccinated against COVID-19, na he no actually receive a vaccination. Instead, he receive homeopathic treatment from ein personal doctor. While unvaccinated, he commit multiple violations of NFL COVID-19 protocols for unvaccinated players, wey dey include attending parties plus teammates while he no dey use PPE den dey appear unmasked at multiple postgame press conferences.<ref>{{Cite news|last=Jenkins|first=Sally|date=November 4, 2021|title=Aaron Rodgers is entitled to stay unvaccinated. He's not entitled to lie about it|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211105053620/https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|archive-date=November 5, 2021}}</ref><ref>{{Cite web |last=Shpigel |first=Ben |date=November 3, 2021 |title=Aaron Rodgers Out After Positive Coronavirus Test |url=https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |url-status=live |archive-url=https://web.archive.org/web/20211105230713/https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |archive-date=November 5, 2021 |access-date=November 6, 2021 |website=[[The New York Times]]}}</ref><ref>{{Cite news|last=Maske|first=Mark|date=November 3, 2021|title=Aaron Rodgers tests positive for coronavirus, is considered unvaccinated under NFL rules|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211103182339/https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|archive-date=November 3, 2021}}</ref><ref name="Paras">{{Cite web |last=Paras |first=Matthew |date=November 8, 2021 |title=State Farm backs Rodgers despite vaccine controversy |url=https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |url-status=live |archive-url=https://web.archive.org/web/20211110054603/https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=The Washington Times |language=en-US}}</ref><ref>{{Cite web |last=Florio |first=Mike |date=November 6, 2021 |title=Aaron Rodgers consulted with Joe Rogan, has taken Ivermectin |url=https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |url-status=live |archive-url=https://web.archive.org/web/20211110054606/https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=ProFootballTalk |language=en-US}}</ref> After a review, na dem fine am $14,650 for violations of de agreed protocols wey na ein team be fined $300,000.<ref name="demosky1">{{Cite web |last=Demovsky |first=Rob |date=November 10, 2021 |title=Green Bay Packers, Aaron Rodgers, Allen Lazard fined for COVID-19 protocol violations, source says |url=https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |url-status=live |archive-url=https://web.archive.org/web/20220417022230/https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |archive-date=April 17, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]]}}</ref><ref name="gordon1">{{Cite web |last=Gordon |first=Grant |date=November 9, 2021 |title=Packers fined $300K, Aaron Rodgers, Allen Lazard fined $14K for violation of COVID protocols |url=https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |url-status=live |archive-url=https://web.archive.org/web/20220415084129/https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |archive-date=April 15, 2022 |access-date=January 23, 2022 |publisher=National Football League}}</ref>
Na Rodgers be activated off de reserve/COVID-19 list on November 13, wey he return to play de next day against de Seahawks, a game de Packers win 17–0.<ref>{{Cite web |date=November 13, 2021 |title=Packers activate QB Aaron Rodgers off reserve/COVID-19 list |url=https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211113210134/https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |archive-date=November 13, 2021 |access-date=November 13, 2021 |website=Packers.com}}</ref> Insyd Week 15, Rodgers throw for 268 yards den three touchdowns insyd a 31–30 win over de Ravens, wich clinch de NFC North title give de Packers for a third consecutive season wey e earn am NFC Offensive Player of de Week honors.<ref>{{Cite web |last=Gordon |first=Grant |date=December 22, 2021 |title=Packers QB Aaron Rodgers, Chiefs TE Travis Kelce lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |url-status=live |archive-url=https://web.archive.org/web/20220113012121/https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |archive-date=January 13, 2022 |access-date=January 17, 2022 |publisher=National Football League}}</ref> On December 23, 2021, na dem name Rodgers to ein tenth Pro Bowl.<ref>{{Cite web |date=December 22, 2021 |title=2022 NFL Pro Bowl rosters for AFC, NFC: Bucs' Tom Brady gets record 15th selection |url=https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |url-status=live |archive-url=https://web.archive.org/web/20211228200849/https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |archive-date=December 28, 2021 |access-date=December 24, 2021 |website=[[ESPN.com]]}}</ref>
Insyd a Week 16 victory over de Browns, Rodgers throw ein 443rd career touchdown pass, passing Brett Favre for de most all-time career touchdown passes insyd Packers history.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 25, 2021 |title=Rodgers tops Favre's Pack record for TD passes |url=https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |url-status=live |archive-url=https://web.archive.org/web/20211227221346/https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |archive-date=December 27, 2021 |access-date=January 17, 2022 |website=[[ESPN.com]] |language=en}}</ref> For ein play insyd de month of December, Rodgers earn NFC Offensive Player of de Month honors.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=December 30, 2021 |title=For 10th time, Packers QB Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20220104191144/https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month#:~:text=GREEN%2520BAY%2520%25E2%2580%2593%2520Following%2520a%2520dominant,10th%2520time%2520in%2520his%2520career |archive-date=January 4, 2022 |access-date=January 17, 2022 |website=Packers.com |language=en-US}}</ref> He fini de 2021 season plus 4,115 passing yards, 37 touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2021 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2021/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> On January 14, 2022, Rodgers earn ein fourth career first-team All-Pro selection.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=January 14, 2022 |title=Three Packers players named first-team All-Pro |url=https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |url-status=live |archive-url=https://web.archive.org/web/20220116105423/https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |archive-date=January 16, 2022 |access-date=January 14, 2022 |website=packers.com}}</ref>
Insyd de Divisional Round against de 49ers, Rodgers throw for 225 yards, buh a poor performance by de special teams unit haunt de Packers, dem loose 13–10. Na e be Rodgers ein fourth loss insyd as many games to de 49ers insyd de postseason den Rodgers ein second home divisional loss.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> He sanso fail to notice a wide–open Allen Lazard (den [[Equanimeous St. Brown]]) on ein last throw of de game, instead targeting Davante Adams insyd double coverage for a Hail Mary attempt.<ref>{{Cite web |last=Farrar |first=Doug |title=What Aaron Rodgers missed on the play that could have saved the Packers' season |url=https://touchdownwire.usatoday.com/story/sports/nfl/touchdown/2022/01/23/aaron-rodgers-davante-adams-allen-lazard-2021-nfl-playoffs/80662791007/ |access-date=2026-08-06 |website=Touchdown Wire |language=en-US}}</ref> After de season, Rodgers win de AP NFL Most Valuable Player Award for de second consecutive season den de fourth time overall.<ref>{{Cite web |last=Shook |first=Nick |date=February 10, 2022 |title=Packers QB Aaron Rodgers named 2021 AP NFL MVP |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20220425153314/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |archive-date=April 25, 2022 |access-date=February 11, 2022 |publisher=National Football League}}</ref> Rodgers cam be de fifth player to win consecutive MVPs den first since Peyton Manning between 2008 den 2009.<ref>{{Cite web |last=Sutelan |first=Edward |date=February 10, 2022 |title=NFL MVP back-to-back winners: Aaron Rodgers set to join rare company in NFL history |url=https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |url-status=live |archive-url=https://web.archive.org/web/20220413074439/https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |archive-date=April 13, 2022 |access-date=February 20, 2022 |website=sportingnews.com |language=en}}</ref> Rodgers join Manning as de only players insyd NFL history to win at least four MVPs.<ref>{{Cite web |last=Spofford |first=Mike |date=February 10, 2022 |title=Packers QB Aaron Rodgers wins fourth NFL MVP award |url=https://www.packers.com/news/packers-qb-aaron-rodgers-wins-fourth-nfl-mvp-award |access-date=January 19, 2023 |website=packers.com |language=en-US}}</ref> Na dem rank am third by ein fellow players on de ''NFL Top 100'' Players of 2022.<ref>{{Cite web |title=2022 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2022-nfl-top-100.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2022 ====
[[File:Aaron_Rodgers_OCT2022_(cropped).jpg|thumb|Rodgers insyd 2022]]
[[File:Aaron_Rodgers_Packers_vs_Commanders_OCT2022.jpg|left|thumb|Rodgers dey play against de Washington Commanders insyd 2022]]
On March 8, Rodgers confirm say he go return den play give de Packers for de 2022 season after speculations dat Rodgers go fi retire anaa demand a trade to anoda team.<ref>{{Cite web |last=Demovsky |first=Rob |date=March 8, 2021 |title=QB Aaron Rodgers returning to play for Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220411070329/https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |archive-date=April 11, 2022 |access-date=March 9, 2021 |website=[[ESPN.com]]}}</ref> Na der be reports say Rodgers den de Packers agree to terms on a 4-year, $200 million contract extension wey go make am de highest-paid player insyd NFL history, buh Rodgers deny those reports on Twitter, wey he state say de numbers on de proposed contract be inaccurate, den dat he be yet to sign such a contract. He confirm, however, say he go return to play ein 18th NFL season plus de Packers.<ref>{{Cite web |date=March 15, 2022 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |url-status=live |archive-url=https://web.archive.org/web/20220404205504/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |archive-date=April 4, 2022 |access-date=April 27, 2022 |website=Packers.com}}</ref>
On March 16, he officially sign ein contract extension. Na de final terms of de contract be a 3-year contract (wich replace de final year of ein existing contract) worth $150.8 million, plus $101.5 million guaranteed. De new contract make am de highest paid player insyd North American sports history on an annual basis, surpassing de NBA ein [[Damian Lillard]] ein $49 million per annum contract.<ref>{{Cite web |last=Roscher |first=Liz |date=March 15, 2022 |title=Aaron Rodgers' Packers contract is reportedly official, and the numbers are staggering |url=https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |url-status=live |archive-url=https://web.archive.org/web/20220427025539/https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |archive-date=April 27, 2022 |access-date=March 17, 2022 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd de season opener against de Vikings, Rodgers throw for 195 yards den an interception insyd de 23–7 loss.<ref>{{Cite web |last=Demovsky |first=Rob |date=September 12, 2022 |title=Following loss to Minnesota Vikings, QB Aaron Rodgers says Green Bay Packers 'hurting ourselves' with 'too many mental mistakes' |url=https://www.espn.com/nfl/story/_/id/34575984/following-loss-minnesota-vikings-qb-aaron-rodgers-says-green-bay-packers-hurting-ourselves-too-many-mental-mistakes |access-date=September 12, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{cite web |last=Huber |first=Bill |date=September 12, 2022 |title=Mental Mistakes Frustrate Rodgers in Packers' Loss at Vikings |url=https://www.si.com/nfl/packers/gameday/mental-mistakes-frustrate-rodgers-in-packers-loss-at-vikings |access-date=July 1, 2025 |website=SI.com}}</ref> Insyd Week 4 against de Patriots, Rodgers throw for 251 yards den two touchdowns, buh he sanso throw ein fourth career pick-six to [[Jack Jones (American football)|Jack Jones]] insyd de 27–24 overtime win.<ref>{{Cite web |last=Patra |first=Kevin |date=October 3, 2022 |title=Aaron Rodgers on Packers' OT win over Patriots: 'This way of winning, I don't think, is sustainable' |url=https://www.nfl.com/news/aaron-rodgers-packers-patriots-this-way-of-winning-not-sustainable |access-date=October 13, 2022 |publisher=National Football League}}</ref> Insyd Week 5 at London, Rodgers throw for 222 yards den two touchdowns insyd an upset loss against de Giants.<ref>{{Cite news|last=Larrison|first=Ryan|date=October 9, 2022|title=Aaron Rodgers threw two touchdowns in a loss at London|url=https://www.rotoballer.com/player-news/aaron-rodgers-throws-two-touchdowns-during-loss-in-london/1079701|access-date=October 10, 2022|website=rotoballer.com}}</ref> Insyd Week 8 against de Buffalo Bills on Sunday Night Football, Rodgers throw for 203 yards, two touchdowns den one interception as de Packers loose dema fourth consecutive game insyd de 27–17 defeat.<ref>{{Cite web |last=Patra |first=Kevin |date=October 31, 2022 |title=Aaron Rodgers on the Packers' 3–5 start |url=https://www.nfl.com/news/aaron-rodgers-packers-3-5-start-nobody-feels-sorry-for-us-bills |access-date=November 5, 2022 |publisher=National Football League |language=en-US}}</ref> De next week against de Lions, Rodgers throw for 291 yards, a touchdown, den three interceptions insyd de 15–9 loss. Na e be de first time since Week 15 of de 2017 season wey Rodgers throw three interceptions insyd a game.<ref>{{Cite web |date=November 6, 2022 |title=Aaron Rodgers throws 3 INTs, lets Lions beat Packers 15–9 |url=https://www.cbssports.com/nfl/news/aaron-rodgers-throws-3-ints-lets-lions-beat-packers-15-9/ |access-date=November 6, 2022 |website=CBSSports.com |language=en |agency=Associated Press}}</ref> Rodgers bounce back de following week against de Cowboys, completing 14-of-20 passes for 224 yards den three touchdowns insyd 31–28 overtime victory.<ref>{{Cite web |last=Bubel |first=Jennifer |date=November 13, 2022 |title=Dallas Cowboys vs. Green Bay Packers: Stats, Scores, Highlights |url=https://en.as.com/nfl/dallas-cowboys-vs-green-bay-packers-live-online-stats-scores-and-highlights-nfl-week-10-n/ |access-date=November 15, 2022 |website=AS USA |language=en-us}}</ref><ref>{{Cite web |date=November 13, 2022 |title=Rodgers rallies Packers past McCarthy's Cowboys 31–28 in OT |url=https://www.espn.com/nfl/recap/_/gameId/401437131 |access-date=November 15, 2022 |website=[[ESPN.com]] |language=en-us |agency=Associated Press}}</ref> Following a Week 11 loss to de Titans, Rodgers confirm na he dey play plus a broken thumb on ein throwing hand he suffer insyd Week 5.<ref>{{Cite web |last=Alper |first=Josh |date=November 23, 2022 |title=Aaron Rodgers says he's been playing with a broken thumb |url=https://profootballtalk.nbcsports.com/2022/11/23/aaron-rodgers-says-hes-been-playing-with-a-broken-thumb/ |access-date=December 2, 2022 |website=ProFootballTalk |language=en-US}}</ref><ref>{{Cite web |last=Thompson |first=Scott |date=November 23, 2022 |title=Packers' Aaron Rodgers admits playing through broken thumb since Week 5 |url=https://www.foxnews.com/sports/packers-aaron-rodgers-admits-playing-through-broken-thumb-since-week-5 |access-date=November 24, 2022 |publisher=Fox News}}</ref> A Week 12 loss to de Eagles lef de Packers plus a 4–8 record, buh na de team rally off four consecutive wins to get to 8–8 before de regular season finale.<ref>{{Cite web |title=Green Bay Packers 2022 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2022/gamelog/ |access-date=January 20, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> De Packers fini plus an 8–9 record wey he miss de postseason following a Week 18 loss to de Detroit Lions insyd a win-and-in scenario for Green Bay.<ref>{{Cite web |title=2022 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2022/index.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |date=January 9, 2023 |title=How the Lions beat the Packers: Detroit eliminates rival Green Bay from playoff contention, Seahawks clinch final spot |url=https://www.nytimes.com/athletic/live-blogs/lions-packers-playoff-picture-seeding/Vj6r382oO6N1/ |access-date=January 20, 2023 |website=The Athletic |language=en}}</ref> After de game, Rodgers put ein arm around long-time teammate Cobb, wey he look solemnly around Lambeau Field before de two walked down de tunnel togeda. Sam suspected say dis indicate say Rodgers play ein last game give de Packers.<ref>{{Cite web |last=McKenna |first=Henry |date=January 9, 2023 |title=Has Packers legend Aaron Rodgers walked off Lambeau Field for the last time? |url=https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |url-status=live |archive-url=https://web.archive.org/web/20230109203158/https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |archive-date=January 9, 2023 |access-date=April 5, 2026 |website=[[Fox Sports]] |publisher=[[Fox Corporation]]}}</ref>
Rodgers fini de 2022 season plus 3,695 passing yards, 26 touchdowns, den 12 interceptions, wich mark de most for Rodgers insyd a single season since 2008.<ref>{{Cite web |title=Aaron Rodgers 2022 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2022/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |last=Kruse |first=Zach |date=January 9, 2023 |title=Aaron Rodgers throws interception on final pass of disappointing 2022 season |url=https://news.yahoo.com/aaron-rodgers-throws-interception-final-144926791.html |access-date=January 19, 2023 |publisher=Yahoo! News |language=en-US}}</ref> Na dem rank am 51st by ein fellow players on de ''NFL Top 100'' Players of 2023.<ref>{{Cite web |title=2023 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2023-nfl-top-100.htm |access-date=January 20, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
=== New York Jets ===
==== 2023: Achilles injury ====
[[File:Rodgers_vs_Bills_2.jpg|right|thumb|Rodgers (white, #8) dey take a snap against de Bills, shortly before ein injury.]]
On April 26, 2023, Rodgers be traded to de Jets, along plus de Packers dema first den fifth-round selections insyd de 2023 NFL draft, in exchange for de Jets dema first, second (via Cleveland) den sixth-round selections insyd de 2023 draft den a conditional second-round selection (wich na go convert to a first if Rodgers play 65% of de offensive snaps insyd 2023, buh na e it no happen) insyd de 2024 NFL draft.<ref>{{Cite web |last=Allen |first=Eric |date=April 26, 2023 |title=OFFICIAL Jets Acquire QB Aaron Rodgers From Green Bay Packers |url=https://www.newyorkjets.com/news/jets-acquire-qb-aaron-rodgers-from-green-bay-packers |access-date=July 28, 2023 |website=NewYorkJets.com}}</ref> De move echo de career path of ein predecessor Brett Favre, wey similarly spend over fifteen years as quarterback of de Packers before he be traded to de Jets.<ref>{{Cite web |last=Kerr |first=Jeff |date=April 24, 2023 |title=Aaron Rodgers traded to Jets: Ex-Packers QB taking eerily similar path as Brett Favre in journey to New York |url=https://www.cbssports.com/nfl/news/aaron-rodgers-traded-to-jets-ex-packers-qb-taking-eerily-similar-path-as-brett-favre-in-journey-to-new-york/ |access-date=May 1, 2023 |website=CBS Sports}}</ref> Although [[Joe Namath]] grant Rodgers permission to wear ein retired No. 12 jersey, Rodgers announce say he go return to wearing de No. 8 jersey, wich na he wear thru out ein college career plus de California Golden Bears.<ref>{{Cite web |last=Riccette |first=Billy |date=April 26, 2023 |title=Aaron Rodgers on number change: 'To me, No. 12 is Broadway Joe' |url=https://sports.yahoo.com/aaron-rodgers-number-change-no-185505111.html |access-date=July 19, 2023 |website=Yahoo! Sports}}</ref> On July 26, 2023, Rodgers take a pay cut wey he agree to a rework contract plus de Jets.<ref>{{cite web |last1=Cimini |first1=Rich |date=July 26, 2023 |title=Aaron Rodgers signs reworked contract with Jets |url=https://www.espn.com/nfl/story/_/id/38075863/aaron-rodgers-agrees-reworked-contract-jets |access-date=July 26, 2023 |website=[[ESPN.com]]}}</ref>
Making ein Jets debut insyd Week 1 on ''Monday Night Football'' against de Bills at MetLife Stadium, Rodgers injure ein left ankle on just ein fourth offensive snap after he be sacked by Bills dema defensive end [[Leonard Floyd]]. Na dem help Rodgers off de field wey dem later cart am to de locker room for further evaluation.<ref>{{Cite web |last=Cimini |first=Rich |date=September 12, 2023 |title=Jets fear QB Aaron Rodgers suffered serious Achilles injury |url=https://www.espn.com/nfl/story/_/id/38381823/qb-aaron-rodgers-injures-ankle-opening-drive-new-york-jets-debut |access-date=September 12, 2023 |website=[[ESPN.com]] |language=en}}</ref> Rodgers ein backup [[Zach Wilson]] go on to lead de Jets to a 22–16 win insyd overtime.<ref>{{Cite web |last=Kownack |first=Bobby |date=September 11, 2023 |title=Jets QB Aaron Rodgers exits Monday's overtime win against Bills on first drive; ankle X-rays negative |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-ankle-questionable-to-return-to-monday-s-game-against-bill |access-date=September 12, 2023 |website=NFL.com |language=en-US}}</ref> De next day, na dem diagnose Rodgers plus an Achilles tendon rupture wey na dem later place am on injured reserve.<ref>{{Cite web |last=Dajani |first=Jordan |date=September 12, 2023 |title=Aaron Rodgers injury update: MRI reveals Jets QB suffered a complete tear of Achilles tendon |url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-update-mri-reveals-jets-qb-suffered-a-complete-tear-of-achilles-tendon/ |access-date=September 12, 2023 |website=CBS Sports |language=en}}</ref><ref>{{Cite web |last=Sullivan |first=Phil |date=September 12, 2023 |title=Jets Place Aaron Rodgers on Injured Reserve; Saleh Commits To Zach Wilson |url=https://www.jetnation.com/2023/09/13/jets-place-aaron-rodgers-on-injured-reserve-saleh-commits-to-zach-wilson/ |access-date=September 14, 2023 |website=JetNation.com}}</ref> Rodgers undergo surgery on September 13, plus Dr. [[Neal ElAttrache]] placing an internal brace insyd ein left Achilles plus de goal of a mid-January return at de earliest.<ref>{{Cite web |last1=Rapoport |first1=Ian |author-link1=Ian Rapoport |last2=Pelissero |first2=Tom |author-link2=Tom Pelissero |date=September 16, 2023 |title=Jets QB Aaron Rodgers aims for potential playoff return after innovative surgery on torn Achilles |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-aims-for-potential-playoff-return-after-innovative-surgery |access-date=September 17, 2023 |website=NFL.com}}</ref> On November 29, de New York Jets open de 21-day practice window for Rodgers. Limited insyd practice, na Rodgers be cleared for functional activity buh no contact.<ref>{{Cite web |last=Patra |first=Kevin |date=November 29, 2023 |title=Jets opening QB Aaron Rodgers' 21-day practice window |url=https://www.nfl.com/news/jets-opening-qb-aaron-rodgers-21-day-practice-window |access-date=November 30, 2023 |website=NFL.com |language=en-US}}</ref> He be activated off injured reserve on December 20, buh de Jets announce he no go san play dis season after dema Week 15 loss to de Dolphins dem mathematically eliminate dem from playoff contention.<ref>{{Cite web |last=Shook |first=Nick |date=December 20, 2023 |title=Jets to activate Aaron Rodgers off IR to allow QB to continue to practice with team |url=https://www.nfl.com/news/jets-to-activate-aaron-rodgers-off-ir-to-allow-qb-to-continue-to-practice-with-t |access-date=December 20, 2023 |website=NFL.com}}</ref><ref>{{cite web |last=Reyes |first=Lorenzo |date=December 20, 2023 |title=Aaron Rodgers' season is over, so why are the Jets activating him? |url=https://www.usatoday.com/story/sports/nfl/jets/2023/12/20/aaron-rodgers-comeback-jets-shut-down-achilles-tear/71825680007/ |access-date=July 24, 2024 |website=USA TODAY}}</ref> Despite missing most of de season, he be ranked 92nd by ein fellow players on de NFL Top 100 Players of 2024.<ref>{{cite web |last=Hetherington |first=Krissy |date=July 23, 2024 |title=Top 100 Players of 2024, Nos. 100–91: Aaron Rodgers falls to lowest ranking in his career |url=https://www.nfl.com/news/top-100-players-of-2024-nos-100-91-aaron-rodgers-trevor-lawrence |access-date=July 6, 2025 |website=NFL.com}}</ref>
==== 2024 ====
[[File:Aaron_Rodgers_Jets_vs_Titans_SEPT2024.png|thumb|Rodgers dey play against de Tennessee Titans at Nissan Stadium insyd 2024]]
After playing just four offensive snaps insyd ein first season plus de Jets secof an Achilles injury, Rodgers make ein return on ''Monday Night Football'' insyd Week 1 to kick off de 2024 campaign. Insyd ein highly anticipated return, Rodgers plete 13 of 21 passes for 167 yards, one touchdown den one interception insyd a 32–19 loss to de defending NFC champion San Francisco 49ers.<ref>{{Cite web |last=Patra |first=Kevin |date=September 9, 2024 |title=Aaron Rodgers on Jets' loss to 49ers: 'I can play better' |url=https://www.nfl.com/news/aaron-rodgers-on-jets-loss-to-49ers-i-can-play-better |access-date=September 10, 2024 |website=[[NFL.com]] |language=en}}</ref> Insyd de Jets dema home opener against de New England Patriots, Rodgers plete 27 of 35 passes for 281 yards den two touchdowns as de Jets cruise to a 24–3 victory.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=September 19, 2024 |title='Thursday Night Football' highlights: Aaron Rodgers, Jets dominate Patriots |url=https://www.nbcnews.com/news/sports/live-blog/patriots-vs-jets-live-updates-jacoby-brissett-takes-aaron-rodgers-new-rcna171577 |access-date=September 22, 2024 |website=NBC News}}</ref> Insyd Week 5 insyd London, Rodgers cam be de ninth quarterback insyd NFL history to reach 60,000 passing yards buh he tie ein career-high plus three interceptions, wey dey include a game-sealing pick plus under a minute left as de Jets loose 23–17 to de Vikings.<ref>{{Cite web |last=Cimini |first=Rich |date=October 6, 2024 |title=Aaron Rodgers 9th QB to pass for 60K yards, but 3 INTs doom Jets |url=https://www.espn.com/nfl/story/_/id/41642251/jets-aaron-rodgers-becomes-9th-qb-pass-60000-yards |access-date=October 6, 2024 |website=ESPN.com}}</ref> Jets head coach [[Robert Saleh]] unexpectedly be fired after de London loss, plus sam analysts dey perceive say na he no get along plus Rodgers.<ref>{{Cite web |last1=Li |first1=David K. |last2=Abdelkader |first2=Rima |date=October 8, 2024 |title=New York Jets fire coach Robert Saleh after 2–3 start and apparent tension with Aaron Rodgers |url=https://www.nbcnews.com/sports/nfl/jets-robert-saleh-fired-rcna174473 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref> Wen dem biz am about am on ''The Pat McAfee Show'', de quarterback firmly deny accusations say he get a role insyd Saleh ein termination.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=October 9, 2024 |title=Aaron Rodgers on accusations he wanted Jets coach Robert Saleh fired: 'Patently false' |url=https://www.nbcnews.com/sports/nfl/aaron-rodgers-robert-saleh-fired-rcna174701 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref>
Insyd Week 6, de Jets dema first game after Saleh ein termination, Rodgers throw for 294 yards den two touchdowns, wey dey include a 52-yard Hail Mary pass to [[Allen Lazard]] to close out de first half, ein fourth career such pass completion.<ref>{{Cite news|last=Waszak Jr.|first=Dennis|date=October 14, 2024|title=Jets' Aaron Rodgers throws a 52-yard Hail Mary to Allen Lazard to end the first half vs. Bills|url=https://apnews.com/article/jets-rodgers-hail-mary-lazard-49f7dbe5569749c60e9878cc7ea5d606|access-date=October 20, 2024|work=AP News}}</ref> However, anoda interception on de Jets dema final drive doomed dem as dem loose 23–20 to de Buffalo Bills.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=After 'weird' week, Rodgers and Jets can't overcome mistakes and missed chances in loss to Bills|url=https://apnews.com/article/jets-bills-rodgers-ulbrich-0a14afca36a55c2cbb0f9aa35c3a7855|access-date=October 15, 2024|work=AP News|date=October 14, 2024}}</ref> Following de loss, se Jets trade for [[Davante Adams]], plus whom Rodgers previously combine for over 600 receptions den 68 touchdowns during dema eight seasons togeda insyd Green Bay.<ref>{{Cite news|last1=Cimini|first1=Rich|last2=Fowler|first2=Jeremy|last3=Walder|first3=Seth|last4=Reid|first4=Jordan|last5=Gutierrez|first5=Paul|last6=Karabell|first6=Eric|date=October 15, 2024|title=How Davante Adams affects the Jets, Aaron Rodgers' playoff hopes|url=https://www.espn.com/nfl/story/_/id/41809450/new-york-jets-future-davante-adams-trade-las-vegas-raiders|access-date=October 15, 2024|work=ESPN}}</ref> However, de Jets continue to struggle, as Rodgers throw two interceptions wey he lead de offense to zero points insyd de second half of dema Week 7 matchup against de Steelers, losing dema fourth consecutive game.<ref>{{cite news|last=Cimini|first=Rich|title=Aaron Rodgers, Davante Adams reunion fails to spark Jets|url=https://www.espn.com/nfl/story/_/id/41917779/aaron-rodgers-davante-adams-reunion-fails-spark-jets-drop-4th-straight-vs-steelers|access-date=October 21, 2024|work=ESPN|date=October 21, 2024}}</ref> After a loss to de Patriots, Rodgers help de Jets snap dema five-game losing streak insyd Week 9 against de Houston Texans, throwing for 179 yards den three touchdowns insyd de second half after he be shutout insyd de first half as de Jets win 21–13.<ref>{{cite news|last=Fried|first=Justin|title=Aaron Rodgers saves NY Jets' season with vintage performance amidst fan revolt|url=https://thejetpress.com/aaron-rodgers-saves-ny-jets-season-vintage-performance-fan-revolt-01jbjvhkx6k7|access-date=October 31, 2024|work=The Jet Press|date=October 31, 2024}}</ref>
Insyd Week 11 against de Colts, Rodgers throw two touchdowns wey he lead de Jets to a season-high insyd points, buh na dem fall short insyd a 28–27 loss, dropping to 3–7.<ref>{{Cite web |last=Miller |first=Colin |date=November 19, 2024 |title=Jets' Aaron Rodgers Not a Fan of Reporter's 'Buzzword' After Another Loss |url=https://athlonsports.com/nfl/new-york-jets-aaron-rodgers-familiar-response-loss-indianapolis-colts-recap-shock-buzz-word |access-date=November 26, 2024 |website=Athlon Sports |language=en}}</ref> During dema bye week, na dem reveal say na Rodgers dey play thru hamstring, knee, den ankle injuries buh na he refuse to get scans done in fear of how severe dem go be.<ref>{{Cite web |last=McCarriston |first=Shanna |date=November 24, 2024 |title=Jets' Aaron Rodgers played through multiple injuries this season, resisted getting scans, per report |url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-played-through-multiple-injuries-this-season-resisted-getting-scans-per-report/ |access-date=November 26, 2024 |website=CBSSports.com |language=en}}</ref> Despite dis, he remain de starter following de bye week.<ref>{{cite news|last=Cimini|first=Rich|title=Jeff Ulbrich says Aaron Rodgers to remain Jets' starting QB|url=https://www.espn.com/nfl/story/_/id/42738131/jeff-ulbrich-says-aaron-rodgers-remain-jets-starting-qb|access-date=December 9, 2024|work=ESPN|date=December 2, 2024}}</ref> Entering Week 14, Rodgers hold an NFL-record 34-game drought widout a 300-yard passing performance, wich he break on December 8 against de Dolphins.<ref>{{cite news|last=Benjamin|first=Cody|title=Jets' Aaron Rodgers halts historic drought of 300-yard passing games in Week 14 loss to Dolphins|url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-halts-historic-drought-of-300-yard-passing-games-in-week-14-loss-to-dolphins/|access-date=December 9, 2024|work=CBS Sports|date=December 8, 2024}}</ref> Despite recording ein first 300-yard game insyd three years, de Jets fall 32–26 insyd overtime, eliminating dem from playoff contention.<ref>{{cite news|last=Cimini|first=Rich|title=Jets collapse again, extend postseason drought to 14 seasons|url=https://www.espn.com/nfl/story/_/id/42862200/jets-collapse-again-extend-postseason-drought-14-seasons|access-date=December 9, 2024|work=ESPN|date=December 8, 2024}}</ref> On January 5, 2025, Rodgers plete ein 500th touchdown pass to [[Tyler Conklin]] at MetLife Stadium against de Dolphins, becoming de fifth quarterback insyd NFL history plus 500 touchdown passes.<ref>{{cite news|last=Cimini|first=Rich|title=Jets QB Aaron Rodgers joins prestigious 500 touchdown club|url=https://www.espn.com/nfl/story/_/id/43300286/jets-qb-aaron-rodgers-joins-prestigious-500-touchdown-club|access-date=January 5, 2025|work=ESPN|date=January 5, 2025}}</ref> He fini de final game of de season plus 274 yards, a season-high four touchdowns, den an interception as de Jets win 32–20, finishing plus a record of 5–12.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=Rodgers throws a season-high 4 touchdown passes in possible final game as Jets top Dolphins 32–20|url=https://apnews.com/article/dolphins-jets-score-rodgers-8013b4de0ea591a84d721f5c4dd17111|access-date=January 5, 2025|work=Associated Press|date=January 5, 2025}}</ref> He fini de 2024 season plus 3,897 yards, 28 touchdowns, den 11 interceptions.<ref>{{Cite web |title=Aaron Rodgers 2024 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2024/ |access-date=January 15, 2025 |website=[[Pro Football Reference]] |language=en}}</ref>
On February 13, 2025, na de Jets announce dema intention to part ways plus Rodgers after two seasons.<ref>{{Cite web |last=Allen |first=Eric |date=February 13, 2025 |title=Jets to move on from Aaron Rodgers |url=https://www.newyorkjets.com/news/jets-moving-on-from-aaron-rodgers |access-date=February 13, 2025 |website=NewYorkJets.com |language=en-US}}</ref> Na Rodgers be released as a post-June 1 designation, allowing de Jets to split ein salary cap charges ($49 million) over two years. De Jets therefore keep am on de roster til March 12, de start of de 2025 NFL year, wen na dem officially released am.<ref>{{cite web |last=Cimini |first=Rich |date=February 13, 2025 |title=Jets announce split with Aaron Rodgers, wish him success |url=https://www.espn.com/nfl/story/_/id/43826969/jets-announce-split-aaron-rodgers-wish-success |accessdate=February 25, 2025}}</ref>
=== Pittsburgh Steelers ===
[[File:McCormickRodgersFrazier.jpg|thumb|Rodgers (middle) at Steelers training camp insyd 2025]]
==== 2025 ====
On June 6, 2025, de Pittsburgh Steelers agree to terms plus Rodgers on a one-year deal.<ref>{{Cite web |last=Varley |first=Teresa |date=June 5, 2025 |title=Steelers agree to terms with Rodgers |url=https://www.steelers.com/news/steelers-agree-to-terms-with-rodgers |access-date=June 6, 2025 |website=Steelers.com |language=en-US}}</ref> De following day, he officially sign ein one-year, $13.65 million contract, wich dey include $10 million guaranteed wey fi be worth up to $19.5 million plus incentives.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Sources: QB Rodgers with Steelers, signs one-year, $13.65M deal|url=https://www.espn.com/nfl/story/_/id/45470407/sources-qb-rodgers-steelers-signs-one-year-1365m-deal|access-date=June 7, 2025|work=ESPN|date=June 7, 2025}}</ref> De team subsequently announce say Rodgers go continue to wear ein number 8 from Cal den de Jets, since ein number 12 plus de Packers unofficially be retired for [[Terry Bradshaw]]; neither de Steelers nor Bradshaw sign off on allowing Rodgers to wear number 12.<ref>{{cite web |last1=Goldstein |first1=Jeremy |date=June 7, 2025 |title=Aaron Rodgers suffers early Steelers setback thanks to Terry Bradshaw |url=https://www.themirror.com/sport/american-football/aaron-rodgers-terry-bradshaw-steelers-1194927 |website=[[Daily Mirror]]}}</ref>
Na Rodgers ein months-long courtship den subsequent signing be met plus mixed to negative reaction among Steeler fans as well as ex-Steelers Bradshaw den [[Ryan Clark (American football)|Ryan Clark]] secof ein polarizing attitude,<ref>{{cite web |last=Sayer |first=Ricky |date=June 5, 2025 |title=Aaron Rodgers signing brings mixed reactions from Steelers fans |url=https://www.cbsnews.com/pittsburgh/news/steelers-fans-aaron-rodgers-signing-reaction/ |access-date=June 10, 2025 |work=CBS News}}</ref><ref>{{cite web |last=Gamba-Ellis |first=Thomas |date=June 6, 2025 |title=Aaron Rodgers signing is 'worst-case scenario' for Steelers: Ryan Clark |url=https://nypost.com/2025/06/06/sports/aaron-rodgers-signing-is-worst-case-scenario-for-the-steelers-ryan-clark/ |access-date=June 10, 2025 |work=New York Post}}</ref><ref>{{cite web |last=Baca |first=Michael |date=May 28, 2025 |title=Steelers legend Terry Bradshaw calls Pittsburgh's interest in QB Aaron Rodgers 'a joke' |url=https://www.nfl.com/news/steelers-legend-terry-bradshaw-calls-pittsburgh-interest-aaron-rodgers-a-joke |access-date=September 25, 2025 |website=NFL.com}}</ref> wey sam fans feeling like he no fit Western Pennsylvania dema traditional blue collar base.<ref>{{cite web |last1=Cioppa |first1=Jordan |date=June 5, 2025 |title=Steelers fans react to Aaron Rodgers coming to Pittsburgh |url=https://www.wtae.com/article/steelers-fans-reaction-aaron-rodgers-pittsburgh-quarterback/64985539 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> Sam speculate say Rodgers fi be swayed to sign plus de Steelers by ein friendship plus former Indianapolis Colts punter den Pittsburgh-area native [[Pat McAfee]].<ref>{{cite web |last1=Ciampi |first1=Raquel |date=April 17, 2025 |title=Aaron Rodgers talks sneaking into Pittsburgh for first visit with Steelers on McAfee Show |url=https://www.wtae.com/article/steelers-aaron-rodgers-mcafee-show/64514048 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> On June 23, 2025, Rodgers flow McAfee on ein show say he go likely retire after de 2025 season.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Steelers' Aaron Rodgers 'pretty sure' this will be final season|url=https://www.espn.com/nfl/story/_/id/45575766/steelers-aaron-rodgers-pretty-sure-final-season|access-date=June 29, 2025|work=ESPN|date=June 29, 2025}}</ref>
On September 7, Rodgers make ein Steelers debut against ein former team, de New York Jets. During ein first outing plus Pittsburgh, he plete 22 of 30 pass attempts for 244 yards den four touchdowns while committing no turnovers. De game end plus a 34–32 Steelers victory.<ref>{{cite web |last=Maaddi |first=Rob |date=September 9, 2025 |title=Aaron Rodgers showed he has plenty left to help the Steelers |url=https://sports.yahoo.com/article/aaron-rodgers-showed-plenty-left-191014645.html |access-date=September 25, 2025 |website=Yahoo! Sports}}</ref> Later dat month, Rodgers surpasse [[Brett Favre]], ein former Packers teammate, insyd career touchdown passes wen he throw a scoring pass to [[D.K. Metcalf]] insyd a win over de New England Patriots. Dis move Rodgers into fourth place for most career touchdown passes (509), only behind [[Peyton Manning]], [[Drew Brees]] den [[Tom Brady]].<ref name="u989">{{cite web |last=Gordon |first=Grant |date=September 21, 2025 |title=Aaron Rodgers moves past former teammate Brett Favre with 509th career touchdown pass |url=https://www.nfl.com/news/aaron-rodgers-moves-past-brett-favre-509-career-touchdown-pass |access-date=October 14, 2025 |website=NFL.com}}</ref>
During de second quarter of de Steelers dema Week 11 victory over de Cincinnati Bengals, Rodgers suffer a small fracture insyd ein left wrist.<ref>{{cite news|last=DeArdo|first=Bryan|url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-steelers-qb-hand-injury/|title=Aaron Rodgers has small fracture in wrist, Steelers QB reportedly pushing to play this week|website=[[CBSSports.com]]|publisher=[[CBS Sports]]|date=November 17, 2025|access-date=November 30, 2025}}</ref> De injury prevent am from playing de following game against de Bears, wich [[Mason Rudolph (American football)|Mason Rudolph]] start insyd ein place.<ref>{{cite news|last=Cohen|first=Jay|url=https://www.kare11.com/article/syndication/associatedpress/steelers-qb-aaron-rodgers-misses-game-against-bears-because-of-a-broken-left-wrist/616-e94370ae-9cda-4db9-891f-56092ba44dd1|title=With Aaron Rodgers sidelined, Mason Rudolph and the Steelers fall short in Chicago|agency=[[Associated Press|AP]]|publisher=[[KARE (TV)]]|date=November 23, 2025|access-date=November 30, 2025}}</ref> Rodgers return for Week 13 insyd Buffalo.<ref>{{cite news|last=Guise|first=Michael|url=https://www.cbsnews.com/pittsburgh/news/is-aaron-rodgers-playing-steelers-bills-nfl-news/|title=Is Aaron Rodgers playing against the Bills? Steelers give update on starting quarterback.|publisher=[[CBS News]]|date=November 28, 2025|access-date=November 30, 2025}}</ref>
Rodgers lead de Steelers to an AFC North title den a playoff berth following a Week 18 win over de Baltimore Ravens.<ref>{{Cite web |last=Pryor |first=Brooke |date=January 5, 2026 |title=Steelers take AFC North as Ravens FG sails wide |url=https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-url=https://web.archive.org/web/20260105045214/https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-date=January 5, 2026 |access-date=January 5, 2026 |website=ESPN.com |language=en}}</ref> He fini de 2025 season throwing for 3,322 yards, 24 touchdowns, den seven interceptions, den rushing for a touchdown.<ref>{{Cite web |title=Aaron Rodgers 2025 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2025/ |access-date=January 8, 2026 |website=Pro-Football-Reference.com |language=en}}</ref>
Insyd de Steelers dema playoff loss to de Houston Texans, Rodgers play poorly, completing 17 passes out of 33 attempts for 146 yards, getting sacked 4 times for 36 yards, den throwing a pick-six.<ref>{{cite news|last1=Heyen|first1=Billy|title=Texans defense made Steelers' Aaron Rodgers play the worst playoff game by a QB in a dozen years|url=https://sports.yahoo.com/articles/texans-defense-made-steelers-aaron-131529479.html?guccounter=1|access-date=January 13, 2026|work=Yahoo Sports|date=January 13, 2026}}</ref> Rodgers sanso fumble on one of de sacks, wich dem return for a Texans touchdown.<ref>{{cite news|last1=Brinkerhoff|first1=Nick|title=Aaron Rodgers crushed on strip-sack, leads to critical Texans score|url=https://www.usatoday.com/story/sports/nfl/playoffs/2026/01/12/aaron-rodgers-strip-sack-crushed-texans-packers/88153423007/|access-date=January 13, 2026|work=USA Today|date=January 12, 2026}}</ref>
==== 2026 ====
[[File:RodgersandMcCarthy.jpg|thumb|Rodgers plus [[Mike McCarthy]] during training camp insyd 2026]]
On May 16, 2026, Rodgers return to de Steelers for ein 22nd season, signing a one-year deal worth up to $25 million.<ref>{{Cite web |last=Pryor |first=Brooke |date=May 16, 2026 |title=Sources: Aaron Rodgers to sign 1-year deal with Steelers |url=https://www.espn.com/nfl/story/_/id/48791130/aaron-rodgers-sign-1-year-deal-steelers |access-date=May 16, 2026 |website=ESPN}}</ref> De signing reunite am plus head coach Mike McCarthy.<ref>{{Cite web |last=Middlehurst-Schwartz |first=Michael |date=May 16, 2026 |title=Aaron Rodgers to re-sign with Steelers, reunite with coach Mike McCarthy |url=https://www.usatoday.com/story/sports/nfl/steelers/2026/05/16/aaron-rodgers-contract-pittsburgh-steelers-mike-mccarthy/88698339007/ |access-date=May 16, 2026 |website=USA Today}}</ref> Rodgers later announce say de 2026 season go be ein final season insyd de NFL.<ref>{{Cite web |last=Ulrich |first=Logan |date=2026-05-20 |title=Aaron Rodgers Says 2026 Will Be His Final Season |url=https://nfltraderumors.co/aaron-rodgers-says-2026-will-be-his-final-season/ |access-date=2026-05-20 |website=NFLTradeRumors.co |language=en-US}}</ref>
== Touchdown celebration ==
Since becoming an NFL starter insyd 2008, Rodgers cam be known for ein unique touchdown celebration, wich he den ein teammates dub de "Championship Belt." After a scoring play, Rodgers dey celebrate by making a motion as if he dey put an invisible championship belt on around ein waist.<ref>{{Cite web |last=Sayler |first=Ryan |date=January 10, 2011 |title=The Evolution of Aaron Rodgers' Weird "Belt Dance" |url=http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120416003749/http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |archive-date=April 16, 2012 |access-date=May 10, 2012 |website=Real Fantasy}}</ref><ref>{{Cite web |date=January 16, 2011 |title=Aaron Rodgers | Championship Belt Celebration |url=http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |url-status=live |archive-url=https://web.archive.org/web/20120322064628/http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |archive-date=March 22, 2012 |access-date=May 10, 2012 |website=SportsGrid}}</ref> Teammate Greg Jennings say of de celebration: "''It's just something fun that he does. We get excited when we see it cause we know that he's made a play or we've made a play as offense."''<ref name="youtube1">{{Cite web |date=January 25, 2011 |title=Aaron Rodgers Championship Belt Special on ESPN |url=https://www.youtube.com/watch?v=mcwa2EvQ61Y |url-status=live |archive-url=https://web.archive.org/web/20111225110056/http://www.youtube.com/watch?v=mcwa2EvQ61Y |archive-date=December 25, 2011 |access-date=May 10, 2012 |publisher=ESPN |via=YouTube}}</ref> De gesture draw de praise of WWE wrestler Triple H wey e cam be common for Green Bay fans to mimic during games.<ref>{{Cite web |last=Anderson |first=Kyle |date=February 7, 2011 |title=Aaron Rodgers Wins Super Bowl MVP, Celebrates With Championship Belt |url=http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |url-status=dead |archive-url=https://web.archive.org/web/20191206042749/http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |archive-date=December 6, 2019 |access-date=December 6, 2019 |publisher=MTV}}</ref> Na he sanso celebrate by doing de shoryuken, a jumping uppercut move from de ''Street Fighter'' series.<ref>{{Cite web |last=Kunnath |first=Avinash |date=February 17, 2011 |title=Aaron Rodgers Best Touchdown Celebration: Championship Belt, Super Mario Jump, Or Shoryuken? |url=https://bayarea.sbnation.com/california-golden-bears/2011/2/17/1998750/aaron-rodgers-best-touchdown-celebration-championship-belt-super-mario-jump-shoryuken |access-date=January 19, 2023 |website=SB Nation Bay Area |language=en}}</ref>
== Alternative medicine advocacy ==
Rodgers be vocal about ein use of alternative medicine,<ref>{{Cite web |last=Mole |first=Beth |date=February 23, 2022 |title=Aaron Rodgers' go-to cleanse could involve oily enemas, bloodletting, vomiting |url=https://arstechnica.com/science/2022/02/everything-you-didnt-need-to-know-about-aaron-rodgers-oily-enema-cleanse/ |access-date=August 8, 2022 |website=[[Ars Technica]] |language=en}}</ref><ref>{{Cite web |last=McLaughlin |first=Kelly |date=November 3, 2021 |title=Aaron Rodgers reportedly petitioned the NFL to have an alternative treatment count as being vaccinated against COVID-19 |url=https://sports.yahoo.com/aaron-rodgers-reportedly-petitioned-nfl-163711629.html |access-date=August 8, 2022 |website=[[Yahoo! Sports]] |language=en}}</ref> wey he be a proponent of de legalization of psychedelic drugs.<ref>{{cite magazine|last=Chavkin|first=Daniel|date=June 23, 2023|title=Aaron Rodgers Touts Legalization of Psychedelics at Conference|url=https://www.si.com/extra-mustard/2023/06/23/new-york-jets-aaron-rodgers-touts-psychedelics-legalization|access-date=June 23, 2023|magazine=[[Sports Illustrated]]|language=en}}</ref> He reveal insyd 2022 say na he previously make offseason trips to Peru, wer he consume ayahuasca.<ref>{{Cite web |last=Demovsky |first=Rob |date=August 8, 2022 |title=NFL says Green Bay Packers QB Aaron Rodgers' use of ayahuasca didn't violate drug policy |url=https://www.espn.com/nfl/story/_/id/34371733/nfl-says-green-bay-packers-qb-aaron-rodgers-use-ayahuasca-violate-drug-policy |access-date=August 8, 2022 |website=[[ESPN.com]] |language=en |agency=[[Associated Press]]}}</ref>
=== Views on COVID-19 ===
Rodgers be one of de most prominent American athletes to choose he no go get vaccinated against de [[COVID-19]] virus,<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref> wey na he be critical of de NFL dema health den safety protocols during de COVID-19 pandemic.<ref>{{Cite web |last=Wood |first=Ryan |date=November 5, 2021 |title=Packers quarterback Aaron Rodgers blasts 'woke mob' over COVID-19 news on Pat McAfee show, rips NFL's 'draconian' protocols |url=https://www.jsonline.com/story/sports/nfl/packers/2021/11/05/packers-quarterback-aaron-rodgers-talks-covid-19-sounds-off-nfl-protocols/6280790001/ |access-date=January 5, 2024 |website=[[Milwaukee Journal Sentinel]] |language=en}}</ref> Ein stances on de COVID-19 vaccine be criticized by scientists, health officials, den sam former players den commentators, secof concerns say na Rodgers dey spread vaccine misinformation wey he dey potentially risk de health of ein teammates.<ref>{{Cite web |last1=Belson |first1=Ken |last2=Anthes |first2=Emily |date=November 8, 2021 |title=Scientists Fight a New Source of Vaccine Misinformation: Aaron Rodgers |url=https://www.nytimes.com/2021/11/08/sports/football/aaron-rodgers-vaccine.html |access-date=January 5, 2024 |work=[[The New York Times]] |language=en}}</ref>
During de NFL season, Rodgers frequently appear on ''The Pat McAfee Show''.<ref>{{Cite magazine|last=Hladik|first=Matt|date=January 26, 2021|title=Aaron Rodgers Explains Why He Appears on the Pat McAfee Show|url=https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|url-status=live|archive-url=https://web.archive.org/web/20210924043905/https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|archive-date=September 24, 2021|access-date=December 1, 2021|magazine=The Spun by [[Sports Illustrated]]}}</ref> One such interview insyd 2021 make headlines after Rodgers make several false den misleading statements about COVID-19,<ref name="Rosenberg">{{Cite magazine|last=Rosenberg|first=Michael|date=November 5, 2021|title=The Problem Is Aaron Rodgers Thinks He Has All the Answers|url=https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|url-status=live|archive-url=https://web.archive.org/web/20211108000052/https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|archive-date=November 8, 2021|access-date=November 8, 2021|magazine=[[Sports Illustrated]]|language=en-us}}</ref><ref>{{Cite news|last=Kornfield|first=Meryl|date=November 5, 2021|title=Aaron Rodgers said he did the research on covid vaccines. Here's how he was wrong, according to experts|url=https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|url-status=live|archive-url=https://web.archive.org/web/20211109160437/https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|archive-date=November 9, 2021|access-date=November 15, 2021|newspaper=[[The Washington Post]]}}</ref> wey dey imply say na unvaccinated people no be de group most affected by de pandemic den dat [[ivermectin]] be beneficial for people plus COVID-19.<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |last=Schad |first=Tom |date=November 5, 2021 |title=Fact check: 6 of Aaron Rodgers' false and misleading claims about COVID-19 vaccine |url=https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |url-status=live |archive-url=https://web.archive.org/web/20211108002751/https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=[[USA Today]] |language=en-US}}</ref><ref>{{Cite web |last=Sutelan |first=Edward |date=November 14, 2021 |title=Fact-checking Aaron Rodgers' bizarre COVID beliefs and 'woke mob' claim made on Pat McAfee Show |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |url-status=live |archive-url=https://web.archive.org/web/20211108035450/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=Sporting News |language=en}}</ref><ref>{{Cite web |last=Reinwald |first=Caroline |date=November 6, 2021 |title=Aaron Rodgers vaccine fact check: Doctor responds to quarterback's concerns |url=https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |url-status=live |archive-url=https://web.archive.org/web/20211108035459/https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |archive-date=November 8, 2021 |access-date=November 8, 2021 |publisher=[[WISN-TV]] |language=en}}</ref> Dese den similar claims lead sam reporters to describe Rodgers as a conspiracy theorist.<ref name="Rosenberg" /><ref>{{Cite web |last=Jones |first=Ja'han |date=November 9, 2021 |title=Aaron Rodgers should keep Martin Luther King Jr. out of his foolish Covid claims |url=https://www.msnbc.com/the-reidout/reidout-blog/aaron-rodgers-martin-luther-king-jr-covid-vaccine-rcna4872 |access-date=November 13, 2021 |publisher=MSNBC |language=en}}</ref>
== Political den social commentary ==
Rodgers voice support give [[Robert F. Kennedy Jr.]] den ein presidential campaign of 2024.<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref> Kennedy reportedly include Rodgers on ein "short list" of possible vice presidential running mates, along plus odas, wey dey include [[Jesse Ventura]] den [[Nicole Shanahan]].<ref name=":0">{{Cite news|last=O’Brien|first=Rebecca Davis|date=March 12, 2024|title=Aaron Rodgers and Jesse Ventura Top R.F.K. Jr.'s List for Running Mate|url=https://www.nytimes.com/2024/03/12/us/politics/rfk-jr-aaron-rodgers-jesse-ventura.html|access-date=March 13, 2024|work=The New York Times|language=en-US|issn=0362-4331}}</ref><ref name="OBrienMar172024">{{Cite news|last=O'Brien|first=Rebecca Davis|date=March 17, 2024|title=Nicole Shanahan Emerges as a Top Candidate to Be R.F.K. Jr.'s Running Mate|url=https://www.nytimes.com/2024/03/17/us/politics/nicole-shanahan-rfk-jr-running-mate.html|access-date=May 30, 2024|work=[[The New York Times]]}}</ref>
On [[Adam Breneman]] ein podcast insyd 2022, former Packers backup quarterback [[DeShone Kizer]] talk say Rodgers express interest insyd 9/11 conspiracy theories at one of de first meetings between de two quarterbacks. Kizer describe dema discussion of conspiracy theories as "a real thought experiment".<ref name="nypost-2022-11-29">{{cite news|last1=Hendricks|first1=Jaclyn|date=November 29, 2022|title=DeShone Kizer: Aaron Rodgers pressed me on 9/11 conspiracies|url=https://nypost.com/2022/11/29/deshone-kizer-aaron-rodgers-pressed-me-on-9-11-conspiracies/|access-date=January 8, 2023|work=[[The New York Post]]}}</ref><ref name="si-2022-11-29">{{cite magazine|last1=Salvador|first1=Joseph|date=November 29, 2022|title=Former Packers QB Says Aaron Rodgers Once Asked Him Whether He Believes in 9/11|url=https://www.si.com/nfl/2022/11/29/packers-deshone-kizer-aaron-rodgers-once-asked-him-if-he-believes-in-9-11-conspiracy-theories|access-date=January 8, 2022|magazine=[[Sports Illustrated]]|language=en-us}}</ref> Rodgers sanso promote de Tartarian architecture conspiracy theory.<ref name="tart">{{Cite web |last=Silverman |first=Robert |date=March 8, 2024 |title=Aaron Rodgers Dabbles in the 'QAnon of Architecture' |url=https://www.yahoo.com/entertainment/aaron-rodgers-dabbles-qanon-architecture-234934271.html |access-date=January 15, 2025 |website=Yahoo! Entertainment}}</ref>
Insyd a January 2024 appearance on ''The Pat McAfee Show'', Rodgers, widout evidence, imply say na comedian [[Jimmy Kimmel]] be an acquaintance of disgraced financier den sex offender [[Jeffrey Epstein]], den dat Kimmel ein name go possibly appear in soon to be released court documents listing Epstein ein associates.<ref>{{Cite web |last=Simonetti |first=Isabella |date=January 9, 2024 |title=ESPN's Pat McAfee Said He Doesn't 'Take Back Anything' After Skewering Colleague |url=https://www.wsj.com/business/media/pat-mcafee-show-espn-aaron-rodgers-ede1d63b |access-date=January 9, 2024 |website=WSJ |language=en-US}}</ref> Kimmel deny de allegations den threatened to sue Rodgers for defamation if he repeat de claim.<ref>{{Cite web |last=Kimmel |first=Jimmy |author-link=Jimmy Kimmel |date=January 2, 2024 |title=X Post |url=https://twitter.com/jimmykimmel/status/1742324477323833546 |access-date=January 9, 2024 |website=X}}</ref> Insyd a follow-up appearance on McAfee ein show de following week, Rodgers state say: "''I'm glad that Jimmy is not on the list. I really am. I don't think he's the P-word [pedophile]."''<ref>{{Cite web |last=France |first=Lisa |date=January 9, 2024 |title=Aaron Rodgers blames media in response to Jimmy Kimmel's comments about him |url=https://www.cnn.com/2024/01/09/entertainment/jimmy-kimmel-aaron-rodgers-monologue/index.html |access-date=January 9, 2024 |website=CNN |language=en}}</ref>
During a February 2024 appearance on de conspiracy-focused ''Look Into It'' podcast wey [[Eddie Bravo]] host, Rodgers espouse numerous conspiracy theories on medicine, immigration, den John F. Kennedy.<ref>{{Cite web |last=Keeley |first=Sean |date=March 14, 2024 |title=Here's all the dumb shit Aaron Rodgers recently said on a conspiracy theory podcast |url=https://awfulannouncing.com/nfl/aaron-rodgers-conspiracy-theory-podcast-tartaria-immigrants-trump-biden.html |access-date=April 17, 2024 |website=Awful Announcing |language=en}}</ref> Na ein claims include say na dem create [[HIV/AIDS|AIDS]] den COVID by de government for de sake of pharmaceutical industry profits (sanso spy discredited HIV/AIDS origins theories den Operation Denver).<ref>{{Cite web |last=Buzinski |first=Jim |date=April 17, 2024 |title=Aaron Rodgers says AIDS was created by the U.S. government in the 1980s |url=https://www.outsports.com/2024/4/17/24091797/aaron-rodgers-says-aids-was-created-by-the-u-s-government-in-the-1980s/ |access-date=April 17, 2024 |website=outsports.com |language=en}}</ref>
Insyd 2024, CNN reporter [[Pamela Brown (journalist)|Pamela Brown]] report say na Rodgers insyd 2013 share false conspiracy theories about de Sandy Hook massacre, wey dey claim say na de attack be an "inside job" perpetrated by de government. Na CNN simultaneously report an allegation by an anonymous source say na Rodgers for several years prior say "''Sandy Hook never happened....All those children never existed. They were all actors.''"<ref name="SandyHook1">{{Cite web |last1=Brown |first1=Pamela |last2=Tapper |first2=Jake |date=March 14, 2024 |title=RFK Jr.'s VP prospect Aaron Rodgers has shared false Sandy Hook conspiracy theories in private conversations |url=https://www.cnn.com/2024/03/13/politics/aaron-rodgers-sandy-hook-conspiracy-theories/index.html |access-date=March 17, 2024 |website=CNN.com |language=en}}</ref> In response, Rodgers say, "''I am not and have never been of the opinion that the events did not take place" but did not say whether he had ever believed the Sandy Hook massacre was an "inside job.''"<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref>
== Personal life ==
=== Family den relationships ===
Rodgers get two bros; de younger, [[Jordan Rodgers|Jordan]], play quarterback at Vanderbilt University wey he get a brief NFL career plus de Jacksonville Jaguars den Tampa Bay Buccaneers.<ref>{{Cite web |title=Jordan Rodgers Vanderbilt Bio |url=http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-url=https://web.archive.org/web/20111126203900/http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-date=November 26, 2011 |access-date=June 19, 2017 |website=VUCommodores.com}}</ref><ref>{{Cite web |last=Imig |first=Paul |date=April 27, 2013 |title=Rodgers' younger brother Jordan signs with Jacksonville |url=http://www.foxsportswisconsin.com/fox-sports-networks/story/Rodgers-brother-Jordan-signs-with-Jackso?blockID=896957 |url-status=live |archive-url=https://web.archive.org/web/20220310191855/https://www.foxsports.com/wisconsin/story/rodgers-younger-brother-jordan-signs-with-jacksonville-042713 |archive-date=March 10, 2022 |access-date=June 19, 2017 |work=Fox Sports}}</ref><ref>{{Cite web |last=Eisenband |first=Jeff |date=October 8, 2018 |title=Jordan Rodgers Remembers His 'Good Little' Football Career |url=http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |url-status=dead |archive-url=https://web.archive.org/web/20190308081753/http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |archive-date=March 8, 2019 |access-date=March 7, 2019 |website=ThePostGame.com}}</ref> Although na dem raise Rodgers den ein bros Christian, insyd an interview insyd 2017 he state say he no longer affiliate einself plus any organized religion.<ref>{{Cite web |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=Aaron Rodgers, unmasked |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |url-status=live |archive-url=https://web.archive.org/web/20211114183324/http://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |archive-date=November 14, 2021 |access-date=March 7, 2019 |website=[[ESPN.com]]}}</ref>
Rodgers be de godfather to Cade Cobb, de second son of ein long-time NFL teammate, [[Randall Cobb (American football)|Randall Cobb]].<ref>{{cite web |last=Demovsky |first=Rob |date=October 28, 2021 |title=The 'beautiful, chaotic mess' that brought Randall Cobb's family back to Green Bay |url=https://www.espn.com/blog/green-bay-packers/post/_/id/51394/the-beautiful-chaotic-mess-that-brought-randall-cobbs-family-back-to-green-bay |accessdate=September 1, 2023 |work=[[ESPN.com]]}}</ref>
Na Rodgers dey insyd a relationship plus actress [[Olivia Munn]] from 2014 to 2017 den plus former professional racing driver [[Danica Patrick]] from 2018 to 2020.<ref name="peoplemag">{{Cite web |last=Mizoguchi |first=Karen |date=April 7, 2017 |title=Olivia Munn and Aaron Rodgers Break Up |url=http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |url-status=live |archive-url=https://web.archive.org/web/20170408081606/http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |archive-date=April 8, 2017 |access-date=April 7, 2017 |website=[[People (magazine)|People]]}}</ref><ref name="AP">{{Cite web |date=January 15, 2018 |title=Danica Patrick finds love away from track with Aaron Rodgers |url=https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |url-status=live |archive-url=https://web.archive.org/web/20180219090141/https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |archive-date=February 19, 2018 |access-date=February 18, 2018 |work=[[Associated Press News]]}}</ref><ref>{{Cite web |date=July 16, 2020 |title=Danica, Rodgers call off two-year relationship |url=https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |url-status=live |archive-url=https://web.archive.org/web/20210203195658/https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |archive-date=February 3, 2021 |access-date=February 7, 2021 |website=[[ESPN.com]]}}</ref> He start dey date actress [[Shailene Woodley]] insyd de second half of 2020.<ref>{{Cite web |last=Weinberg |first=Lindsay |date=February 2, 2021 |title=Inside Shailene Woodley and Aaron Rodgers' "Private and Low Key" Romance |url=https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |url-status=live |archive-url=https://web.archive.org/web/20210207071957/https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |archive-date=February 7, 2021 |access-date=February 7, 2021 |website=[[E!]]}}</ref> Insyd an appearance on ''The Tonight Show Starring Jimmy Fallon'' insyd 2021, Woodley confirm say na she be engaged to Rodgers.<ref>{{Cite web |last=Kubota |first=Samantha |date=February 22, 2021 |title=Shailene Woodley engaged to Aaron Rodgers, says she's 'still learning' about football |url=https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |url-status=live |archive-url=https://web.archive.org/web/20210223055422/https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |archive-date=February 23, 2021 |access-date=February 23, 2021 |website=[[Today.com]]}}</ref> On February 16, 2022, na Rodgers den Woodley call off dema engagement.<ref>{{Cite web |last=Wang |first=Jessica |date=February 16, 2022 |title=Shailene Woodley and Aaron Rodgers split, call off engagement |url=https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |url-status=live |archive-url=https://web.archive.org/web/20220409131033/https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |archive-date=April 9, 2022 |access-date=February 16, 2022 |website=[[Yahoo!]] |language=en-US}}</ref>
Insyd December 2024, na Rodgers state say na he dey date a woman dem name Brittani. Insyd June 2025, Rodgers state say dem marry a few months prior.<ref>{{Cite web |last=Comiter |first=Jordana |date=June 10, 2025 |title=Who Is Aaron Rodgers' Wife, Brittani? All About Her Private Relationship with the NFL Quarterback |url=https://people.com/who-is-brittani-aaron-rodgers-11718036 |access-date=June 22, 2025 |website=People.com |language=en}}</ref><ref>{{cite web |last=Hooks |first=Kalan |date=June 10, 2025 |title=Aaron Rodgers announces marriage at Steelers minicamp |url=https://www.espn.com/nfl/story/_/id/45481936/aaron-rodgers-pittsburgh-steelers-announces-marriage |access-date=June 10, 2025 |website=[[ESPN]]}}</ref>
=== Honorary memberships den business ventures ===
Na dem initiate Rodgers as an honorary member of Tau Kappa Epsilon (TKE) on January 5, 2012, at de Sigma-Xi Chapter at St. Norbert College.<ref>{{Cite web |last=Zegers |first=Dan |date=January 6, 2012 |title=MEET FRATERS AARON RODGERS & GRAHAM HARRELL |url=https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |url-status=live |archive-url=https://web.archive.org/web/20221229085550/https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |archive-date=December 29, 2022 |access-date=December 29, 2022 |publisher=Tau Kappa Epsilon}}</ref>
Insyd April 2018, na dem annouce Rodgers as a limited partner insyd de Milwaukee Bucks ownership group, wey dey make am de first active NFL player plus an ownership stake insyd an NBA franchise.<ref>{{Cite web |last=Demovsky |first=Rob |date=April 20, 2018 |title=Aaron Rodgers buys minority stake in Bucks: 'A dream come true' |url=https://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |url-status=live |archive-url=https://web.archive.org/web/20180422052450/http://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |archive-date=April 22, 2018 |access-date=April 22, 2018 |website=[[ESPN.com]]}}</ref> De team later win de NBA Finals insyd 2021.<ref>{{Cite news|last=Deb|first=Sopan|date=July 21, 2021|title=The Milwaukee Bucks Win the N.B.A. Championship|url=https://www.nytimes.com/2021/07/20/sports/basketball/milwaukee-bucks-nba-finals-championship.html|access-date=February 12, 2026|work=The New York Times|language=en-US|issn=0362-4331}}</ref>
== Media appearances ==
Na Rodgers be a longtime spokesperson for State Farm Insurance wey na he frequently feature insyd dema commercials. Insyd de commercials, Rodgers often dey highlight ein "Championship Belt" touchdown celebration, wich State Farm rename as de "Discount Double Check".<ref>{{Cite web |title=State Farm® State of Imitation (Aaron Rodgers) |url=https://www.youtube.com/watch?v=j9Rv7czl9cU |url-status=live |archive-url=https://web.archive.org/web/20121017234148/http://www.youtube.com/watch?v=j9Rv7czl9cU |archive-date=October 17, 2012 |access-date=May 10, 2012 |publisher=State Farm |via=YouTube}}</ref> Rodgers sanso be featured insyd Pizza Hut advertisements,<ref>{{Cite web |last=Rovell |first=Darren |author-link=Darren Rovell |date=September 4, 2012 |title=Pizza Hut uses Aaron Rodgers in new ads |url=https://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |url-status=live |archive-url=https://web.archive.org/web/20161229100812/http://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=[[ESPN.com]]}}</ref> as well as numerous local Wisconsin-based advertisements.<ref name="milcomm">{{Cite web |last=Kirchen |first=Rich |date=August 20, 2015 |title=Aaron Rodgers' commercial work in Wisconsin appears to be dwindling |url=http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |url-status=live |archive-url=https://web.archive.org/web/20151008232237/http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |archive-date=October 8, 2015 |access-date=December 29, 2016 |website=Milwaukee Business Journal}}</ref>
Insyd May 2015, Rodgers appear as a contestant on ''Celebrity Jeopardy!''; he defeat ''Shark Tank'' investor [[Kevin O'Leary]] den astronaut den future United States Senator [[Mark Kelly]], winning $50,000 for ein charity. Insyd April 2021, Rodgers get a two-week stint as guest host on ''Jeopardy!'' from April 5–16.<ref>{{Cite web |last=Demovsky |first=Rob |date=January 12, 2021 |title=Green Bay Packers QB Aaron Rodgers says he'll be a 'Jeopardy!' guest host |url=https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |url-status=live |archive-url=https://web.archive.org/web/20210116152354/https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |archive-date=January 16, 2021 |access-date=January 16, 2021 |publisher=[[ESPN]]}}</ref><ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers sanso make numerous cameo appearances on television, wey dey include insyd a 2013 episode of ''The Office'', a 2019 episode of ''Game of Thrones'', den a 2015 episode of de sketch comedy television series ''Key & Peele''.<ref>{{Cite web |last=Zaldivar |first=Gabe |date=May 10, 2013 |title=Aaron Rodgers Judges Andy Bernard Breakdown on 'The Office' |url=https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |url-status=live |archive-url=https://web.archive.org/web/20210720173445/https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |archive-date=July 20, 2021 |access-date=July 20, 2021 |website=Bleacher Report}}</ref><ref>{{Cite web |date=May 13, 2019 |title=Video NFL star makes surprise cameo on 'Game of Thrones' |url=https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |url-status=live |archive-url=https://web.archive.org/web/20211018165222/https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |archive-date=October 18, 2021 |access-date=October 18, 2021 |website=ABC News |language=en}}</ref><ref>{{Cite web |last=Dubin |first=Jared |date=January 28, 2015 |title=WATCH: Key & Peele, Aaron Rodgers spoof player introductions |url=https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |url-status=live |archive-url=https://web.archive.org/web/20180831104426/https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |archive-date=August 31, 2018 |access-date=August 30, 2018 |website=CBS Sports}}</ref> He sanso tape a cameo as ''Jeopardy!'' host for an episode of ''The Conners''.<ref>{{Cite web |last=Cwik |first=Chris |date=May 8, 2021 |title=Aaron Rodgers guest starring as 'Jeopardy!' host on 'The Conners,' prompting speculation about future |url=https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |url-status=live |archive-url=https://web.archive.org/web/20210508190417/https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |archive-date=May 8, 2021 |access-date=May 8, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd 2021, Rodgers take part insyd ''The Match IV'', wich be de fourth installment insyd de exhibition match play golf series. Na he be paired plus professional golfer [[Bryson DeChambeau]]. De team go up against [[Phil Mickelson]] den Tom Brady.<ref>{{Cite web |last=Wells |first=Adam |date=May 26, 2021 |title=Mickelson, Tom Brady vs. DeChambeau, Aaron Rodgers Set for Capital One's 'The Match' |url=https://bleacherreport.com/articles/10003839-mickelson-tom-brady-vs-dechambeau-aaron-rodgers-set-for-capital-ones-the-match |access-date=May 26, 2021 |website=BleacherReport |publisher=Turner Broadcasting System, Inc.}}</ref> DeChambeau den Rodgers win de match 3 den 2.<ref>{{Cite web |last=VanHaaren |first=Tom |date=July 6, 2021 |title=Bryson DeChambeau, Aaron Rodgers beat Phil Mickelson, Tom Brady in 'The Match' |url=https://www.espn.co.uk/golf/story/_/id/31773982/bryson-dechambeau-aaron-rodgers-beat-phil-mickelson-tom-brady-match |access-date=May 26, 2022 |website=[[ESPN.com]]}}</ref> Rodgers sanso take part insyd de sixth edition of ''The Match'', wer na he team up plus Brady against fellow quarterbacks [[Josh Allen]] den [[Patrick Mahomes]].<ref>{{Cite web |date=April 18, 2022 |title=Tom Brady and Aaron Rodgers to Play Patrick Mahomes and Josh Allen in 'The Match' on June 1 |url=https://www.si.com/golf/news/tom-brady-aaron-rodgers-to-play-patrick-mahomes-josh-allen-in-the-match-june-1 |access-date=May 26, 2022 |website=Morning Read |language=en}}</ref> Rodgers den Brady defeat Mahomes den Allen 1 up.<ref>{{Cite web |last=Hamel |first=Riley |date=June 1, 2022 |title=Aaron Rodgers buries a birdie at the last, teams with Tom Brady to take down Patrick Mahomes, Josh Allen in Capital One's: The Match VI |url=https://golfweek.usatoday.com/lists/tracker-shot-to-shot-updates-of-the-match-vi-at-wynn-las-vegas/ |access-date=June 28, 2022 |website=Golfweek |language=en-US}}</ref>
== Humanitarian den charitable efforts ==
Rodgers be de founder, den de co-creator, along plus David Gruber, of itsAaron,<ref>{{Cite web |last=Littman |first=Chris |date=December 4, 2014 |title=Aaron Rodgers' surprise visit makes school dean scream with joy |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |url-status=live |archive-url=https://web.archive.org/web/20191017184232/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |archive-date=October 17, 2019 |access-date=October 17, 2019 |website=Sporting News}}</ref> a charity plus a mission of "creating awareness for organizations den people wey dey change de world".<ref name="Rodgers Charity">{{Cite web |title=It's Aaron & Gruber Law |url=https://www.gruber-law.com/itsaaron/ |url-status=live |archive-url=https://web.archive.org/web/20250523173120/https://www.gruber-law.com/itsaaron/ |archive-date=May 23, 2025 |access-date=July 1, 2025 |website=Gruber Law |language=en}}</ref><ref>{{Cite web |date=September 4, 2013 |title=Gruber Law Brings Awareness Through 'Its Aaron' with Aaron Rodgers |url=https://www.gruber-law.com/itsaaron/ |archive-url=https://web.archive.org/web/20190414173233/https://www.gruber-law.com/itsaaron/ |archive-date=April 14, 2019 |access-date=March 7, 2019 |website=Gruber Law Offices}}</ref>
He sanso be a supporter of de MACC Fund,<ref name="Nickel">{{Cite web |last=Nickel |first=Lori |date=May 14, 2013 |title=Aaron Rodgers Shines at MACC Fund Event |url=https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |url-status=live |archive-url=https://web.archive.org/web/20250306103414/https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |archive-date=March 6, 2025 |access-date=February 2, 2014 |website=Milwaukee Journal Sentinel}}</ref><ref name="Demovsky">{{Cite web |last=Demovsky |first=Rob |date=December 31, 2013 |title=Aaron Rodgers address 'crazy rumors' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |url-status=live |archive-url=https://web.archive.org/web/20140204035709/http://espn.go.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |archive-date=February 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> Raise Hope for Congo,<ref name="Garber">{{Cite web |last=Garber |first=Greg |date=January 1, 2014 |title=Aaron Rodgers makes real difference:Packers quarterback uses his clout to bring awareness to Raise Hope For Congo |url=https://www.espn.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |url-status=live |archive-url=https://web.archive.org/web/20140104044126/http://espn.go.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |archive-date=January 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> den oda humanitarian den charitable efforts.<ref>{{Cite web |title=Aaron Rodgers: Charity Work & Causes |url=https://www.looktothestars.org/celebrity/aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20211115164124/https://www.looktothestars.org/celebrity/aaron-rodgers |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=Look to the Stars |language=en}}</ref><ref>{{Cite web |date=March 1, 2021 |title=Aaron Rodgers donates $1 million to aid 80 small businesses in hometown |url=https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |url-status=live |archive-url=https://web.archive.org/web/20211115164225/https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=NFL.com |language=en-US}}</ref>
Rodgers ein ''[[List of Jeopardy! tournaments and events|Celebrity Jeopardy!]]'' win earn $50,000 for de MACC Fund.<ref name="Kaduk2015">{{Cite web |last=Kaduk |first=Kevin |date=May 12, 2015 |title=Aaron Rodgers wins his episode of Celebrity Jeopardy |url=https://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |url-status=live |archive-url=https://web.archive.org/web/20150514165207/http://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=[[Yahoo! Sports]]}}</ref><ref>{{Cite web |last=Hanzus |first=Dan |date=May 12, 2015 |title=Aaron Rodgers comes up clutch on Celebrity Jeopardy |url=https://www.nfl.com/news/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy-0ap3000000492438 |url-status=live |archive-url=https://web.archive.org/web/20150514155518/http://www.nfl.com/news/story/0ap3000000492438/article/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=NFL.com}}</ref> During ein 2021 appearance as ''Jeopardy!'' guest host, de show make a charitable donation equal to de cumulative winnings of de contestants (wey dey include de runners-up) for those ten shows.<ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers be a supporter of ein alma mater, University of California, Berkeley. He donate funds to renovate de athletic facilities<ref>{{Cite web |last=Kercheval |first=Ben |date=June 11, 2019 |title=Aaron Rodgers gives Cal football 'seven-figure gift' for locker room renovations, scholarship |url=https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |url-status=live |archive-url=https://web.archive.org/web/20210709182238/https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=CBS Sports |language=en}}</ref> wey he sanso establish an endowed scholarship give transfer students at de school. Insyd 2021, dem honor am by de school for ein charitable work.<ref>{{Cite web |date=June 1, 2021 |title=2021's Best and Brightest Alumni, Faculty Honored at Berkeley Charter Gala |url=https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |url-status=live |archive-url=https://web.archive.org/web/20210709182728/https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=Cal Alumni Association}}</ref>
Insyd 2021, Rodgers donate $1 million to help small businesses insyd Chico den Butte County, California.<ref>{{Cite web |date=March 1, 2021 |title=Packers QB Aaron Rodgers donates $1 million to help his hometown's small businesses |url=https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |url-status=dead |archive-url=https://web.archive.org/web/20230119205343/https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |archive-date=January 19, 2023 |access-date=January 19, 2023 |website=Packers.com |language=en-US}}</ref>
Insyd 2024, Rodgers raise $3 million for charities plus a flag football tournament.<ref>{{Cite web |last=Williams |first=Randall |date=May 4, 2024 |title=Aaron Rodgers Is Bullish on Flag Football, Uses to Raise Millions for Charity |url=https://www.bloomberg.com/news/articles/2024-05-04/nfl-qb-aaron-rodgers-says-olympic-flag-football-might-be-next-chapter |access-date=May 30, 2024 |website=Bloomberg.com}}</ref>
== References ==
<references />
== External links ==
ojow88fga0ygsbh62k17uv610m48xo2
111298
111297
2026-08-29T22:55:55Z
DaSupremo
9
/* Career statistics */ Improve article
111298
wikitext
text/x-wiki
{{Databox}}
'''Aaron Charles Rodgers''' (born December 2, 1983) be an American professional football quarterback give de Pittsburgh Steelers of de National Football League (NFL). He play college football give de California Golden Bears, setting de school ein record for lowest single-season den career interception rates before he be selected by de Green Bay Packers insyd de first round of de 2005 NFL draft.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{cite web |date=April 23, 2005 |title=Aaron Rodgers Selected by Green Bay |url=https://calbears.com/sports/2005/4/23/207736054 |access-date=September 25, 2025 |website=California Golden Bears Athletics}}</ref> He be regarded as one of de greatest den most talented quarterbacks of all time.<ref name="GOAT2">*{{Cite web |date=August 30, 2018|title=Where will Rodgers finish among the greatest QBs of all time?|url=http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|url-status=live|archive-url=https://web.archive.org/web/20181114060238/http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|archive-date=November 14, 2018|access-date=November 13, 2018|publisher=National Football League|type=Television production}}<li>{{Cite web |last=Siegel|first=Alan|date=February 28, 2018|title=The top 25 NFL quarterbacks of all-time|url=https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|url-status=live|archive-url=https://web.archive.org/web/20200724211140/https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|archive-date=July 24, 2020|access-date=November 13, 2018|work=[[USA Today]]|quote=By the time he's done, Rodgers may be No. 1 on this list. At 35, the seven-time Pro Bowler and two-time NFL MVP, who led the Packers to victory in Super Bowl XLV, is still going strong. He holds the NFL record in single-season and career passer rating (122.5, 103.2) and is creeping up on the leaders in nearly every major passing category.}}</li><li>{{Cite web |last=Schein|first=Adam|date=January 18, 2021|title=NFL Divisional Round aftermath: Aaron Rodgers most talented QB ever? Chiefs in trouble?|url=https://www.nfl.com/news/nfl-divisional-round-aftermath-aaron-rodgers-most-talented-qb-ever-chiefs-in-tro|access-date=April 4, 2023|website=[[NFL.com]]}}</li>*{{Cite web |last=Miller|first=Dalton|date=May 27, 2021|title=Ranking the Top Quarterbacks in NFL History from Tom Brady to Warren Moon|url=https://www.profootballnetwork.com/ranking-top-quarterbacks-in-nfl-history/|access-date=April 5, 2023|work=Pro Football Network}}
*{{Cite web |last=Schwab|first=Frank|date=February 1, 2023|title=What is Tom Brady's place among the 5 greatest QBS in NFL history?|url=https://sports.yahoo.com/what-is-tom-bradys-place-among-the-5-greatest-qbs-in-nfl-history-161857912.html|access-date=April 4, 2023|work=[[Yahoo! Sports]]}}</ref>
After backing up [[Brett Favre]] for de first three years of ein NFL career, Rodgers cam be de Packers dema starting quarterback insyd 2008. Insyd de 2010 season, he lead dem to a victory insyd Super Bowl XLV, earning de Super Bowl MVP. Na dem name am Associated Press Athlete of de Year insyd 2011,<ref name="Male Athlete of the year">{{Cite news|date=December 21, 2011|title=Rodgers named Male Athlete of the Year|work=[[Fox Sports]]|agency=[[Associated Press]]|url=http://msn.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|url-status=dead|access-date=May 13, 2011|archive-url=https://web.archive.org/web/20190718082529/https://www.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|archive-date=July 18, 2019}}</ref> wey na dem vote am league MVP by de Associated Press for de 2011, 2014, 2020, den 2021 NFL seasons. Rodgers be de fifth player to win NFL MVP insyd consecutive seasons, joining [[Peyton Manning]], Favre, [[Joe Montana]] den [[Jim Brown]]. Rodgers lead de NFL six times insyd touchdown-to-interception ratio (2011, 2012, 2014, 2018, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Leaders – Passing Touchdown/Interception Ratio |url=https://www.footballdb.com/leaders/yearly-passing-tdintratio |url-status=live |archive-url=https://web.archive.org/web/20190407190912/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=April 7, 2019 |access-date=April 7, 2019 |website=FootballDB.com}}</ref> six times insyd lowest passing interception percentage (2009, 2014, 2018, 2019, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passing Interception Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-intpct |url-status=live |archive-url=https://web.archive.org/web/20200724202503/https://www.footballdb.com/leaders/yearly-passing-intpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> four times insyd passer rating (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passer Rating Leaders |url=https://www.footballdb.com/leaders/yearly-passing-rating |url-status=live |archive-url=https://web.archive.org/web/20200724211550/https://www.footballdb.com/leaders/yearly-passing-rating |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den four times insyd touchdown passing percentage (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Touchdown Pass Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-tdpct |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.footballdb.com/leaders/yearly-passing-tdpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> three times insyd total touchdowns (2011, 2016, 2020); twice insyd touchdown passes (2016, 2020)<ref>{{Cite web |title=NFL Yearly Touchdown Passes Leaders |url=https://www.footballdb.com/leaders/yearly-passing-touchdowns |url-status=live |archive-url=https://web.archive.org/web/20200724202559/https://www.footballdb.com/leaders/yearly-passing-touchdowns |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den once insyd yards per attempt (2011) den completion percentage (2020).<ref>{{Cite web |title=NFL Yearly Passing Yards per Attempt Leaders |url=https://www.footballdb.com/leaders/yearly-passing-ydsattempt |url-status=live |archive-url=https://web.archive.org/web/20200724202800/https://www.footballdb.com/leaders/yearly-passing-ydsattempt |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> Insyd 2023, na dem trade Rodgers to de New York Jets, wer he spend two seasons plus de team. Released by de Jets after de 2024 season, Rodgers sign plus de Steelers, whom he lead to a division title dat season.
Ranking first on de NFL ein all-time regular-season career passer rating list,<ref>{{Cite web |last=Brizuela |first=James |date=September 16, 2025 |title=Ravens' Lamar Jackson Has Surpassed Aaron Rodgers in Major NFL Career Stat |url=https://www.newsweek.com/sports/nfl/ravens-lamar-jackson-has-surpassed-aaron-rodgers-major-nfl-career-stat-2130770 |access-date=September 16, 2025 |website=[[Newsweek]]}}</ref> Rodgers be among de most efficient quarterbacks of all time. Apart from a regular-season career passer rating of over 100 (de first to ever have a career rating over 100), he sanso dey hold de best touchdown-to-interception ratio den de lowest passing interception percentage insyd NFL history while he sanso get de highest passer rating insyd NFL history thru out de entire 2010s decade. Insyd de postseason, he be second in both touchdown passes den touchdown-to-interception ratio, fourth insyd passing yards, den eighth insyd all-time passer rating. Insyd de regular season, he get de best touchdown-to-interception ratio insyd NFL history at 4.34,<ref name="Football DB">{{Cite web |title=NFL Career Leaders – Passing Touchdown/Interception Ratio |url=http://www.footballdb.com/leaders/career-passing-tdintratio |archive-url=https://web.archive.org/web/20200508102359/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=May 8, 2020 |access-date=November 3, 2014 |website=FootballDB.com}}</ref> he dey hold de league ein second lowest career interception percentage at 1.4 percent<ref name="a">{{Cite web |title=NFL Career Pass Interception % Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |url-status=live |archive-url=https://web.archive.org/web/20110815065956/http://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |archive-date=August 15, 2011 |access-date=September 24, 2015 |work=[[Pro Football Reference]]}}</ref> den de highest single-season passer rating record of 122.5.<ref>{{Cite web |last=Mayer |first=Larry |date=September 12, 2012 |title=Bears gearing up to battle Rodgers |url=http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |url-status=dead |archive-url=https://web.archive.org/web/20150925095614/http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |archive-date=September 25, 2015 |access-date=September 24, 2015 |publisher=[[Chicago Bears]]}}</ref> Rodgers sanso be a four-time winner of de Best NFL Player ESPY Award.
== Early life ==
Ba dem born Aaron Charles Rodgers on December 2, 1983, insyd Chico, California,<ref>{{Cite magazine|title=Aaron Rodgers – No. 12 – QB|url=http://sportsillustrated.cnn.com/football/nfl/players/7200|url-status=dead|archive-url=https://web.archive.org/web/20110719095151/http://sportsillustrated.cnn.com/football/nfl/players/7200/|archive-date=July 19, 2011|access-date=February 6, 2011|magazine=[[Sports Illustrated]]}}</ref> de son of Darla Leigh (née Pittman) den Edward Wesley Rodgers. Na ein poppie be a Texas-born chiropractor wey play football as an offensive lineman give de Chico State Wildcats from 1973 to 1976.<ref name="about1">{{Cite web |last=Powell |first=Kimberly |date=October 15, 2018 |title=Ancestry of Aaron Rodgers |url=https://www.thoughtco.com/family-tree-of-aaron-rodgers-1421929 |url-status=live |archive-url=https://web.archive.org/web/20111211212214/http://genealogy.about.com/od/famous_family_trees/ss/aaron-rodgers.htm |archive-date=December 11, 2011 |access-date=May 10, 2012 |website=ThoughtCo.com}}</ref><ref name="Jackel2005">{{Cite web |last=Jackel |first=Pete |date=October 6, 2005 |title=Focus on Football: Rodgers preparing for his moment |url=http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |url-status=live |archive-url=https://web.archive.org/web/20110127115346/http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |archive-date=January 27, 2011 |access-date=March 14, 2012 |website=RacineSportsZone.com |publisher=JournalTimes.com}}</ref> Rodgers be of English, Irish den German ancestry.<ref name="about1" /> De family move go Ukiah, California, wer he attend Oak Manor Elementary School.<ref name="FreeThrows">{{Cite news|date=January 3, 1993|title='Free throws' are his forte|url=https://newspaperarchive.com/ukiah-daily-journal/1993-01-03/|url-status=live|archive-url=https://web.archive.org/web/20211201192340/https://newspaperarchive.com/browse/us/ca/ukiah/ukiah-daily-journal/|archive-date=December 1, 2021|access-date=March 14, 2012|work=Ukiah Daily Journal|via=Newspaper Archive|page=1}}</ref> Edward Rodgers toss a football plus ein sons Luke, Aaron den [[Jordan Rodgers]], wey he flow dem make dem no told drink den no party insyd college anaa dem go limit demaselves insyd sports like he do. Aaron take dis advice to heart.<ref name="Jackel2005" /> At de age of ten, he be featured on de front page of de ''Ukiah Daily Journal'' for ein top performance at a local basketball free throw competition.<ref name="FreeThrows" />
Later, de family move go Beaverton, Oregon, wer Rodgers attend Vose Elementary School den Whitford Middle School, wey he play baseball insyd de Raleigh Hills Little League at shortstop, center field den pitcher.<ref name="Oregonian">{{Cite web |date=February 5, 2011 |title=Green Bay quarterback Aaron Rodgers has strong ties to Beaverton |url=http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |url-status=live |archive-url=https://web.archive.org/web/20110216014347/http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |archive-date=February 16, 2011 |access-date=February 5, 2011 |work=[[The Oregonian]]}}</ref>
De Rodgers family return to Chico insyd 1997, wey Aaron attend Pleasant Valley High School, starting for two years at quarterback den garnering 4,421 passing yards.<ref>{{Cite web |last=Davidson |first=Joe |date=September 5, 2019 |title=Green Bay Packers quarterback Aaron Rodgers donates 354 new helmets to California high schools |url=https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |url-status=live |archive-url=https://web.archive.org/web/20190925105424/https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |archive-date=September 25, 2019 |access-date=September 13, 2019 |work=[[Honolulu Star-Advertiser]]}}</ref> He set single-game records of six touchdowns den 440 all-purpose yards. Rodgers set a single-season school record plus 2,466 total yards insyd 2001.<ref>{{Cite web |last=Carlton |first=Jimmy |date=April 26, 2018 |title=Of brains, Butte and baseball: How a tiny teenager became #Packers MVP Aaron Rodgers |url=https://onmilwaukee.com/articles/packersaaronrodgersjourney |access-date=May 30, 2024 |website=OnMilwaukee}}</ref> He graduate from Pleasant Valley High School insyd spring 2002, after scoring 1310 insyd de SAT den plus an A− average.<ref>{{Cite web |title=#12 Aaron Rodgers |url=http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |url-status=live |archive-url=https://web.archive.org/web/20110716022313/http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |archive-date=July 16, 2011 |access-date=February 6, 2011 |website=Packer Report |publisher=Scout with FoxSports.com}}</ref><ref>{{Cite news|date=November 20, 2002|title=JC Quarterback Commits to Cal, Butte's Rodgers Could Join the Competition to Replace Boller Next Year|url=http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|url-status=live|archive-url=https://web.archive.org/web/20181113165752/http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|archive-date=November 13, 2018|access-date=May 11, 2012|work=Contra Costa Times|location=Walnut Creek, California|via=NewsBank|quote=[He] scored 1310 on the SAT, so Cal's academic reputation was important to him.}}</ref><ref>{{Cite news|last=Crouse|first=Karen|date=January 31, 2011|title=Packers' Rodgers Has Deep Roots in Chico|url=https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|url-status=live|archive-url=https://web.archive.org/web/20190426170034/https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|archive-date=April 26, 2019|access-date=December 5, 2019|work=[[The New York Times]]|page=D1|quote=Despite his athletic prowess, an A-minus average and an SAT score of 1310, Rodgers did not receive an NCAA Division I scholarship offer coming out of high school.}}</ref>
== College career ==
Despite ein impressive high school record, Rodgers attract little interest from Division I programs.<ref>{{Cite web |last=Kalland |first=Robby |date=September 3, 2015 |title=How Aaron Rodgers went from not being recruited to a star at Cal |url=https://www.cbssports.com/college-football/news/how-aaron-rodgers-went-from-not-being-recruited-to-a-star-at-cal/ |access-date=May 30, 2024 |website=CBSSports.com}}</ref> Insyd a 2011 interview plus ''E:60'', he attribute de relative lack of attention insyd de recruiting process to ein unimposing physical stature as a high school player at {{convert|5|ft|10|in|m|abbr=on}} den {{convert|165|lb|kg}}. Na Rodgers want to attend Florida State den play under head coach [[Bobby Bowden]], buh na dem reject am.<ref name="E60 Youtube">{{Cite web |date=October 27, 2011 |title=E:60 – Aaron Rodgers |url=https://www.youtube.com/watch?v=blrmdIfXPwI |url-status=live |archive-url=https://web.archive.org/web/20120302212553/https://www.youtube.com/watch?v=blrmdIfXPwI |archive-date=March 2, 2012 |access-date=May 13, 2012 |publisher=ESPN |via=YouTube}}</ref> Na he only be offered an opportunity to compete for a scholarship as a walk-on from University of Illinois.<ref>{{Cite news|last=McGrath|first=Jim|date=June 29, 2011|title=Green Bay QB Rodgers Visits All-Pro Campers at W&M|work=Williamsburg Yorktown Daily|url=http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|url-status=dead|access-date=August 22, 2013|archive-url=https://web.archive.org/web/20130921054645/http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|archive-date=September 21, 2013}}</ref> He decline de invitation, wey na he consider quitting football to play baseball instead anaa giving up entirely on de idea of playing insyd professional sports den attending law school after completing ein undergraduate degree.<ref name="Babb">{{Cite news|last=Babb|first=Kent|date=December 15, 2015|title=For Aaron Rodgers, road to the NFL started at an apparent dead end|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|url-status=live|access-date=November 30, 2018|archive-url=https://web.archive.org/web/20181130205037/https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|archive-date=November 30, 2018}}</ref>
He then be recruited to play football at Butte College insyd Oroville, a junior college about {{convert|15|mi|km}} southeast of Chico.<ref>{{Cite book |last=Sandler |first=Michael |url=https://archive.org/details/aaronrodgersgree0000sand |title=Aaron Rodgers and the Green Bay Packers: Super Bowl XLV |date=August 1, 2011 |publisher=Bearport Publishing |isbn=9781617723094 |url-access=registration}}</ref>
=== Butte ===
==== 2002 season ====
Rodgers throw 26 touchdowns insyd ein freshman season at Butte,<ref>{{Cite web |title=Aaron Rodgers |url=https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |url-status=live |archive-url=https://web.archive.org/web/20211028170413/https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |archive-date=October 28, 2021 |access-date=October 13, 2021 |website=California Community Colleges Chancellor's Office}}</ref><ref>{{Cite web |title=Stats & Records |url=http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-url=https://web.archive.org/web/20081202112615/http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-date=December 2, 2008 |access-date=November 18, 2011 |website=butte.edu |publisher=[[Butte College]]}}</ref> leading de school to a 10–1 record, de NorCal Conference championship,<ref>{{Cite web |date=November 8, 2008 |title=Title-tilt bound: Butte secures NorCal championship |url=https://www.chicoer.com/20081108/title-tilt-bound-butte-secures-norcal-championship/ |access-date=May 30, 2024 |work=Chico Enterprise-Record}}</ref> den a {{nowrap|No. 2}} national ranking. While der, na he be discovered by de California Golden Bears ein head coach [[Jeff Tedford]], wey na he dey recruite Butte tight end Garrett Cross.<ref>{{Cite web |last=McGrath |first=Dan |date=November 11, 2004 |title=Cal QB Rodgers has the pedigree |url=https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-url=https://web.archive.org/web/20191205183533/https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-date=December 5, 2019 |access-date=September 13, 2019 |work=Chicago Tribune}}</ref> Na Tedford be surprised to learn say Rodgers no be recruited earlier. Secof Rodgers ein good high school scholastic record, he be eligible to transfer to de University of California, Berkeley after one year of junior college instead of de typical two.<ref name="Cal">{{Cite news|last=Adams|first=Bruce|date=August 3, 2003|title=Cal's QB hope: JC transfer Rodgers has what Tedford likes|work=San Francisco Chronicle|url=https://www.sfchronicle.com/sports/article/Cal-s-QB-hope-JC-transfer-Rodgers-has-what-2598626.php|url-status=live|access-date=22 February 2026}}</ref>
=== California ===
==== 2003 season ====
As a junior college transfer, Rodgers get three years of eligibility at Cal. Na dem name am de starting quarterback insyd de fifth game of de 2003 season, beating de only team wey offer am a {{nowrap|Division I}} opportunity out of high school, Illinois.<ref>{{Cite web |date=October 14, 2014 |title=Aaron Rodgers: I wanted to join Illini; they passed |url=https://www.chicagotribune.com/2014/10/14/aaron-rodgers-i-wanted-to-join-illini-they-passed/ |access-date=May 30, 2024 |work=Chicago Tribune}}</ref> As a sophomore, he help lead de Golden Bears to a 7–3 record as a starter.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{Cite web |last=King |first=Randy |date=December 26, 2003 |title=Virginia Tech finishes on wrong foot with Insight Bowl loss to Cal |url=https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |url-status=live |archive-url=https://web.archive.org/web/20191208021513/https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |work=The Roanoke Times}}</ref>
Insyd ein second career start, Rodgers lead de team to a 21–7 halftime lead against #3 USC. Secof injury, na dem replace Rodgers insyd de second half by Reggie Robertson.<ref name="calfans" /><ref>{{Cite web |date=September 27, 2003 |title=Cal-USC Postgame Quotes |url=http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121444/http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |archive-date=June 9, 2012 |website=California Golden Bears |quote=After the interception for the touchdown, I went over to him and said 'Do you want to take a couple of series off?' and he said 'Yes.' We put Reggie (Robertson) in and Reggie did a nice job for us."}}</ref> De Bears win insyd triple overtime, 34–31.<ref name="calfans">{{Cite web |date=September 27, 2003 |title=Cal fans storm field after win |url=http://espn.go.com/ncf/recap?gameId=232700025 |url-status=dead |archive-url=https://web.archive.org/web/20161119182933/https://www.espn.com/college-football/recap?gameId=232700025 |archive-date=November 19, 2016 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |last=Faraudo |first=Jeff |date=September 29, 2009 |title=Cal's triple-overtime thriller against USC in 2003 produced multiple heroes |url=https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |url-status=live |archive-url=https://web.archive.org/web/20191208021406/https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=East Bay Times}}</ref> Rodgers pass for 394 yards wey na dem name am game MVP insyd de Insight Bowl against Virginia Tech.<ref>{{Cite web |title=Insight Bowl – Virginia Tech vs California Box Score, December 26, 2003 |url=https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |url-status=live |archive-url=https://web.archive.org/web/20180312084010/https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |work=[[Sports Reference]]}}</ref><ref>{{Cite book |last=Tsuchiya |first=Anita |url=https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |title=Aaron Rodgers: Biography of a Super Bowl MVP |date=July 30, 2012 |publisher=Hyperink Inc |isbn=9781614646129 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203201742/https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |archive-date=February 3, 2021 |url-status=live}}</ref>
Insyd 2003, Rodgers tie de school season record for 300-yard games plus five wey he set a school record for de lowest percentage of passes dem intercept at 1.43%.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref>
==== 2004 season ====
As a junior, Rodgers lead Cal to a 10–1 record den top-five ranking at de end of de regular season, plus dema only loss a 23–17 loss at {{nowrap|No. 1}} USC.<ref>{{Cite web |title=2004 California Golden Bears Schedule and Results |url=https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |url-status=live |archive-url=https://web.archive.org/web/20180312085053/https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref> Insyd dat game, Rodgers set a school record for consecutive passes dem plete plus 26 wey he tie an NCAA record plus 23 consecutive passes dem plete insyd one game.<ref>{{Cite web |last=Lee |first=Ted |date=October 10, 2004 |title=It was there for the taking |url=https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-url=https://web.archive.org/web/20191205183922/https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-date=December 5, 2019 |access-date=September 13, 2019 |website=BearTerritory.net}}</ref> Na he set a Cal single-game record for passing completion percentage of 85.3.<ref>{{Cite web |last=Lowry |first=Matthew |date=November 15, 2019 |title=Trojans Throwback: 2004 USC vs California |url=https://www.conquestchronicles.com/football/2019/11/15/20966700/trojans-throwback-2004-usc-vs-california |access-date=May 30, 2024 |work=Conquest Chronicles}}</ref><ref>{{Cite web |last=Wharton |first=David |date=October 10, 2004 |title=Rodgers Can't See It Through to Completion |url=https://www.latimes.com/archives/la-xpm-2004-oct-10-sp-uscside10-story.html |access-date=May 30, 2024 |work=Los Angeles Times}}</ref> Rodgers dey hold de Cal career record for lowest percentage of passes dem intercept at 1.95 percent.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref> Rodgers ein performance set up de Golden Bears at first den goal plus 1:47 remaining den a chance for de game-winning touchdown. On de first play of USC ein goal line stand, Rodgers throw an incomplete pass. Na dis be followed by a second-down sack by [[Manuel Wright]].<ref name="Cal Vs USC 2004" /> After a timeout den Rodgers ein incomplete pass on third down, USC stop Cal ein run play to win de game.<ref name="Cal Vs USC 2004" /> Rodgers comment say na e be "frustrating dat we no fi get de job done."<ref name="Cal Vs USC 2004">{{Cite web |date=October 9, 2004 |title=Trojans' defense stymies Cal QB at first-and-goal |url=http://scores.espn.go.com/ncf/recap?gameId=242830030 |url-status=dead |archive-url=https://web.archive.org/web/20170817065913/http://scores.espn.com/ncf/recap?gameId=242830030 |archive-date=August 17, 2017 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Overall, he fini de 2004 season plus 2,566 passing yards, 24 touchdowns, den eight interceptions. Ein 66.1% pass completion percentage lead de Pac-10.<ref>{{Cite web |title=Aaron Rodgers 2004 Game Log |url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |url-status=live |archive-url=https://web.archive.org/web/20180312084136/https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref><ref>{{Cite web |title=2004 Pacific-10 Conference Leaders |url=https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |url-status=live |archive-url=https://web.archive.org/web/20180328231847/https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Sports Reference]]}}</ref> He fini ninth insyd Heisman Trophy voting.<ref>{{Cite web |title=2004 Heisman Trophy Voting |url=https://www.sports-reference.com/cfb/awards/heisman-2004.html |access-date=December 2, 2022 |website=[[Sports Reference]] |language=en}}</ref>
After na dem pick Texas over Cal for a Rose Bowl berth, na dem award de fourth-ranked Bears a spot insyd de Holiday Bowl, wich dem loose to Texas Tech, 45–31.<ref>{{Cite web |date=December 15, 2017 |title=2004 Holiday Bowl: Cal caught in Texas Tech's Air Raid |url=https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208021644/https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> After de season, Rodgers decide to forgo ein senior season to enter de 2005 NFL draft.<ref>{{Cite web |date=January 6, 2005 |title=Who to watch in 2005 |url=http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |url-status=live |archive-url=https://web.archive.org/web/20190426144539/http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |archive-date=April 26, 2019 |access-date=February 15, 2012 |website=Chico News & Review}}</ref>
== Professional career ==
=== 2005 NFL draft ===
Na Rodgers be expected to be selected early insyd de 2005 NFL draft as he post impressive numbers as a junior plus Cal, throwing for 2,320 yards plus a 67.5 completion rate insyd de regular season. He throw for 24 touchdowns den only eight interceptions insyd ein last college season, impressing chaw NFL scouts. Na dem comment say na he be a "talented strong-armed junior"<ref name="Draft Insider">{{Cite web |title=NFL Draft – QB Aaron Rodgers |url=http://www.draftinsiders.com/node/1288 |url-status=dead |archive-url=https://web.archive.org/web/20120111054622/http://www.draftinsiders.com/node/1288 |archive-date=January 11, 2012 |access-date=December 9, 2011 |website=DraftInsiders.com}}</ref> wey dey "combine arm strength, mechanics den delivery to make all de throws", buh dem note say ein stats fi be inflated secof playing insyd a quarterback-friendly system den dat he go need to adjust to de more elaborate defensive schemes of de NFL.<ref name="Draft Insider" />
Before de draft, na Rodgers be confident say he go be drafted to de San Francisco 49ers, de team he support den grow up near,<ref name="Bensiger">{{Cite AV media |url=https://www.youtube.com/watch?v=8_a6O3vdlU0 |title=In Depth with Graham Bensinger: Aaron Rodgers: Thought I'd be a 49er |date=December 21, 2016 |last=Bensinger |first=Graham |type=Television production, YouTube video |access-date=December 26, 2016 |archive-url=https://ghostarchive.org/varchive/youtube/20211212/8_a6O3vdlU0 |archive-date=December 12, 2021 |url-status=live |orig-year=2010}}</ref> wey possess de No. 1 overall pick insyd de draft.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> De 49ers, however, draft quarterback [[Alex Smith]] out of Utah instead, wey Rodgers slid all de way down to de 24th overall pick by de Green Bay Packers. Na Rodgers say he experience much angst den restlessness wen waiting to be selected several hours into de draft, as na he expect einself to be selected much sooner.<ref name="Bensiger" /> Rodgers ein slip to de 24th selection den de Packers choosing to pick [[Brett Favre]] ein future replacement cam be one of de biggest stories of de draft, though na he still be de second quarterback dem select. Na ein drop insyd de draft later be ranked number one on de NFL Network ein Top 10 Draft Day Moments.<ref>{{Cite web |last=Currie |first=David |date=April 27, 2017 |title=NFL Draft: Top 10 Moments – Aaron Rodgers falling to Tim Tebow trade |url=https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |url-status=live |archive-url=https://web.archive.org/web/20200727131640/https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |archive-date=July 27, 2020 |access-date=September 13, 2019 |website=Sky Sports}}</ref> Chaw teams wey dey draft between de second den 23rd positions get positional needs more pressing dan quarterback.<ref name="ESPN Column">{{Cite web |last=Clayton |first=John |date=April 23, 2005 |title=Clayton: Waiting is the hardest part |url=https://www.espn.com/nfl/draft05/columns/story?columnist=clayton_john&id=2044646 |url-status=live |archive-url=https://web.archive.org/web/20160702194839/http://espn.go.com/nfl/draft05/columns/story?id=2044646&columnist=clayton_john |archive-date=July 2, 2016 |access-date=April 27, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |title=2005 NFL Draft Listing |url=https://www.pro-football-reference.com/years/2005/draft.htm |url-status=live |archive-url=https://web.archive.org/web/20170921001516/https://www.pro-football-reference.com/years/2005/draft.htm |archive-date=September 21, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers be one of six quarterbacks wey [[Jeff Tedford]] coach to be drafted insyd de first round of an NFL draft, joining [[Trent Dilfer]], [[Akili Smith]], [[David Carr (American football)|David Carr]], [[Joey Harrington]] den [[Kyle Boller]].<ref>{{Cite news|last=Greenberg|first=Steve|date=November 20, 2012|title=Jeff Tedford developed Aaron Rodgers, but recent QBs struggled|work=Sporting News|url=http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|url-status=live|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20161230042613/http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|archive-date=December 30, 2016}}</ref>
=== Green Bay Packers ===
==== Backup years: 2005–2007 ====
Insyd August 2005, Rodgers agree to a reported five-year, $7.7 million deal wey include $5.4 million in guaranteed money wey e get de potential to pay am as much as $24.5 million if na dem meet all incentives den escalators.<ref name="Sportrac Contract">{{Cite web |title=Aaron Rodgers Contract Breakdown |url=https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |url-status=live |archive-url=https://web.archive.org/web/20210506052810/https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |archive-date=May 6, 2021 |access-date=November 15, 2021 |website=Spotrac.com |language=en-US}}</ref>
Rodgers spend ein rookie season as de Packers dema backup quarterback behind Brett Favre.<ref>{{Cite web |title=2005 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2005.htm |url-status=live |archive-url=https://web.archive.org/web/20211107183417/https://www.pro-football-reference.com/teams/gnb/2005.htm |archive-date=November 7, 2021 |access-date=December 8, 2019 |website=[[Pro Football Reference]]}}</ref> Na de Packers be 4–12 at dis point wey he receive ein first extended look insyd de opening preseason game against de San Diego Chargers after replacing Favre.<ref name="Chargers Vs Packers 2005 Preseason">{{Cite web |date=August 11, 2005 |title=Favre completes nine of 10 passes for 91 yards, TD |url=http://scores.espn.go.com/nfl/recap?gameId=250811009 |archive-url=https://web.archive.org/web/20180127084112/https://www.espn.com/nfl/recap?gameId=250811009 |archive-date=January 27, 2018 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd ein first NFL game, Rodgers plete two out of seven passes wey na dem sack am twice. He continue to struggle thru de preseason, before ending de preseason by converting two third downs den throwing a touchdown pass to tight end [[Ben Steele]] against de Tennessee Titans.<ref name="GB Vs Tennesee">{{Cite web |date=September 1, 2005 |title=Green Bay 21, Tennessee 17 |url=http://scores.espn.go.com/nfl/recap?gameId=250901010 |url-status=dead |archive-url=https://web.archive.org/web/20131105175854/http://scores.espn.go.com/nfl/recap?gameId=250901010 |archive-date=November 5, 2013 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Once de regular season begin, Rodgers see very little action dat year. He play against de New Orleans Saints insyd de fourth quarter of a 52–3 victory, wey he plete ein first career pass to fullback [[Vonta Leach]] for 0 yards.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> On {{nowrap|December 19, 2005,}} Rodgers enter de game against de Baltimore Ravens at de end of de third quarter insyd a 48–3 loss.<ref name="Green Bay Bio" /> He plete eight of 15 passes for 65 yards den an interception.<ref name="Packers Vs. Ravens 2005">{{Cite web |date=December 20, 2005 |title=Boller outplays Favre in Ravens' rout of Packers |url=http://scores.espn.go.com/nfl/recap?gameId=251219033 |url-status=dead |archive-url=https://web.archive.org/web/20121023103816/http://scores.espn.go.com/nfl/recap?gameId=251219033 |archive-date=October 23, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref>
After de Packers dema losing season, na dem fire den replace head coach [[Mike Sherman]] by [[Mike McCarthy]].<ref name="Packers Fire Sherman">{{Cite news|date=January 2, 2006|title=Packers fire coach Mike Sherman|work=Yahoo! Sports|url=https://sports.yahoo.com/nfl/news?slug=packerssherman|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20140426105024/https://sports.yahoo.com/nfl/news?slug=packerssherman|archive-date=April 26, 2014}}</ref><ref name="Packers to hire 49ers">{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=January 12, 2006 |title=Packers to hire 49ers' McCarthy as coach |url=https://www.espn.com/nfl/news/story?id=2288985 |url-status=live |archive-url=https://web.archive.org/web/20121014050433/http://sports.espn.go.com/nfl/news/story?id=2288985 |archive-date=October 14, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]]}}</ref> Rodgers then be placed insyd McCarthy ein "Quarterback school" for six hours a day several times a week.<ref name="Journal Sentinel">{{Cite web |last=Silverstein |first=Tom |date=September 7, 2008 |title=The Education of Aaron Rodgers |url=http://www.jsonline.com/sports/packers/32579374.html |url-status=live |archive-url=https://web.archive.org/web/20101223123643/http://www.jsonline.com/sports/packers/32579374.html |archive-date=December 23, 2010 |access-date=May 11, 2012 |website=Milwaukee Journal Sentinel}}</ref> Dis focus on working on Rodgers ein motor skills such as hand-eye coordination, finger dexterity, den mechanics.<ref name="New York Times QB School">{{Cite news|last=Bishop|first=Greg|date=December 2, 2011|title=The Education of a Quarterback|work=The New York Times|url=https://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|url-status=live|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20120501123445/http://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|archive-date=May 1, 2012}}</ref> McCarthy sanso work on Rodgers ein release point, moving am from right beside de ear hole of ein helmet to further below am, to give am a smoother release.<ref name="Aaron Rodgers Leader of The Pack">{{Cite book |last=Reischel |first=Rob |title=Aaron Rodgers: Leader of the Pack: An Intimate Portrait of a Super Bowl MVP |date=March 1, 2011 |publisher=Triumph Books |isbn=978-1-60078-645-7 |language=English}}</ref> Wen de 2006 preseason begin, Rodgers play as de backup insyd all four games; he plete 22 out 38 passes for 323 yards den three touchdowns.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> Rodgers see very little action during de 2006 season, buh did step insyd briefly on {{nowrap|October 2}} against de Philadelphia Eagles wen Favre lef de game secof injury.<ref name="Green Bay Bio" /> On {{nowrap|November 19, 2006,}} Rodgers break ein left foot while playing against de New England Patriots insyd a 35–0 defeat at home, filling insyd for an injured Favre, wey Rodgers miss de remainder of de 2006 season.<ref name="Journal Sentinel" />
Following de team ein season-ending victory at Chicago, Favre announce say he go stay plus de Packers for de 2007 season, again postponing Rodgers ein hopes of becoming de Packers dema starting quarterback.<ref name="Favre">{{Cite web |last=Silverstein |first=Tom |date=January 7, 2007 |title=Favre leaves lasting impression |url=http://www.jsonline.com/news/milwaukee/29212859.html |url-status=dead |archive-url=https://web.archive.org/web/20120908152601/http://www.jsonline.com/news/milwaukee/29212859.html |archive-date=September 8, 2012 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref> Prior to de 2007 season, rumors surface about a potential trade involving Rodgers insyd wich he go be traded to de Oakland Raiders for wide receiver [[Randy Moss]].<ref>{{Cite web |date=March 18, 2007 |title=Packers GM insists QB Rodgers not on trading block |url=https://www.espn.com/nfl/news/story?id=2803272 |url-status=live |archive-url=https://web.archive.org/web/20121107040642/http://sports.espn.go.com/nfl/news/story?id=2803272 |archive-date=November 7, 2012 |access-date=December 30, 2010 |website=[[ESPN.com]]}}</ref> However, Moss be traded to de Patriots during de second day of de 2007 NFL draft, wey Rodgers stay insyd Green Bay.<ref>{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=April 29, 2007 |title=Pats acquire WR Moss from Raiders for draft pick |url=https://www.espn.com/nfl/draft07/news/story?id=2853116 |url-status=live |archive-url=https://web.archive.org/web/20171229132248/http://www.espn.com/nfl/draft07/news/story?id=2853116 |archive-date=December 29, 2017 |access-date=January 1, 2018 |website=[[ESPN.com]]}}</ref>
Rodgers step in wen na Favre injure insyd de second quarter against de Dallas Cowboys on ''Thursday Night Football'' on {{nowrap|November 29, 2007}}.<ref name="Cowboys Versus Packers 2007">{{Cite web |date=November 30, 2007 |title=Cowboys hold off Favre-less Packers to clinch playoff berth |url=http://scores.espn.go.com/nfl/recap?gameId=271129006 |url-status=dead |archive-url=https://web.archive.org/web/20121111035600/http://scores.espn.go.com/nfl/recap?gameId=271129006 |archive-date=November 11, 2012 |access-date=May 12, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers plete 18 passes for 201 yards, plus no interceptions.<ref name="Cowboys Versus Packers 2007" /> He sanso throw ein first touchdown pass buh na he be sacked three times.<ref name="Cowboys Versus Packers 2007" /> Rodgers bring de team back from a 17-point deficit to a 3-point deficit, buh de Cowboys go on to win 37–27.<ref name="Cowboys Versus Packers 2007" />
==== 2008: Transition to starter ====
[[File:AaronRodgers.jpg|left|thumb|Rodgers going down de tunnel at Lambeau Field insyd 2008]]
Favre ein retirement announcement on {{nowrap|March 4, 2008,}} open up de Packers dema starting quarterback position to Rodgers for de 2008 season. Although Favre decide to return from retirement, he be traded to de New York Jets, wich mean say Rodgers go cam be de starter.<ref>{{Cite web |last=Nickel |first=Lori |date=March 9, 2008 |title=Rodgers preparing to assume control |url=http://www.jsonline.com/story/index.aspx?id=726140 |url-status=dead |archive-url=https://web.archive.org/web/20081007044908/http://www.jsonline.com/story/index.aspx?id=726140 |archive-date=October 7, 2008 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref>
Rodgers quickly prove say na he be one of de best quarterbacks insyd de league by passing for 4,038 yards insyd ein first season as a starter as well as throwing for 28 touchdowns den only 13 interceptions. As of de 2025 season, dis still dey stand as de most interceptions he throw insyd a season.<ref>{{Cite web |title=Aaron Rodgers 2008 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |url-status=live |archive-url=https://web.archive.org/web/20180313183821/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Plus Rodgers making ein debut as a starter, de Packers beat de Minnesota Vikings 24–19 at Lambeau Field. Dis mark de first time since 1992 wey a quarterback oda dan Favre start a regular season game give de Packers. Rodgers end de game plus 178 yards passing den two touchdowns (one passing den one rushing).<ref name="Rodgers Debut">{{Cite web |last=Jenkins |first=Chris |date=September 10, 2008 |title=Solid debut frees Rodgers from post-Favre scrutiny |url=http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |url-status=live |archive-url=https://web.archive.org/web/20130921062040/http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |archive-date=September 21, 2013 |access-date=May 13, 2012 |website=USA Today |agency=Associated Press}}</ref> Insyd just ein second NFL start de following week, na dem vote Rodgers de FedEx Air award winner after passing for 328 yards den three touchdowns insyd a win against de Lions.<ref name="FedEx Air and Ground Winners Week 2 2008">{{Cite web |date=September 20, 2008 |title=FedEx Air and Ground Week 2 2008 Winners |url=http://www.nfl.com/videos?videoId=09000d5d80af20df |url-status=live |archive-url=https://web.archive.org/web/20090108060338/http://www.nfl.com/videos?videoId=09000d5d80af20df |archive-date=January 8, 2009 |access-date=September 20, 2008 |website=NFL Network |publisher=National Football League}}</ref>
During de fourth week of de season, Rodgers ein streak of 157 consecutive pass attempts widout an interception end wen na he be intercepted by [[Derrick Brooks]] of de Tampa Bay Buccaneers. Na de streak be de third-longest insyd franchise history behind [[Bart Starr]] (294) den Brett Favre (163).<ref name="Buccaneers">{{Cite web |date=September 29, 2008 |title=Buccaneers' defense rattles Rodgers in win over Packers |url=http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081001100738/http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |archive-date=October 1, 2008 |access-date=September 29, 2008 |publisher=National Football League}}</ref> Rodgers suffer a severe shoulder sprain insyd de game buh he continue to start den play well insyd a win against de Seattle Seahawks two weeks later.<ref name="Rodgers">{{Cite web |last=Jenkins |first=Chris |date=December 26, 2008 |title=Packers' Rodgers learns lessons from trying season |url=http://seattletimes.nwsource.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-url=https://web.archive.org/web/20150226064522/http://old.seattletimes.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-date=February 26, 2015 |access-date=May 13, 2012 |website=The Seattle Times}}</ref> Despite early successes, Rodgers be unable to win a close game during de season despite seven opportunities to do so.<ref name="Rodgers" /><ref name="Bears cap unlikely rally with OT win to stay alive in playoff race">{{Cite web |date=December 23, 2008 |title=Bears cap unlikely rally with OT win to stay alive in playoff race |url=http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081225222724/http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |archive-date=December 25, 2008 |access-date=December 23, 2008 |publisher=National Football League |agency=Associated Press}}</ref>
On {{nowrap|October 31, 2008}}, Rodgers sign a six-year, {{nowrap|$65 million}} contract extension thru de 2014 season.<ref name="Packers Sign Rodgers Through 2014">{{Cite web |date=October 31, 2008 |title=Packers sign QB Rodgers to $65M extension through 2014 |url=https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |url-status=live |archive-url=https://web.archive.org/web/20201204181536/https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |archive-date=December 4, 2020 |access-date=April 27, 2022 |publisher=National Football League |language=en-US |agency=Associated Press}}</ref><ref name="Contracts: Rodgers vs. Romo">{{Cite web |last=Silverstein |first=Tom |date=November 5, 2008 |title=Contracts: Rodgers vs. Romo |url=http://www.jsonline.com/sports/packers/33941369.html |url-status=live |archive-url=https://web.archive.org/web/20081205152249/http://www.jsonline.com/sports/packers/33941369.html |archive-date=December 5, 2008 |access-date=November 6, 2008 |website=JSOnline |publisher=Milwaukee Journal-Sentinel}}</ref> Insyd Rodgers ein first full season plus de team, de Packers fini plus a 6–10 record wey dem miss de playoffs.<ref>{{Cite web |title=2008 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2008.htm |url-status=live |archive-url=https://web.archive.org/web/20180907044946/https://www.pro-football-reference.com/teams/gnb/2008.htm |archive-date=September 7, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2009 ====
For de opening game of de 2009 season, Rodgers record ein first win insyd a comeback situation. Na de Packers dey trail at de beginning of de fourth quarter wen Rodgers plete a fifty-yard touchdown pass to wide receiver [[Greg Jennings]] plus about a minute remaining insyd de game to contribute to de 21–15 victory over de Chicago Bears.<ref>{{Cite web |last=Jenkins |first=Chris |date=December 8, 2019 |title=Rodgers brings Pack back for 21–15 win over Bears |url=https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |url-status=dead |archive-url=https://web.archive.org/web/20191208022530/https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Holland Sentinel}}</ref>
Na dem name Rodgers NFC Offensive Player of de Month for {{nowrap|October 2009}}, wen he pass for 988 yards, he plete 74.5 percent of ein passes, wey he record a passer rating over 110 for all three games he play during de month.<ref name="Rodgers, Sharper, Knox win NFC player of month honors">{{Cite web |last=Rosenthal |first=Gregg |date=October 29, 2009 |title=Rodgers, Sharper, Knox win NFC player of month honors |url=http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |url-status=live |archive-url=https://web.archive.org/web/20140112100938/http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |archive-date=January 12, 2014 |access-date=May 13, 2012 |website=ProFootballTalk.com}}</ref>
After a 4–4 start to de season den a 38–28 loss to de previously winless Buccaneers,<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – November 8th, 2009 |url=https://www.pro-football-reference.com/boxscores/200911080tam.htm |url-status=live |archive-url=https://web.archive.org/web/20171108032603/https://www.pro-football-reference.com/boxscores/200911080tam.htm |archive-date=November 8, 2017 |access-date=November 4, 2017 |website=[[Pro Football Reference]]}}</ref> de team begin to heat up. Rodgers lead de Packers to five straight wins, insyd wich he throw for a total of 1,324 yards, nine touchdowns, den two interceptions.<ref>{{Cite web |title=Aaron Rodgers – Games 9–13 in 2009 |url=http://pfref.com/tiny/3NZjQ |url-status=live |archive-url=https://web.archive.org/web/20211201192346/https://stathead.com/tools/tiny.fcgi?id=3NZjQ |archive-date=December 1, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers win two of dema last three games, finishing de second half of de season plus a 7–1 record den an overall 11–5 record; good enough to secure a wild card playoff berth wey dem clinch de fifth seed insyd de playoffs.<ref>{{Cite web |title=Aaron Rodgers 2009 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180101211154/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2009 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2009.htm |url-status=live |archive-url=https://web.archive.org/web/20171115032207/https://www.pro-football-reference.com/teams/gnb/2009.htm |archive-date=November 15, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers set a new franchise record by scoring 461 total points (third insyd de league), breaking de previous record wey de 1996 Super Bowl team (456) hold.<ref>{{Cite web |title=2009 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180504033136/https://www.pro-football-reference.com/years/2009/ |archive-date=May 4, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=1996 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/1996/ |url-status=live |archive-url=https://web.archive.org/web/20100211094812/http://www.pro-football-reference.com/years/1996/ |archive-date=February 11, 2010 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers cam be de first quarterback insyd NFL history ever to throw for 4,000 yards insyd both of ein first two years as a starter.<ref name="Rodgers Proscout.com">{{Cite web |last=Huber |first=Bill |date=May 9, 2012 |title=Wisconsin Makes 12–12–12 'Aaron Rodgers Day' |url=http://gnb.scout.com/2/1185173.html |url-status=dead |archive-url=https://web.archive.org/web/20130701070113/http://gnb.scout.com/2/1185173.html |archive-date=July 1, 2013 |access-date=May 13, 2012 |work=Fox Sports}}</ref> He fini de season fourth insyd passing yards (4,434), touchdown passes (30), passer rating (103.2), den yards per attempt (8.2) as well as eighth insyd completion percentage (64.7%), while he sanso cam second among quarterbacks insyd rushing yards (316).<ref>{{Cite web |title=Quarterbacks by rushing yards, 2009 season |url=http://pfref.com/tiny/dkEhS |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=dkEhS |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Ein passing yardage make am second all-time insyd Packers history, behind only [[Lynn Dickey]] ein all-time single-season record.<ref>{{Cite web |title=Individual Records – Passing |url=http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |url-status=live |archive-url=https://web.archive.org/web/20210126102232/http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |archive-date=January 26, 2021 |access-date=January 8, 2011 |publisher=Packers.com}}</ref> Na ein passer rating of 103.2 sanso be third-highest insyd team history at de time, behind only [[Bart Starr]] ein 105.0 rating insyd 1966 den 104.3 rating insyd 1968 (minimum 150 attempts).<ref>{{Cite web |title=Green Bay Packers, 1950–2009, highest passer rating. |url=http://pfref.com/tiny/a4QtT |url-status=live |archive-url=https://web.archive.org/web/20211201192343/https://stathead.com/tools/tiny.fcgi?id=a4QtT |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref>
[[File:Aaron_Rodgers_-_December_27,_2009_2.jpg|thumb|Rodgers insyd 2009, before a snap]]
Insyd de Wild Card Round, de Packers play de Arizona Cardinals, de same team wey na dem previously beat de week before, 33–7.<ref>{{Cite web |last=Baum |first=Bob |date=January 4, 2010 |title=Rodgers shreds Cardinals backups in 33–7 rout |url=https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208022718/https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Rodgers den Cardinals quarterback [[Kurt Warner]] put on a show wey dem later rank second on NFL Network ein ''Top 10 Quarterback Duels''.<ref>{{Cite web |title=Top Ten Quarterback Duels |url=http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |url-status=live |archive-url=https://web.archive.org/web/20180101135801/http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |archive-date=January 1, 2018 |access-date=January 1, 2018 |publisher=National Football League}}</ref> Na Rodgers ein first pass be intercepted by [[Dominique Rodgers-Cromartie]].<ref>{{Cite web |title=Wild Card – Green Bay Packers at Arizona Cardinals – January 10th, 2010 |url=https://www.pro-football-reference.com/boxscores/201001100crd.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003908/https://www.pro-football-reference.com/boxscores/201001100crd.htm |archive-date=August 21, 2017 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Rodgers settle down after dat miscue, however, wey he fini de game completing 28 of 42 passes for 423 yards, plus four touchdown passes all insyd a second-half comeback. Ein 423 passing yards be de most by any quarterback insyd ein first playoff game as well as ein four touchdown passes den five total touchdowns.<ref>{{Cite book |last=Cohen |first=Robert W. |url=https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |title=The 50 Greatest Players in Green Bay Packers History |date=September 1, 2018 |publisher=Rowman & Littlefield |isbn=9781493031894 |language=en |access-date=September 13, 2019 |archive-url=https://web.archive.org/web/20210203205326/https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |archive-date=February 3, 2021 |url-status=live}}</ref> Warner shred de Packers dema second-ranked defense, completing 29 of 33 passes for 379 yards, five touchdowns, no interceptions, den a passer rating of 154.1. Despite Rodgers ein offensive efforts, de Packers loose de game wen he fumble on a controversial play insyd overtime. Na dem return de ball by [[Karlos Dansby]] for de winning touchdown insyd de 51–45 Cardinals victory.<ref>{{Cite news|last=Crouse|first=Karen|date=January 10, 2010|title=Cardinals' Defense Ends Shootout With Packers in Overtime|work=The New York Times|url=https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20190824010502/https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|archive-date=August 24, 2019}}</ref> Na e be de highest scoring playoff game insyd NFL history.<ref>{{Cite web |date=January 10, 2015 |title=Remembering The Day of the Highest Scoring Playoff Game in NFL History |url=http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |url-status=live |archive-url=https://web.archive.org/web/20191208022939/http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=ThePostGame.com}}</ref>
Secof ein regular season performance, Rodgers earn a trip to ein first Pro Bowl as de NFC ein third quarterback, behind [[Drew Brees]] den Brett Favre. However, after Favre drop out secof injury wey Brees replace am secof ein participation insyd Super Bowl XLIV, Rodgers cam be de NFC ein starter.<ref>{{Cite web |title=2009 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2009/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180821031640/https://www.pro-football-reference.com/years/2009/probowl.htm |archive-date=August 21, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2010: Super Bowl XLV season ====
Insyd 2010, Rodgers lead de Packers to a 2–0 start, buh then dem loose three of dema next four games, wey dey include back-to-back overtime losses. De two overtime defeats bring Rodgers ein record insyd overtime games to 0–5.<ref>{{Cite web |title=2010 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2010.htm |url-status=live |archive-url=https://web.archive.org/web/20180313175307/https://www.pro-football-reference.com/teams/gnb/2010.htm |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
At midseason, Rodgers already throw nine interceptions dem compare to only throwing seven all of de previous season, wey na he be 16th insyd de league plus an 85.3 passer rating.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 1–8 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Over de remainder of de regular season, however, ein play improve as he throw 16 touchdowns to only two interceptions, he plete 71.4% of ein passes, wey he get a passer rating of 122.0.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 9–16 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref>
Insyd {{nowrap|Week 13}}, insyd a 34–16 victory over de San Francisco 49ers, Rodgers get 298 passing yards den three touchdowns to earn ein first career NFC Offensive Player of de Week honor.<ref>{{Cite web |title=AP Game Story: Packers Topple 49ers, 34–16 |url=https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |url-status=live |archive-url=https://web.archive.org/web/20191208221408/https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=packers.com}}</ref><ref>{{Cite web |title=2010 NFL Week 13 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_13.htm |url-status=live |archive-url=https://web.archive.org/web/20180319084545/https://www.pro-football-reference.com/years/2010/week_13.htm |archive-date=March 19, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd {{nowrap|Week 14}}, he sustain ein second concussion of de season. Na dem put backup [[Matt Flynn (American football)|Matt Flynn]] into de game as Rodgers ein replacement. De Packers loose de game 7–3 to de Lions.<ref>{{Cite web |last=Lage |first=Larry |date=December 12, 2010 |title=Rodgers suffers concussion in Packers' 7–3 loss to Lions |url=https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |url-status=live |archive-url=https://web.archive.org/web/20191208023253/https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The Journal Times |agency=Associated Press}}</ref> Against de Patriots, Rodgers miss de next week ein regular season start, ending ein streak of consecutive starts at 45, wich be tied for de second longest insyd team history.<ref name="Green Bay Packers QB Matt Flynn has fine 1st road start">{{Cite web |author=<!-- not stated --> |date=June 16, 2015 |title=Matt Flynn has plenty to learn at minicamp as new Patriots backup QB |url=https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |url-status=live |archive-url=https://web.archive.org/web/20211206085002/https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |archive-date=December 6, 2021 |access-date=March 3, 2026 |website=Fox Sports |publisher= |location=}}</ref>
After dema road loss to de Patriots, de Packers find demaselves at 8–6 wey dem for win dema final two regular season games to qualify for de playoffs. Rodgers turn around de team ein performance; dem win dema final two regular season games, one of dem against de New York Giants, wer Rodgers plete 25 of 37 passes for 404 yards, plus four touchdown passes, den plus a passer rating of 139.9.<ref>{{Cite news|date=December 26, 2010|title=NFL: Rodgers, Packers hammer Giants|url=https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|url-status=live|archive-url=https://web.archive.org/web/20191208023159/https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|archive-date=December 8, 2019|access-date=December 8, 2019|website=New Haven Register|agency=Associated Press}}</ref> Na e be ein first regular season 400-yard passing game. For ein effort against de Giants, he earn ein second NFC Offensive Player of de Week honor for de 2010 season.<ref>{{Cite web |title=2010 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002511/https://www.pro-football-reference.com/years/2010/week_16.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de next game, dem defeat de Bears by a score of 10–3 insyd de regular season finale.<ref name="Packers 10, Bears 3: Nothing Comes Easy">{{Cite web |last=Wilde |first=Jason |date=January 2, 2011 |title=Packers 10, Bears 3: Nothing Comes Easy |url=http://www.channel3000.com/sports/26347682/detail.html |url-status=dead |archive-url=https://web.archive.org/web/20110208054239/http://www.channel3000.com/sports/26347682/detail.html |archive-date=February 8, 2011 |access-date=January 24, 2011 |website=Channel3000.com}}</ref>
Na dem name Rodgers de FedEx Air NFL Player of de Year for ein passing performance insyd de 2010 season.<ref>{{Cite web |title=Aaron Rodgers voted FedEx Air NFL Player of the Year |url=http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |url-status=dead |archive-url=https://web.archive.org/web/20110225154931/http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |archive-date=February 25, 2011 |access-date=February 2, 2011 |publisher=Packers.com}}</ref>
[[File:Aaron_Rodgers_-_January_2,_2011_4.jpg|right|thumb|Rodgers dey greet de fans insyd Lambeau Field during de 2010 season ein finale against de Bears]]
Plus a 10–6 record, de Packers enter de playoffs as a Wild Card den de {{nowrap|No. 6}} seed. Insyd de Wild Card Round, dem defeat de {{nowrap|No. 3}} seeded Eagles 21–16.<ref>{{Cite web |date=January 9, 2011 |title=Rodgers, Packers Beat Eagles 21–16 |url=https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |url-status=live |archive-url=https://web.archive.org/web/20191208023430/https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=CBS – New York}}</ref> Insyd de Divisional Round, Rodgers plete 31 of 36 pass attempts for 366 yards den four touchdowns insyd a 48–21 blowout victory over de {{nowrap|No. 1}} seeded Atlanta Falcons.<ref>{{Cite news|last=Newberry|first=Paul|date=January 16, 2011|title=Rodgers stars in Green Bay's 48–21 rout of Falcons|publisher=AP via Yahoo Sports|url=https://sports.yahoo.com/nfl/recap?gid=20110115001|url-status=live|access-date=January 24, 2011|archive-url=https://web.archive.org/web/20110119180042/https://sports.yahoo.com/nfl/recap?gid=20110115001|archive-date=January 19, 2011}}</ref> Na e be de most points dem score insyd Packers postseason history.<ref>{{Cite web |title=Green Bay Packers Playoff History |url=https://www.pro-football-reference.com/teams/gnb/playoffs.htm |url-status=live |archive-url=https://web.archive.org/web/20161220082023/http://www.pro-football-reference.com/teams/gnb/playoffs.htm |archive-date=December 20, 2016 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> During de contest, Rodgers tie an NFL record for consecutive playoff games plus at least three touchdown passes (3 games). Rodgers sanso set an NFL record by becoming de only quarterback to pass for ten touchdowns dem combine thru three consecutive playoff games. On {{nowrap|January 23, 2011,}} Rodgers get a 55.4 passer rating as de Packers beat de {{nowrap|No. 2}} seed Chicago Bears 21–14 win insyd de NFC Championship.<ref>{{Cite news|date=January 23, 2011|title=NFC championship: Aaron Rodgers leads Packers past Bears 21–14|work=East Bay Times|agency=Associated Press|url=https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20200724211418/https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|archive-date=July 24, 2020}}</ref>
After winning de NFC Championship, de Packers earn a trip to Super Bowl XLV against de Pittsburgh Steelers. Insyd de game, Rodgers plete 24 of 39 pass attempts for 304 yards den three touchdowns insyd de 31–25 win, wey na dem name am Super Bowl MVP for ein performance.<ref name="Layden2011">{{Cite magazine|last=Layden|first=Tim|date=February 14, 2011|title=Green And Golden: Behind the poise and precision of quarterback Aaron Rodgers and the gutsy contributions of a host of role players, the Packers burnished their championship legacy with a memorable 31—25 victory over Pittsburgh in Super Bowl XLV|url=http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|url-status=dead|archive-url=https://web.archive.org/web/20131029203436/http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|archive-date=October 29, 2013|access-date=February 11, 2011|magazine=Sports Illustrated}}</ref><ref>{{Cite web |date=February 6, 2011 |title=Aaron Rodgers tosses 3 TD passes as Packers drop Steelers to win Super Bowl XLV |url=http://espn.go.com/nfl/recap?gameId=310206009 |url-status=dead |archive-url=https://web.archive.org/web/20110225151826/http://espn.go.com/nfl/recap?gameId=310206009 |archive-date=February 25, 2011 |access-date=February 7, 2011 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Dis ultimately go be ein only Super Bowl appearance plus de Packers.
From ein playoff performance, Rodgers cam be only se third player insyd NFL history to pass for over 1,000 yards insyd a single postseason wey he sanso cam be one of only four quarterbacks to record over 300 yards passing, plus at least three touchdown passes, den no interceptions insyd a Super Bowl.<ref>{{Cite web |title=Super Bowl, 300+ pass yds, 3+ TD, 0 Int |url=http://pfref.com/tiny/1posa |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=1posa |archive-date=December 1, 2021 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> He fini plus 1,094 passing yards, nine touchdown passes, two rushing touchdowns, den two interceptions, while completing 68.2% of ein passes for a passer rating of 109.8.<ref>{{Cite web |title=Aaron Rodgers Career Playoff Stats |url=https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |url-status=live |archive-url=https://web.archive.org/web/20220427191344/https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |archive-date=April 27, 2022 |access-date=April 27, 2022 |website=StatMuse |language=en}}</ref> From dis postseason, Rodgers sanso cam be de only player to pass for at least 900 yards den rush for at least two touchdowns insyd a single postseason.<ref>{{Cite web |title=Playoffs, 900+ pass yds, 2 rush TDs |url=https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |url-status=live |archive-url=https://web.archive.org/web/20200728195759/https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |archive-date=July 28, 2020 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Na dem rank am 11th by ein fellow players on de ''NFL Top 100'' Players of 2011.<ref>{{Cite web |title=2011 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20210308170627/https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |archive-date=March 8, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2011: First MVP ====
[[File:Aaron_Rodgers_drops_back_(cropped).jpg|thumb|Rodgers dey drop back for a pass insyd 2011.]]
Secof de 2011 NFL lockout, de Packers den Rodgers no schedule unofficial off-season workouts, despite chaw teams doing so.<ref name="allgbp">{{Cite web |last=Burke |first=Kris |date=July 2, 2011 |title=No Workouts? No Problem for the Packers |url=http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-url=https://web.archive.org/web/20161229101517/http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=All Green Bay Packers}}</ref> Rodgers den de Packers quickly quel any concerns over dema readiness by defeating de Saints, wey schedule off-season workouts, 42–34. He get 312 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 8, 2011 |title=Rodgers throws 3 TDs, Packers outlast Saints 42–34 |url=https://www.dailyherald.com/article/20110908/sports/709089632/ |url-status=live |archive-url=https://web.archive.org/web/20191208023757/https://www.dailyherald.com/article/20110908/sports/709089632/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Daily Herald |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 1 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_1.htm |url-status=live |archive-url=https://web.archive.org/web/20180830192658/https://www.pro-football-reference.com/years/2011/week_1.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> After de game, Rodgers say insyd de press conference, ''"I was going to ask myself, what would have happened if we had offseason workouts? I mean, could we have started any faster and scored more points tonight?"''<ref>{{Cite web |last=Darlington |first=Jeff |date=May 25, 2016 |title=Drew Brees' absence no big deal, but July 16 deadline looms |url=https://www.nfl.com/news/drew-brees-absence-no-big-deal-but-july-16-deadline-looms-09000d5d82956d8b |url-status=live |archive-url=https://web.archive.org/web/20161208145630/http://www.nfl.com/news/story/09000d5d82956d8b/article/drew-brees-absence-no-big-deal-but-july-16-deadline-looms |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref>
Insyd Week 4, a 49–23 victory over de Denver Broncos, Rodgers get 408 passing yards, four touchdowns, den one interception wey he run for two touchdowns to earn anoda NFC Offensive Player of de Week honor.<ref>{{Cite web |date=October 2, 2011 |title=Rodgers' big day helps Packers beat Broncos 49–23 |url=https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |url-status=live |archive-url=https://web.archive.org/web/20191208025355/https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Duluth News Tribune}}</ref><ref>{{Cite web |title=2011 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180401100045/https://www.pro-football-reference.com/years/2011/week_4.htm |archive-date=April 1, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, a 24–3 victory over de St. Louis Rams, Rodgers convert on a career-high 93-yard touchdown pass to [[Jordy Nelson]].<ref>{{Cite web |last=Jenkins |first=Chris |date=October 16, 2011 |title=Packers stay perfect at 6–0, beat Rams 24–3 |url=http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |url-status=live |archive-url=https://web.archive.org/web/20181211010230/http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |archive-date=December 11, 2018 |access-date=December 10, 2018 |website=The Salt Lake Tribune}}</ref> Insyd Week 9, a 45–38 victory over de Chargers, he get 247 passing yards den four touchdowns to earn ein third NFC Offensive Player of de Week honor for de 2011 season.<ref>{{Cite web |date=November 6, 2011 |title=Packers survive Chargers' late push as Aaron Rodgers delivers again |url=https://www.espn.com/nfl/game?gameId=311106024 |url-status=live |archive-url=https://web.archive.org/web/20191210232803/https://www.espn.com/nfl/game?gameId=311106024 |archive-date=December 10, 2019 |access-date=December 8, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 9 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_9.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231451/https://www.pro-football-reference.com/years/2011/week_9.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers get off to a 13–0 start insyd 2011, tying de NFC record for most consecutive wins to start a season, buh na dem be upset by de Kansas City Chiefs 19–14 insyd week 15, ending dema winning streak at 19 games, de second-longest winning streak insyd NFL history.<ref>{{Cite web |title=Green Bay Packers at Kansas City Chiefs – December 18th, 2011 |url=https://www.pro-football-reference.com/boxscores/201112180kan.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211142/https://www.pro-football-reference.com/boxscores/201112180kan.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2011.htm |url-status=live |archive-url=https://web.archive.org/web/20171115033715/https://www.pro-football-reference.com/teams/gnb/2011.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de season plus 4,643 passing yards, 45 touchdown passes, den six interceptions, good for a passer rating of 122.5, wich as of 2024 be de highest single-season passer rating insyd NFL history.<ref>{{Cite web |title=Aaron Rodgers 2011 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |url-status=live |archive-url=https://web.archive.org/web/20180101135748/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Ein passing yards, touchdown passes, den passer rating set single-season franchise records.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to passer rating, Rodgers lead de league insyd touchdown to interception ratio (7.5, fourth-best all-time), touchdowns passing % (9.0%, second highest all-time), den yards per attempt (9.2, fourth-highest all-time since becoming an official stat insyd 1970), while finishing second insyd both touchdown passes (45, sixth-highest all-time) den completion percentage (68.3%), as well as fifth insyd passing yards. He earn NFC Offensive Player of de Month awards for September, October, den November, den FedEx Air Player of de Week six times (Weeks 4, 5, 6, 7, 9, den 13). Insyd week four, against de Denver Broncos, Rodgers cam be de only quarterback insyd NFL history to record over 400 passing yards plus four touchdown passes, while sanso dey rush for two touchdowns insyd de same game.<ref>{{Cite web |title=List of players with at least 400 passing yards, four passing touchdowns, and two rushing touchdowns in a single game. NFL history |url=http://pfref.com/tiny/Io0Od |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=Io0Od |archive-date=December 1, 2021 |access-date=December 6, 2016 |website=[[Pro Football Reference]]}}</ref> Na he de winner of de 2011 Galloping gobbler as MVP of de Thanksgiving game between de Packers den de Lions, a 27–15 Green Bay victory, wey he tie an NFL record for consecutive games plus at least two touchdown passes (13).
De Packers cam be de fifth team insyd NFL history to finish de regular season plus a 15–1 record.<ref>{{Cite web |last=Kruse |first=Zach |date=January 2, 2012 |title=Green Bay Packers Are 5th 15–1 Team in NFL History: How Did the First 4 Finish? |url=https://bleacherreport.com/articles/1007036-green-bay-packers-are-5th-15-1-team-in-nfl-history-how-did-the-first-4-finish |access-date=May 30, 2024 |website=Bleacher Report |language=en}}</ref> Rodgers play insyd 15 of de 16 games, plus de only exception be Week 17 against de Lions, a game insyd wich Rodgers be rested after de club clinched home-field advantage for de playoffs de previous week. Insyd de game, Rodgers assist backup quarterback Matt Flynn insyd ein stellar 480-yard, six-touchdown performance by helping call some plays.<ref>{{Cite web |last=Samano |first=Simon |date=January 1, 2012 |title=Rodgers preps Flynn, calls plays during backup QB's big day |url=https://www.nfl.com/news/rodgers-preps-flynn-calls-plays-during-backup-qb-s-big-day-09000d5d825a02db |url-status=live |archive-url=https://web.archive.org/web/20190829082359/http://www.nfl.com/news/story/09000d5d825a02db/article/rodgers-preps-flynn-calls-plays-during-backup-qbs-big-day |archive-date=August 29, 2019 |access-date=September 13, 2019 |publisher=National Football League}}</ref> De Packers dema offense set franchise record for points scored insyd a season plus 560, wich as of 2016 be de third-most ever behind only de 2007 Patriots den 2013 Broncos.<ref>{{Cite web |title=All Time Most Points Scored by an NFL Team in a Season |url=https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-url=https://web.archive.org/web/20130802114230/https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-date=August 2, 2013 |access-date=December 6, 2016 |website=Sporting Charts}}</ref>
Rodgers set numerous NFL records insyd 2011. He record a passer rating of over 100.0 insyd thirteen games during de season, wey dey include twelve games in a row (both records), den a passer rating of 110.0 anaa higher insyd twelve games, wey dey include eleven in a row (sanso be records). Rodgers sanso win de league ein MVP award, receiving 48 of de 50 votes (de oda two dey go to [[Drew Brees]]). He sanso fini second, behind Brees, for de AP Offensive Player of de Year award.<ref>{{Cite web |date=February 4, 2012 |title=Saints' Brees wins AP Offensive Player of the Year award |url=https://www.nfl.com/news/saints-brees-wins-ap-offensive-player-of-the-year-award-09000d5d8269e4fe |url-status=live |archive-url=https://web.archive.org/web/20161208145625/http://www.nfl.com/news/story/09000d5d8269e4fe/article/saints-brees-wins-ap-offensive-player-of-the-year-award |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League |agency=Associated Press}}</ref> Rodgers ein 2011 season later be ranked as de third greatest passing season of all time by ESPN insyd 2013, wey na he be regarded as de most efficient.<ref name="Efficient QBS">{{Cite web |last=Seifert |first=Kevin |date=October 3, 2013 |title=Top 10 greatest quarterback seasons |url=https://www.espn.com/blog/nflnation/post/_/id/90974/ |url-status=live |archive-url=https://web.archive.org/web/20141103072453/http://espn.go.com/blog/nflnation/post/_/id/90974/ |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref>
Na de Packers be upset by de eventual Super Bowl champion New York Giants insyd de Divisional Round by de score of 37–20. De Packers dema receiving corps drop six passes insyd de loss wey Rodgers fini de game plus 264 passing yards, two touchdown passes, den an interception on ein last pass attempt.<ref>{{Cite news|last=Wang|first=Gene|date=January 15, 2012|title=NFL playoffs 2012: New York Giants stun Green Bay Packers, 37–20|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|url-status=live|access-date=December 8, 2019|archive-url=https://web.archive.org/web/20180906090329/https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|archive-date=September 6, 2018}}</ref> De 2011 Packers cam be de only team insyd NFL history to go 15–1 wey dem no win a playoff game, as well as dem be de fourth consecutive team to win at least 15 games wey dem no win de Super Bowl.<ref>{{Cite web |last=Emery |first=Mark |date=January 26, 2016 |title=As Carolina Panthers prepare for Super Bowl 50, a look at the fates of six previous teams that won at least 15 in regular season |url=http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |url-status=live |archive-url=https://web.archive.org/web/20161214152104/http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |archive-date=December 14, 2016 |access-date=December 12, 2016 |website=Daily News |location=New York}}</ref> Na dem name Rodgers to de Pro Bowl for ein 2011 season to go along plus a First-team All-Pro honor.<ref>{{Cite web |title=2011 NFL All-Pros |url=https://www.pro-football-reference.com/years/2011/allpro.htm |url-status=live |archive-url=https://web.archive.org/web/20180830185703/https://www.pro-football-reference.com/years/2011/allpro.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2011/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180830174119/https://www.pro-football-reference.com/years/2011/probowl.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> He be voted by ein fellow players as de best player insyd de league on de ''NFL Top 100'' Players of 2012.<ref>{{Cite web |title=2012 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190322201849/https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |archive-date=March 22, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2012 ====
Rodgers den de Packers start off de 2012 season plus a 30–22 loss to de 49ers.<ref>{{Cite web |last=Jenkins |first=Chris |date=September 10, 2012 |title=49ers stop Rodgers' rally, beat Packers 30–22 |url=https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025344/https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Plus de loss, Rodgers loose ein bet plus de music group Boyz II Men, wey he for wear an Alex Smith jersey during de next week of practice.<ref name="boyz">{{Cite web |last=Hanzus |first=Dan |date=September 8, 2012 |title=Aaron Rodgers' head-scratching bet with Boyz II Men |url=https://www.nfl.com/news/aaron-rodgers-head-scratching-bet-with-boyz-ii-men-0ap1000000059772 |url-status=live |archive-url=https://web.archive.org/web/20161220224204/http://www.nfl.com/news/story/0ap1000000059772/article/aaron-rodgers-headscratching-bet-with-boyz-ii-men |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Had de Packers win de game, Boyz II Men go sing de national anthem during dema next home game at Lambeau.<ref name="boyz" />
Insyd Week 4, a 28–27 victory over de Saints, Rodgers get 319 passing yards, four touchdowns, den one interception to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 28, 2012 |title=Rodgers throws late TD, Packers beat Saints 28–27 |url=https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |url-status=live |archive-url=https://web.archive.org/web/20191208025349/https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Twin Cities Pioneer Press}}</ref><ref>{{Cite web |title=2012 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020203/https://www.pro-football-reference.com/years/2012/week_4.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de undefeated Houston Texans, he tie de franchise record by throwing six touchdown passes, insyd a 42–24 victory, to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Houston Texans – October 14th, 2012 |url=https://www.pro-football-reference.com/boxscores/201210140htx.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081312/https://www.pro-football-reference.com/boxscores/201210140htx.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2012 NFL Week 6 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_6.htm |url-status=live |archive-url=https://web.archive.org/web/20210308120125/https://www.pro-football-reference.com/years/2012/week_6.htm |archive-date=March 8, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> De Texans allow only six total touchdown passes during de season up to dat point.<ref>{{Cite web |title=2012 Houston Texans, opponent TD log |url=https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |url-status=live |archive-url=https://web.archive.org/web/20180724093239/https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |archive-date=July 24, 2018 |access-date=December 31, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dis spark a five-game winning streak wich Rodgers plete 65.7% of ein passes for 1,320 yards, 17 touchdowns, two interceptions, den a passer rating of 119.1.<ref>{{Cite web |title=Rodgers, 2012, games 6–10 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227055845/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> During dat stretch, na dem name Rodgers NFC Offensive Player of de Month for October.<ref>{{Cite web |date=March 27, 2015 |title=Packers QB Rodgers leads group of NFC's best for October |url=https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |url-status=live |archive-url=https://web.archive.org/web/20200724202413/https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |archive-date=July 24, 2020 |access-date=September 13, 2019 |publisher=Fox News}}</ref> Insyd Week 15, Rodgers throw for 291 yards den three touchdowns to lead de Packers past de Bears, 21–13, making dem NFC North champions for de second consecutive year.<ref>{{Cite web |date=December 16, 2012 |title=Packers bounce Bears to clinch NFC North |url=https://www.wtsp.com/article/sports/nfl/packers-bounce-bears-to-clinch-nfc-north/67-376020825 |access-date=December 8, 2019 |publisher=WTSP}}</ref> Insyd de season finale, despite Rodgers go 28 of 40 for 365 yards, four touchdowns, no interceptions den a passer rating of 131.8, de Packers loose 37–34 against de Vikings.<ref>{{Cite web |date=December 30, 2012 |title=Vikings beat Packers 37–34, earn playoff berth |url=https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |url-status=live |archive-url=https://web.archive.org/web/20191208025350/https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=HeraldNet.com |agency=Associated Press}}</ref> Dis end de Packers dema twelve-game winning streak against NFC North opponents.
De Packers fini plus an 11–5 record, first insyd de NFC North, wey dem clinch de #3-seed insyd de NFC playoffs.<ref>{{Cite web |title=2012 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2012 |url-status=live |archive-url=https://web.archive.org/web/20180127072019/https://www.pro-football-reference.com/years/2012/ |archive-date=January 27, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers lead de league for de second straight year insyd passer rating (108.0) touchdowns passing % (7.1%), den touchdown-to-interception ratio (4.875), while finishing second insyd touchdown passes (39), third insyd completion percentage (67.2%), fifth insyd yards per attempt (7.78), den eighth insyd passing yards (4,295).<ref>{{Cite web |title=Aaron Rodgers 2012 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |url-status=live |archive-url=https://web.archive.org/web/20180101135930/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd de playoffs, de Packers defeat de Minnesota Vikings 24–10 insyd de Wild Card Round. Rodgers plete 23 of 33 passes to ten different players for 274 yards den a touchdown.<ref>{{Cite web |date=January 5, 2013 |title=Ponder-less Vikings fall to Packers in wild-card game |url=https://www.nfl.com/news/ponder-less-vikings-fall-to-packers-in-wild-card-game-0ap1000000122612 |url-status=live |archive-url=https://web.archive.org/web/20191208025349/http://www.nfl.com/news/story/0ap1000000122612/printable/ponderless-vikings-fall-to-packers-in-wildcard-game |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=NFL.com}}</ref> De 49ers beat dema 45–31 insyd de Divisional Round.<ref>{{Cite web |last=Farmer |first=Sam |date=January 13, 2013 |title=NFC playoffs: 49ers topple Packers 45–31 |url=https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025348/https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Chicago Tribune}}</ref> Rodgers plete 26 of 39 passes for 257 yards, two touchdowns, den an interception, while sanso dey rush for 28 yards, insyd de losing effort. He earn ein third career Pro Bowl nomination for ein performance insyd de 2012 season.<ref>{{Cite web |title=2012 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2012/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180316023449/https://www.pro-football-reference.com/years/2012/probowl.htm |archive-date=March 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2013.<ref>{{Cite web |title=2013 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200406154219/https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |archive-date=April 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2013 ====
On April 26, 2013, de Packers den Rodgers agree to a 5-year, $110 million contract extension wey dey make am de highest paid player insyd NFL history.<ref>{{Cite web |last1=Schefter |first1=Adam |last2=Mortensen |first2=Chris |date=April 26, 2013 |title=Source: Rodgers agrees to $110M extension |url=https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |url-status=live |archive-url=https://web.archive.org/web/20210414204446/https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |archive-date=April 14, 2021 |access-date=April 14, 2021 |website=[[ESPN.com]] |agency=Associated Press}}</ref> De Packers begin dema 2013 season against de reigning NFC champions, de 49ers, de team wey sanso end dema playoff run de previous season. Rodgers go 21 for 37 insyd completions, 333 yards, three touchdowns den an interception insyd de 34–28 loss.<ref>{{Cite web |title=Green Bay Packers at San Francisco 49ers – September 8th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309080sfo.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080800/https://www.pro-football-reference.com/boxscores/201309080sfo.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers get a career-high 480 passing yards to tie de franchise record insyd de 38–20 home-opener win against de Washington Redskins. He earn NFC Offensive Player of de Week for ein effort against de Redskins.<ref>{{Cite web |title=Washington Redskins at Green Bay Packers – September 15th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309150gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081525/https://www.pro-football-reference.com/boxscores/201309150gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2013 NFL Week 2 Leaders & Scores |url=https://www.pro-football-reference.com/years/2013/week_2.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020211/https://www.pro-football-reference.com/years/2013/week_2.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 335 passing yards insyd de first half set a club record.<ref name="w930">{{cite web |last=Huber |first=Bill |date=September 15, 2013 |title=Monster Half Propels Rodgers to Record Day |url=https://247sports.com/nfl/green-bay-packers/Article/monster-half-propels-rodgers-to-record-day-105030089/ |access-date=October 23, 2024 |website=247Sports}}</ref> He sanso cam be de first quarterback since [[Y. A. Tittle]] insyd 1962 to throw for at least 480 yards, four touchdowns den no interceptions insyd a game.<ref>{{Cite web |title=480+ passing yards, 4+ passing touchdowns, no interceptions, NFL history |url=http://pfref.com/tiny/rQ3Cc |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=rQ3Cc |archive-date=December 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers see ein NFL record of 41 consecutive games widout throwing multiple interceptions come to an end insyd a loss to de Cincinnati Bengals by de score of 34–30.<ref>{{Cite web |last=White |first=Scott |date=September 22, 2013 |title=Aaron Rodgers doesn't play usual mistake-free football |url=https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |url-status=live |archive-url=https://web.archive.org/web/20201025173245/https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |archive-date=October 25, 2020 |access-date=September 13, 2019 |website=CBS Sports}}</ref><ref>{{Cite web |title=Green Bay Packers at Cincinnati Bengals – September 22nd, 2013 |url=https://www.pro-football-reference.com/boxscores/201309220cin.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081320/https://www.pro-football-reference.com/boxscores/201309220cin.htm |archive-date=August 29, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
After de loss to de Bengals, de Packers start rolling, winning dema next four games. Against de Ravens, de Packers loose two receivers: [[Randall Cobb (American football)|Randall Cobb]] den [[James Jones (wide receiver)|James Jones]]. Na Cobb be sidelined plus a broken leg den Jones plus a sprained PCL.<ref>{{Cite web |title=Green Bay Packers' Randall Cobb, James Jones injured |url=https://www.nfl.com/news/green-bay-packers-randall-cobb-james-jones-injured-0ap2000000261308 |url-status=live |archive-url=https://web.archive.org/web/20170722195052/http://www.nfl.com/news/story/0ap2000000261308/article/green-bay-packers-randall-cobb-james-jones-injured |archive-date=July 22, 2017 |access-date=September 13, 2019 |publisher=National Football League}}</ref> Against de Cleveland Browns, na dem cart tight end [[Jermichael Finley]] off de field plus a bruised spinal cord, leaving Rodgers widout three of ein top four offensive weapons.<ref>{{Cite web |last=Lee |first=Caroline |date=October 21, 2013 |title=Jermichael Finley, Packers tight end, in ICU with neck injury |url=https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |url-status=live |archive-url=https://web.archive.org/web/20190203150423/https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |archive-date=February 3, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref> De next week against de Vikings, Rodgers plete 24 of 29 passes insyd a 44–31 victory.<ref>{{Cite web |title=Green Bay Packers at Minnesota Vikings – October 27th, 2013 |url=https://www.pro-football-reference.com/boxscores/201310270min.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080251/https://www.pro-football-reference.com/boxscores/201310270min.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
At home against de Bears insyd Week 9, na Rodgers be sacked by [[Shea McClellin]]. He fracture ein left clavicle insyd de process, den de speculation for ein return dem range from a few weeks to an indefinite timetable wey cam be a weekly spectacle of whether anaa wen he fi be cleared to san play.<ref>{{Cite web |date=November 5, 2013 |title=Aaron Rodgers has fractured collarbone, could miss a month |url=http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |url-status=live |archive-url=https://web.archive.org/web/20131111030547/http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |archive-date=November 11, 2013 |access-date=November 6, 2013 |website=[[The Denver Post]] |agency=Associated Press}}</ref><ref name="Aaron Rodgers wasn">{{Cite web |last=Mortensen |first=Chris |author-link=Chris Mortensen |date=December 22, 2013 |title=Aaron Rodgers wasn't close to return |url=https://www.espn.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |url-status=live |archive-url=https://web.archive.org/web/20141103072203/http://espn.go.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref><ref name="Rodgers not ready to play">{{Cite web |last=Dougherty |first=Pete |date=December 19, 2013 |title=Packers' Aaron Rodgers 'looks ready to play' but probably won't |url=https://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |url-status=live |archive-url=https://web.archive.org/web/20150805151227/http://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |archive-date=August 5, 2015 |access-date=November 3, 2014 |website=USA Today}}</ref> Before Rodgers break ein collarbone, de Packers win four straight games to climb to de top of de NFC North division plus a 5–2 record. Plus Rodgers injured den unable to play, de Packers go winless over de next five weeks to fall to 5–6–1 on de season.<ref>{{Cite web |title=Green Bay Packers 2013 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2013/gamelog/ |access-date=October 23, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
After rallying insyd December behind re-acquired backup quarterback Matt Flynn,<ref name="Backup Flynn">{{Cite web |last=Dunne |first=Tyler |date=December 16, 2013 |title=Stoic Matt Flynn delivers Packers win |url=http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |url-status=live |archive-url=https://web.archive.org/web/20141103071905/http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=web |publisher=Milwaukee-Wisconsin Journal Sentinel}}</ref> de Packers fight dema way back to a 7–7–1 record going into de final week of de season. On December 26, Packers head coach Mike McCarthy announce Rodgers go return den start insyd de season-finale showdown against de Chicago Bears at Soldier Field for de NFC North championship.<ref>{{Cite news|last=Breech|first=John|date=December 26, 2013|title=Packers make it official: QB Aaron Rodgers will start vs. Bears|work=CBS Sports|url=http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|url-status=live|access-date=December 27, 2013|archive-url=https://web.archive.org/web/20131227003701/http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|archive-date=December 27, 2013}}</ref> Returning from de injury, Rodgers throw for 318 yards, two touchdowns, den two interceptions insyd de regular season finale against de Bears.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – December 29th, 2013 |url=https://www.pro-football-reference.com/boxscores/201312290chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081317/https://www.pro-football-reference.com/boxscores/201312290chi.htm |archive-date=August 29, 2017 |access-date=May 5, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Trailing 27–28 plus under a minute to go insyd de game den facing de third 4th down of de drive, a 4th & 8 from de 48-yard line, Rodgers connect plus Cobb, wey sanso dey return for ein first game since breaking ein leg insyd Week 6, for a 48-yard game-winning touchdown to clinch de NFC North den earn de right to host a home playoff game against de San Francisco 49ers as de fourth seed.<ref>{{Cite magazine|last=Bedard|first=Greg A.|date=December 30, 2013|title=Answered Prayers|url=https://www.si.com/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|url-status=live|archive-url=https://web.archive.org/web/20211201192432/https://www.si.com/nfl/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|archive-date=December 1, 2021|access-date=September 13, 2019|magazine=Sports Illustrated}}</ref> Rodgers win de 2013 GMC Never Say Never Award for de come-from-behind, division-winning touchdown pass. Rodgers fini fifth insyd de league insyd passer rating (104.9), completion percentage (66.6%), den yards per game (282) while he sanso fini second insyd yards per attempt (8.75).<ref>{{Cite web |title=2013 NFL Passing |url=https://www.pro-football-reference.com/years/2013/passing.htm |access-date=July 17, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
Rodgers san lead de Packers to de playoffs, dis time plus an 8–7–1 record wey na dem be up against de team wey eliminate dem last year insyd de Divisional Round of de playoffs, de 49ers.<ref>{{Cite web |title=2013 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2013.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030637/https://www.pro-football-reference.com/teams/gnb/2013.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de 49ers for de fourth consecutive time, 23–20 on a last second field goal at Lambeau Field, insyd de Wild Card Round. Rodgers record only 177 yards passing, ein lowest insyd a playoff game, den one touchdown pass.<ref>{{Cite web |title=Wild Card – San Francisco 49ers at Green Bay Packers – January 5th, 2014 |url=https://www.pro-football-reference.com/boxscores/201401050gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170821043340/https://www.pro-football-reference.com/boxscores/201401050gnb.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> He sanso be ranked No. 11 by ein fellow players on de ''NFL Top 100'' Players of 2014.<ref>{{Cite web |title=2014 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112164602/https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2014: Second MVP ====
[[File:Aaron_rodgers_2014.jpg|right|thumb|Rodgers insyd 2014]]
De Packers dema 2014 regular season debut cam against de defending Super Bowl champion Seahawks—a game insyd wich dem go go on to loose 36–16.<ref>{{Cite web |title=Green Bay Packers at Seattle Seahawks – September 4th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409040sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182750/https://www.pro-football-reference.com/boxscores/201409040sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 2, de team begin de game plus a 21–3 deficit against de Jets, bug dem cam back wey dem win 31–24.<ref>{{Cite web |title=New York Jets at Green Bay Packers – September 14th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409140gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829120234/https://www.pro-football-reference.com/boxscores/201409140gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De 18-point comeback mark de biggest comeback insyd Rodgers ein career.<ref>{{Cite web |last=Imig |first=Paul |date=September 14, 2014 |title=Rodgers overcomes 'nerves' to complete biggest comeback of career |url=http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |url-status=live |archive-url=https://web.archive.org/web/20140918022944/http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |archive-date=September 18, 2014 |access-date=September 13, 2019 |work=Fox Sports}}</ref> Insyd de third week of de season, de Packers offense be shut down by de Lions dema defense, 19–7.<ref>{{Cite web |title=Green Bay Packers at Detroit Lions – September 21st, 2014 |url=https://www.pro-football-reference.com/boxscores/201409210det.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211151/https://www.pro-football-reference.com/boxscores/201409210det.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Na de Packers dema 7 points be de fewest points dem allow insyd a game Rodgers fini; na de 223 yards of total Packer offense be de lowest since Rodgers take over at quarterback den ein 162 passing yards sanso be a career low. For de third consecutive season, na de Packers be off to a 1–2 start. Insyd those three games, Rodgers throw five touchdowns den one interception combined, plus a passer rating of 95.1. Amid widespread concern, Rodgers telll de fans den de media, "''R-E-L-A-X. Relax. We're going to be OK."''<ref>{{Cite web |last=Wilde |first=Jason |date=September 23, 2014 |title=R-E-L-A-X (ESPN Wisconsin) |url=http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |url-status=dead |archive-url=https://web.archive.org/web/20151101051643/http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |archive-date=2015-11-01 |access-date=December 7, 2014}}</ref>
After dema loss to de Lions, de Packers go on a four-game win streak, during wich, Rodgers throw 13 touchdowns plus no interceptions.<ref>{{Cite web |title=Aaron Rodgers 2014 Game Log (Weeks 4–7) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231025726/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |archive-date=December 31, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> Insyd Week 4, a 38–17 victory over de Bears, he get 302 passing yards den four touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – September 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409280chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081419/https://www.pro-football-reference.com/boxscores/201409280chi.htm |archive-date=August 29, 2017 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180321130559/https://www.pro-football-reference.com/years/2014/week_4.htm |archive-date=March 21, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de Miami Dolphins, Rodgers lead de Packers to a game-winning drive plus less dan two minutes remaining. He plete a 4th & 10 pass to wide receiver Jordy Nelson wey he mimick [[Dan Marino]] ein famous fake spike play by completing a pass to wide receiver [[Davante Adams]] to get to within four yards of de endzone later insyd de drive.<ref>{{Cite web |last=Sherman |first=Rodger |date=October 12, 2014 |title=Packers use fake spike to beat Dolphins |url=https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |archive-date=March 30, 2019 |access-date=March 7, 2019 |website=SBNation.com}}</ref> Rodgers then plete a touchdown pass to tight end [[Andrew Quarless]] to win de game 27–24.<ref name="gmc">{{Cite web |title=2014 GMC Never Say Never Moment |url=http://www.nfl.com/voting/never-say-never/2014/REG/6 |url-status=live |archive-url=https://web.archive.org/web/20161220230141/http://www.nfl.com/voting/never-say-never/2014/REG/6 |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Dis play go later win Rodgers de GMC Never Say Never Moment of de Year Award.<ref name="gmc" /> Insyd Week 7, a 38–17 victory over de Carolina Panthers, na he be 19-of-22 for 255 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Carolina Panthers at Green Bay Packers – October 19th, 2014 |url=https://www.pro-football-reference.com/boxscores/201410190gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002513/https://www.pro-football-reference.com/boxscores/201410190gnb.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 7 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_7.htm |url-status=live |archive-url=https://web.archive.org/web/20210928154945/https://www.pro-football-reference.com/years/2014/week_7.htm |archive-date=September 28, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd a Week 8 loss against de Saints, Rodgers fini 28 of 39 for 418 yards, plus one touchdown pass den two interceptions, ending ein 212 consecutive attempts widout an interception streak<ref name="packsaintsoct">{{Cite web |last=Imig |first=Paul |date=October 27, 2014 |title=5 things we learned: Packers at Saints |url=http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |url-status=live |archive-url=https://web.archive.org/web/20170105180746/http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |archive-date=January 5, 2017 |access-date=January 5, 2017 |work=Fox Sports}}</ref>—de second longest insyd team history. Insyd de game, Rodgers injure ein hamstring wich appear to get an effect on ein play for de remainder of de game.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 27, 2014 |title=Aaron Rodgers of Green Bay Packers injures hamstring in loss |url=https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |url-status=live |archive-url=https://web.archive.org/web/20200818134022/https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |archive-date=August 18, 2020 |access-date=September 13, 2019 |website=[[ESPN.com]]}}</ref>
[[File:Rodgers_handing_off_2014.jpg|left|thumb|Rodgers handing de ball off to running back [[Eddie Lacy]] insyd 2014]]
Insyd Week 10, against de Chicago Bears, Rodgers cam be de second player insyd NFL history den de first since [[Daryle Lamonica]] insyd 1969 to throw six touchdown passes insyd de first half.<ref>{{Cite news|last=Armas|first=Genaro C.|date=November 10, 2014|title=Aaron Rodgers Throws 6 TD Passes in 1st Half As Packers Crush Bears 55–14|work=[[HuffPost]]|url=http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|url-status=live|access-date=November 27, 2014|archive-url=https://web.archive.org/web/20141112143148/http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|archive-date=November 12, 2014}}</ref> Rodgers fini 18 of 27 for 315 yards den six touchdowns despite only playing one drive insyd de second half to earn NFC Offensive Player of de Week.<ref name="nbcchi" /><ref>{{Cite web |title=2014 NFL Week 10 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_10.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020149/https://www.pro-football-reference.com/years/2014/week_10.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers set multiple records during de game: most touchdown passes of 70 anaa more yards plus 16—breaking de record dem wey Brett Favre den [[Peyton Manning]] hold, most consecutive touchdown passes widout an interception at home—he sanso break de record wey Favre den Manning, wey he cam be de first quarterback to ever have 10 touchdown passes against de same team insyd a season.<ref name="nbcchi">{{Cite web |last=Neveau |first=James |date=November 12, 2014 |title=Aaron Rodgers Suffered Back Injury vs. Bears |url=http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |url-status=live |archive-url=https://web.archive.org/web/20170105180011/http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=NBC Chicago}}</ref> De 55–14 victory tie de Packers dema 55–7 win vs. De Titans insyd 2009 for de most points wey a Rodgers-led offense score.
Insyd a Week 11 game against de 7–2 Eagles, Rodgers set a record for most consecutive attempts at home widout an interception, breaking [[Tom Brady]] ein record of 288 consecutive attempts.<ref>{{Cite web |last=Massey |first=Evan |date=November 16, 2014 |title=Packers' Aaron Rodgers Breaks Tom Brady's Record |url=https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |url-status=live |archive-url=https://web.archive.org/web/20200724201538/https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |archive-date=July 24, 2020 |access-date=September 12, 2019 |website=FanSided}}</ref> Insyd de 53–20 victory, he fini dey go 22 of 36, plus 341 passing yards, three touchdown passes den no interceptions.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – November 16th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829074637/https://www.pro-football-reference.com/boxscores/201411160gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De 8–3 Packers meet de 9–2 Patriots insyd Week 13, at [[Lambeau Field]] insyd na wat be Brady den Rodgers' first time playing against each oda as starters.<ref>{{Cite web |last=Imig |first=Paul |date=November 30, 2014 |title=Rodgers outduels Brady for win in first-ever matchup of elite QBs |url=https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |url-status=live |archive-url=https://web.archive.org/web/20190102094626/https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |archive-date=January 2, 2019 |access-date=January 1, 2019 |work=Fox Sports}}</ref> Rodgers fini dey go 24 of 38, plus 368 passing yards den two passing touchdowns insyd de 26–21 Packers victory.<ref>{{Cite web |title=New England Patriots at Green Bay Packers – November 30th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411300gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171228171554/https://www.pro-football-reference.com/boxscores/201411300gnb.htm |archive-date=December 28, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> For ein efforts insyd de month of November, he earn NFC Offensive Player of de Month.<ref>{{Cite web |date=December 4, 2014 |title=Aaron Rodgers among NFC's best for November |url=https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |url-status=live |archive-url=https://web.archive.org/web/20190812115629/https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |archive-date=August 12, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref>
Rodgers suffer a calf injury insyd Week 16, against de Buccaneers, secof severe dehydration he endure from flu-like symptoms he suffer during de week.<ref name="flu">{{Cite web |last=Demovsky |first=Rob |date=December 22, 2014 |title=Aaron Rodgers played with pulled calf |url=https://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |url-status=live |archive-url=https://web.archive.org/web/20170105180655/http://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=[[ESPN.com]]}}</ref>
Insyd de Week 17 game against de Lions, Rodgers re-injure ein left calf while extending a play den throwing a touchdown pass to [[Randall Cobb (American football)|Randall Cobb]], then na e help off de field, wey dem cart am off to de locker room. After missing a series, Rodgers re-enter de game plus de score dem tie 14–14. Despite he be less mobile plus de injury, Rodgers plete 13 of 15 passes for 129 yards den two scores against de league ein second-ranked defense. De Packers win 30–20, winning dema fourth straight NFC North title. Rodgers fini 17 of 22 for 226 yards, two touchdown passes, no interceptions, a 139.6 passer rating, den a rushing touchdown to earn ein fourth NFC Offensive Player of de Week honor for de 2014 season.<ref>{{Cite web |title=Detroit Lions at Green Bay Packers – December 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201412280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20190330032513/https://www.pro-football-reference.com/boxscores/201412280gnb.htm |archive-date=March 30, 2019 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 17 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_17.htm |url-status=live |archive-url=https://web.archive.org/web/20180226175215/https://www.pro-football-reference.com/years/2014/week_17.htm |archive-date=February 26, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers secure de second seed insyd de NFC, rewarding dem plus a playoff bye den a week off wich help Rodgers rest den rehabilitate ein injured left calf.<ref>{{Cite web |title=2014 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2014 |url-status=live |archive-url=https://web.archive.org/web/20211011053552/https://www.pro-football-reference.com/years/2014/ |archive-date=October 11, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round, na de Packers be scheduled to play de 13–4 Cowboys, wich mark de first time insyd NFL playoff history wen a team wich go undefeated at home (Packers) play against a team wich go undefeated away (Cowboys).<ref>{{Cite web |last=Imig |first=Paul |date=January 9, 2015 |title=Something has to give: Packers unbeaten at home; Cowboys 8–0 on road |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |url-status=live |archive-url=https://web.archive.org/web/20170101091540/http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |archive-date=January 1, 2017 |access-date=December 31, 2016 |work=Fox Sports}}</ref> Rodgers help secure a 26–21 victory by finishing 24 of 35 for 316 yards, three touchdowns, no interceptions, den a 125.4 passer rating.<ref>{{Cite web |title=Divisional Round – Dallas Cowboys at Green Bay Packers – January 11th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501110gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171114040923/https://www.pro-football-reference.com/boxscores/201501110gnb.htm |archive-date=November 14, 2017 |access-date=December 15, 2017 |website=[[Pro Football Reference]]}}</ref>
De Packers then travel go Seattle to face de top-seeded Seahawks insyd a rematch of de regular season opener.<ref>{{Cite web |last=Pittman |first=Travis |date=January 11, 2015 |title=Seahawks vs. Packers rematch for NFC Championship |url=https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |archive-date=July 24, 2020 |access-date=September 12, 2019 |publisher=KING}}</ref> Insyd de NFC Championship Game, na de Packers dey lead 19–7 plus just over five minutes to go, buh na de home team ein offense finally wake up den, plus de assistance of a crucial Packers special teams gaffe on an onside kick, de Seahawks lead 22–19, plus 44 seconds remaining. Rodgers quickly drive downfield to set up a tying field goal, only to watch from de sidelines as de Seahawks win de coin toss insyd overtime wey he proceed to score de game-winning touchdown on dema first possession. Rodgers be 19-for-34 for 178 yards den a touchdown, plus two interceptions insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Seattle Seahawks – January 18th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501180sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182804/https://www.pro-football-reference.com/boxscores/201501180sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de regular season first insyd touchdown-to-interception ratio (7.6), lowest interception percentage (1.0%), second insyd passer rating (112.2), yards per attempt (8.4), den touchdown passing percentage (7.1%), third insyd touchdown passes (38), seventh insyd passing yards (4,381), den ninth insyd completion percentage (65.6%).<ref>{{Cite web |title=2014 NFL Leaders and Leaderboards |url=https://www.pro-football-reference.com/years/2014/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20190915221740/https://www.pro-football-reference.com/years/2014/leaders.htm |archive-date=September 15, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> He set an NFL record for most consecutive pass attempts (512) at home widout an interception, den touchdown passes (41).
Na dem vote Rodgers de AP NFL Most Valuable Player for de 2014 season, receiving 31 votes,<ref>{{Cite web |last=Demovsky |first=Rob |date=January 31, 2015 |title=Aaron Rodgers named NFL MVP |url=https://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20161217162150/http://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |archive-date=December 17, 2016 |access-date=December 12, 2016 |publisher=[[ESPN]]}}</ref> wey dem name am NFC Offensive Player of de Year by de Kansas City Committee of 101<ref name="KC101off">{{Cite web |title=Past NFC Offensive Honorees |url=http://www.101awards.com/awards/past_nfc_offensive_honorees |url-status=dead |archive-url=https://web.archive.org/web/20161220130101/http://www.101awards.com/awards/past_nfc_offensive_honorees |archive-date=December 20, 2016 |access-date=December 13, 2016 |website=101awards.com}}</ref> den Fed-Ex Air NFL Player of de Year.<ref>{{Cite web |date=January 31, 2015 |title=2015 'NFL Honors' complete list of winners |url=https://www.nfl.com/news/2015-nfl-honors-complete-list-of-winners-0ap3000000466415 |url-status=live |archive-url=https://web.archive.org/web/20161018132754/http://www.nfl.com/news/story/0ap3000000466415/article/2015-nfl-honors-complete-list-of-winners |archive-date=October 18, 2016 |access-date=December 12, 2016 |publisher=National Football League}}</ref> He sanso be named to de AP All-Pro team as de first quarterback, receiving 44 votes while runner-up [[Tony Romo]] receive three.<ref>{{Cite web |last=Wesseling |first=Chris |date=January 2, 2015 |title=2014 All-Pro Teams: Analysis of the full rosters |url=https://www.nfl.com/news/2014-all-pro-teams-analysis-of-the-full-rosters-0ap3000000452986 |url-status=live |archive-url=https://web.archive.org/web/20140104005331/http://pro32.ap.org/article/2013-all-pro-team |archive-date=January 4, 2014 |access-date=February 4, 2015 |publisher=National Football League}}</ref> Na dem name am to de Pro Bowl for de 2014 season.<ref>{{Cite web |title=2014 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2014/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180816061701/https://www.pro-football-reference.com/years/2014/probowl.htm |archive-date=August 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am as de second best player insyd de league among ein fellow players on de ''NFL Top 100'' Players of 2015.<ref>{{Cite web |title=2015 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200508061426/https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |archive-date=May 8, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2015 ====
Insyd 2015, Rodgers get a down year by ein standards. He throw for a career low 3,821 yards insyd wich he play for at least 15 games, although he get 31 touchdowns to just eight interceptions.<ref>{{Cite web |last=Hirschhorn |first=Jason B. |date=July 6, 2016 |title=NFL Top 100: Packers' Aaron Rodgers lands at No. 6 in 2016 |url=https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |url-status=live |archive-url=https://web.archive.org/web/20211115204818/https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=ACME Packing Company |language=en}}</ref> Rodgers plete 60.7 of ein passes per, averaged only 6.7 yards per attempt wey he fini plus a passer rating of 92.7, all career lows. Na Pro Bowl wide receiver Jordy Nelson ein absence secof injury for de season be considered a contributing factor insyd Rodgers ein statistical drop dem compare to previous seasons.<ref>{{Cite web |last=Kelly |first=Danny |date=November 15, 2015 |title=Aaron Rodgers and the Packers miss Jordy Nelson more than we thought they would |url=https://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |url-status=live |archive-url=https://web.archive.org/web/20161226145804/http://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=sbnation.com}}</ref><ref>{{Cite web |date=January 19, 2016 |title=Packers hope Nelson's return will revitalize offense |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |url-status=live |archive-url=https://web.archive.org/web/20161226145654/http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |archive-date=December 26, 2016 |access-date=December 25, 2016 |work=Fox Sports}}</ref><ref>{{Cite web |last=Spofford |first=Mike |date=December 30, 2015 |title=Stats don't matter to Aaron Rodgers |url=http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |url-status=dead |archive-url=https://web.archive.org/web/20161226145201/http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=packers.com}}</ref>
Insyd Week 3, a 38–28 victory over de Chiefs, Rodgers get 333 passing yards den five touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Kansas City Chiefs at Green Bay Packers – September 28th, 2015 |url=https://www.pro-football-reference.com/boxscores/201509280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20220218210924/https://www.pro-football-reference.com/boxscores/201509280gnb.htm |archive-date=February 18, 2022 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2015 NFL Week 3 Leaders & Scores |url=https://www.pro-football-reference.com/years/2015/week_3.htm |url-status=live |archive-url=https://web.archive.org/web/20180330172357/https://www.pro-football-reference.com/years/2015/week_3.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> During Week 9 against de Panthers, he fini plus 369 passing yards, four touchdowns, den one interception. De interception cam plus only 1:47 left insyd de fourth quarter, den following de interception, Rodgers express frustration by throwing down a Microsoft Surface tablet.<ref>{{Cite web |last=Davis |first=Scott |date=November 9, 2015 |title=Aaron Rodgers angrily threw a Microsoft Surface tablet after throwing a crucial interception |url=https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |archive-date=March 30, 2019 |access-date=September 13, 2019 |website=Business Insider}}</ref> De Packers end up losing de game 29–37.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – November 8th, 2015 |url=https://www.pro-football-reference.com/boxscores/201511080car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211145/https://www.pro-football-reference.com/boxscores/201511080car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
On December 3, 2015, insyd a Week 13 match-up against de Lions, Rodgers throw a Hail Mary pass wey [[Richard Rodgers (tight end)|Richard Rodgers]] catch for 61 yards plus 0:00 left to beat de Lions 27–23, after dem extend de game secof a facemask penalty dem call on Detroit.<ref name="2015mary">{{Cite web |last=Rosenthal |first=Gregg |date=December 3, 2015 |title=Packers stun Lions on Aaron Rodgers' Hail Mary TD |url=https://www.nfl.com/news/packers-stun-lions-on-aaron-rodgers-hail-mary-td-0ap3000000593884 |url-status=live |archive-url=https://web.archive.org/web/20180408144543/http://www.nfl.com/news/story/0ap3000000593884/article/packers-stun-lions-on-miracle-td-throw-by-rodgers |archive-date=April 8, 2018 |access-date=December 25, 2016 |publisher=National Football League}}</ref> Na de play quickly be dubbed as "The Miracle in Motown."<ref>{{Cite news|last=Bennett|first=Colin|date=December 9, 2015|title=Getaway winner witnesses Motown Miracle|publisher=WTMJ|url=https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|url-status=dead|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20180312083608/https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|archive-date=March 12, 2018}}</ref><ref>{{Cite book |last=Aretha |first=David |url=https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |title=Aaron Rodgers: Champion Football Star |date=July 15, 2017 |publisher=Enslow Publishing, LLC |isbn=9780766087170 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203181206/https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |archive-date=February 3, 2021 |url-status=live}}</ref>
De Packers make de playoffs as de fifth seed insyd de NFC plus a 10–6 record.<ref>{{Cite web |title=2015 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2015.htm |url-status=live |archive-url=https://web.archive.org/web/20171010004706/https://www.pro-football-reference.com/teams/gnb/2015.htm |archive-date=October 10, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Dem defeat de Redskins 35–18 on de road insyd de Wild Card Round of de playoffs. Rodgers fini de game plus 210 yards den two passing touchdowns.<ref>{{Cite web |title=Wild Card – Green Bay Packers at Washington Redskins – January 10th, 2016 |url=https://www.pro-football-reference.com/boxscores/201601100was.htm |url-status=live |archive-url=https://web.archive.org/web/20180308042317/https://www.pro-football-reference.com/boxscores/201601100was.htm |archive-date=March 8, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round against de Cardinals, Rodgers throw a 41-yard Hail Mary touchdown pass to [[Jeff Janis]] as time expire to send de game into overtime. However, de Packers loos3 26–20 insyd overtime. Rodgers fini de game 24 for 44 for 261 yards plus two touchdowns den an interception.<ref>{{Cite web |last=Wilde |first=Jason |date=January 17, 2016 |title=Jeff Janis forces OT with Hail Mary catch, but celebration short-lived |url=https://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |url-status=live |archive-url=https://web.archive.org/web/20161213200125/http://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=[[ESPN.com]]}}</ref> Dem name am to ein fifth Pro Bowl wey na dem rank am as de sixth best player by ein peers on de ''NFL Top 100'' Players of 2016.<ref>{{Cite web |title=2015 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2015/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180308103829/https://www.pro-football-reference.com/years/2015/probowl.htm |archive-date=March 8, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2016 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190404010429/https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |archive-date=April 4, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2016 ====
[[File:Aaron_Rodgers,_Redskins_v_Packers,_Jan_2016.jpg|right|thumb|Rodgers insyd 2016]]
Thru out de first five games of de 2016 season, Rodgers ein struggles from de 2015 season appear to continue.<ref name="pff2016" /> Thru those games, he plete 60.2% of ein passes, dem average 6.5 yards per attempt, wey he post a passer rating of 88.4—all of wich na be similar to ein 2015 numbers.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log (Games 1–5) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/#127-131-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227180403/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016#127-131-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]]}}</ref> He sanso fumble five times, wey he loose two. Ein lackluster performance thru those games cause much speculation about de causes of ein problems.<ref>{{Cite web |last=Florio |first=Mike |author-link=Mike Florio |date=October 20, 2016 |title=What's wrong with Aaron Rodgers? |url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/whats-wrong-with-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20161226215024/http://profootballtalk.nbcsports.com/2016/10/20/whats-wrong-with-aaron-rodgers/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=NBC Sports |language=en-US}}</ref><ref name="pff2016">{{Cite web |last=Monson |first=Sam |date=October 17, 2016 |title=What's wrong with Aaron Rodgers and the Packers' offense? |url=https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |url-status=live |archive-url=https://web.archive.org/web/20161226214838/https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=profootballfocus.com}}</ref><ref>{{Cite web |last=Gonzalez |first=Jason |date=October 17, 2016 |title=What's wrong with the Packers? All signs point to Aaron Rodgers |url=http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |url-status=live |archive-url=https://web.archive.org/web/20161226145502/http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=Star Tribune}}</ref><ref>{{Cite web |last=Demovsky |first=Rob |date=October 20, 2016 |title=Experts weigh in on Aaron Rodgers: 'No easy fix' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |url-status=live |archive-url=https://web.archive.org/web/20161226150119/http://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=[[ESPN.com]]}}</ref>
[[File:Pro_Football_Hall_of_Fame_(23945585187).jpg|thumb|Rodgers ein uniform dem exhibit at de Pro Football Hall of Fame]]
Insyd a Week 7 ''Thursday Night Football'' game against de Bears, Rodgers rebound by recording a franchise record den career-high 39 completions, breaking Brett Favre ein previous record of 36 insyd 1993, sanso be against de Bears.<ref>{{Cite web |date=October 21, 2016 |title=Aaron Rodgers sets Green Bay Packers completion record in win over Chicago Bears |url=http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |url-status=live |archive-url=https://web.archive.org/web/20161213015800/http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=United Press International}}</ref> Rodgers record 326 passing yards for ein first 300-yard passing game since Week 10 of de 2015 season insyd de 26–10 win.<ref name="pfr gamelog" /> De following week against de Atlanta Falcons, Rodgers record a career regular season high of 60 rushing yards,<ref name="pfr gamelog">{{Cite web |title=Aaron Rodgers Career Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/ |url-status=dead |archive-url=https://web.archive.org/web/20111219211828/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog |archive-date=December 19, 2011 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> wey he fini plus four touchdown passes den a 125.5 passer rating.<ref>{{Cite web |last=Dubin |first=Jared |date=October 30, 2016 |title=Packers vs. Falcons highlights, score: Matt Ryan Aaron Rodgers trade lasers all day |url=http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |url-status=live |archive-url=https://web.archive.org/web/20161226215154/http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=CBS Sports}}</ref>
After a Week 11 loss to de Redskins—de Packers dema fourth in a row, putting dem at 4–6—Rodgers be optimistic about de remainder of de season, saying, "I feel like we fi run de table, I really do."<ref name="runtable1">{{Cite web |last=Demovsky |first=Rob |date=November 23, 2016 |title=Aaron Rodgers: Packers, at 4–6, can close with 6 straight wins |url=https://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |url-status=live |archive-url=https://web.archive.org/web/20170105180337/http://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref> Despite widespread doubt over de likelihood of such a run,<ref name="runtable2">{{Cite web |last=Demovsky |first=Rob |date=January 2, 2016 |title=Aaron Rodgers' magic carries Packers into playoffs on a run-the-table roll |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |url-status=live |archive-url=https://web.archive.org/web/20170103184508/http://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |archive-date=January 3, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Sipple |first=George |date=January 2, 2017 |title=Packers QB Aaron Rodgers makes good on 'run the table' prediction |url=http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |url-status=live |archive-url=https://web.archive.org/web/20170105175931/http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=Detroit Free Press}}</ref><ref>{{Cite web |last=Gantt |first=Darin |date=November 24, 2016 |title=Aaron Rodgers: "I feel we can run the table" |url=http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |url-status=live |archive-url=https://web.archive.org/web/20170105180803/http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=profootballtalk.nbcsports.com}}</ref> de Packers go go on to finish de season plus six straight wins—as Rodgers say dem go fi.
Insyd a Week 12 ''Monday Night Football'' game Rodgers appeare to injure ein hamstring on a scrambling play against de Eagles.<ref name="packnews">{{Cite web |last=Silverstein |first=Tom |date=November 29, 2016 |title=Hamstring injury sends Rodgers to tent |url=http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |url-status=live |archive-url=https://web.archive.org/web/20161129161247/http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |archive-date=November 29, 2016 |access-date=December 13, 2016 |website=Milwaukee Journal Sentinel}}</ref> After de play, Rodgers go into an injury tent on de sideline to get ein leg taped up.<ref name="packnews" /> Na Rodgers, however, no miss any snaps insyd de game wey he fini 30 out of 39 for 313 yards plus no sacks anaa interceptions.<ref name="2016eagles" /> Ein 300-yard performance be ein fourth of de season den de first wey de Eagles dema defense allow all season.<ref name="2016eagles">{{Cite web |last=Jackson |first=Zac |date=November 28, 2016 |title=Rodgers, defense step up as Packers snap losing streak |url=http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |url-status=live |archive-url=https://web.archive.org/web/20161213165321/http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |archive-date=December 13, 2016 |access-date=December 13, 2016}}</ref> De Packers win, 27–13, snapping dema four-game losing streak.
Insyd a 38–10 victory over de Seahawks insyd a Week 14 game, Rodgers den de Packers continue dema recent offensive den defensive success.<ref name="38-10" /><ref name="38-102">{{Cite web |last=Pelissero |first=Tom |date=December 12, 2016 |title=After rout of Seattle, Packers re-emerge as team no one wants to see in January |url=https://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |url-status=live |archive-url=https://web.archive.org/web/20161213014329/http://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=USA Today Sports}}</ref> Rodgers fini plus 246 passing yards, three touchdown passes den a 150.8 passer rating. De 150.8 passer rating be de best recorded against Seattle ein defense since head coach [[Pete Carroll]] take over insyd 2010.<ref name="38-10">{{Cite web |last=Wesseling |first=Chris |date=December 11, 2016 |title=Aaron Rodgers, Packers dismantle Seahawks |url=https://www.nfl.com/news/aaron-rodgers-packers-dismantle-seahawks-0ap3000000755388 |url-status=live |archive-url=https://web.archive.org/web/20161213001101/http://www.nfl.com/news/story/0ap3000000755388/article/mvp-candidate-rodgers-packers-dismantle-seahawks |archive-date=December 13, 2016 |access-date=December 13, 2016 |publisher=National Football League}}</ref> Rodgers do dis despite suffering a calf injury early insyd de game.<ref name="38-10" /> Na dem name am NFC Offensive Player of de Week for ein performance against de Seahawks.<ref>{{Cite web |last=Lam |first=Quang M. |date=December 14, 2016 |title=Le'Veon Bell, Rodgers among NFL Players of the Week |url=http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |url-status=dead |archive-url=https://web.archive.org/web/20190330021109/http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |archive-date=March 30, 2019 |access-date=November 12, 2019 |publisher=National Football League}}</ref>
On December 20, 2016, na Rodgers be selected to ein third consecutive Pro Bowl den ein sixth overall insyd ein career.<ref name="probowl2016">{{Cite web |date=December 20, 2016 |title=NFL announces 2017 Pro Bowl rosters |url=https://www.nfl.com/news/nfl-announces-2017-pro-bowl-rosters-0ap3000000760503 |url-status=live |archive-url=https://web.archive.org/web/20181117075658/http://www.nfl.com/news/story/0ap3000000760503/article/nfl-announces-2017-pro-bowl-rosters |archive-date=November 17, 2018 |access-date=December 24, 2016 |publisher=National Football League}}</ref>
During Week 16, Rodgers den [[Drew Brees]] tie de NFL record for most seasons plus at least 35 touchdown passes plus four—a record he share plus Peyton Manning den Tom Brady.<ref name="35tdpass">{{Cite web |title=Most seasons with at least 35 passing touchdowns, career |url=http://pfref.com/tiny/ww1Iz |url-status=live |archive-url=https://web.archive.org/web/20220209214231/https://stathead.com/tools/tiny.fcgi?id=ww1Iz |archive-date=February 9, 2022 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref><ref name="mosttdpass">{{Cite web |title=NFL Single-Season Passing Touchdowns Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20210201232241/https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |archive-date=February 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> Insyd de game against de Vikings, Rodgers fini 28 of 38 for 347 yards, four touchdown passes den a rushing touchdown to earn NFC Offensive Player of de Week.<ref name="espnvik2016">{{Cite web |last=Demovsky |first=Rob |date=December 24, 2016 |title=Aaron Rodgers for MVP: Packers QB makes case in win over Vikings |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |url-status=live |archive-url=https://web.archive.org/web/20161225084224/http://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |archive-date=December 25, 2016 |access-date=December 25, 2016 |publisher=[[ESPN]]}}</ref><ref>{{Cite web |title=2016 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2016/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231416/https://www.pro-football-reference.com/years/2016/week_16.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 300-yard performance be de first allowed by de Vikings dema defense all season.<ref name="espnvik2016" /> He sanso set Packer regular season records for most 4,000-yard passing seasons (6), most completions insyd a season (374), den—plus Jordy Nelson—most touchdowns by a quarterback/wide receiver combination plus (59).<ref name="espnvik2016" /> Na dem name Rodgers NFC Offensive Player of de Month for December.<ref>{{Cite web |date=January 5, 2017 |title=Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |url-status=live |archive-url=https://web.archive.org/web/20200724202520/https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |archive-date=July 24, 2020 |access-date=September 13, 2019 |website=packers.com}}</ref>
Rodgers help lead de Packers to a NFC North title den a playoff berth insyd 2016.<ref>{{Cite web |title=2016 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2016 |url-status=live |archive-url=https://web.archive.org/web/20180329001215/https://www.pro-football-reference.com/years/2016/ |archive-date=March 29, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers defeat de Giants insyd de Wild Card Round. Rodgers plete 25 of 40 passes for 364 yards den four touchdowns insyd de victory. Dem defeat de #1-seed Cowboys insyd de Divisional Round. Plua de game tied at 31 plus only 18 seconds remaining plus de ball on dema own 32-yard line, Rodgers throw a 36-yard completion to tight end [[Jared Cook]] to put de Packers insyd Mason Crosby ein field goal range. Crosby convert de 51-yard attempt as time expire to win de game.<ref>{{Cite web |last=Steele |first=David |date=January 15, 2017 |title=Aaron Rodgers-to-Jared-Cook joins list of legendary clutch NFL playoff catches |url=https://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |url-status=live |archive-url=https://web.archive.org/web/20190415003703/http://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |archive-date=April 15, 2019 |access-date=September 13, 2019 |website=Sporting News}}</ref> Overall, Rodgers plete 28 of 43 passes for 355 yards, two touchdowns den an interception insyd de victory.<ref>{{Cite web |title=Wild Card – New York Giants at Green Bay Packers – January 8th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701080gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171011073327/https://www.pro-football-reference.com/boxscores/201701080gnb.htm |archive-date=October 11, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=Divisional Round – Green Bay Packers at Dallas Cowboys – January 15th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701150dal.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030639/https://www.pro-football-reference.com/boxscores/201701150dal.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de Falcons insyd de NFC Championship insyd de final game at de Georgia Dome. Rodgers plete 27 of ein 45 passing attempts for 287 yards plus three touchdowns den an interception insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Atlanta Falcons – January 22nd, 2017 |url=https://www.pro-football-reference.com/boxscores/201701220atl.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003240/https://www.pro-football-reference.com/boxscores/201701220atl.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd 2016, Rodgers fini plus 401 completions den 610 attempts (both career highs), a 65.7% completion percentage, 4,428 passing yards, 40 touchdown passes, seven interceptions, a passer rating of 104.2, 369 rushing yards (career-high), den four rushing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |url-status=live |archive-url=https://web.archive.org/web/20211115205043/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Plus ein 40 touchdown passes, he lead de league insyd de statistic for de first time insyd ein career<ref>{{Cite web |last=Borek |first=Jesse |date=January 1, 2017 |title=Packers' Aaron Rodgers leads NFL in TD passes |url=http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |url-status=dead |archive-url=https://web.archive.org/web/20170104172003/http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |archive-date=January 4, 2017 |access-date=January 4, 2017 |website=fanrangsports.com |publisher=Nafstrops Media, LLC}}</ref> wey he cam be one of only four quarterbacks to pass for at least 40 touchdowns insyd multiple seasons.<ref name="40td">{{Cite web |title=Most seasons with at least 40 passing touchdowns, career |url=http://pfref.com/tiny/6BiBx |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=6BiBx |archive-date=December 1, 2021 |access-date=January 5, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Rodgers sanso fini fourth insyd passing yards, completions, attempts, den passer rating.<ref name="2016leaderspfr">{{Cite web |title=2016 NFL Leaders |url=https://www.pro-football-reference.com/years/2016/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20210108041718/https://www.pro-football-reference.com/years/2016/leaders.htm |archive-date=January 8, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Among quarterbacks, he fini third insyd rushing yards den fifth insyd rushing touchdowns.<ref name="2016qbrush">{{Cite web |title=2016 QB rushing leaders |url=http://pfref.com/tiny/698kQ |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=698kQ |archive-date=December 1, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2017.<ref>{{Cite web |title=2017 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201106081444/https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |archive-date=November 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2017 ====
Insyd a Week 1 victory over de Seahawks, Rodgers get ein 50th career game plus at least 300 passing yards. He fini de game plus 311, buh ein streak of 251 consecutive passes widout an interception cam to an end wen defensive tackle [[Nazair Jones]] pick am off insyd de first quarter.<ref>{{Cite news|date=September 10, 2017|title=Rodgers, Packers' defense spark season-opener win over Seahawks|work=Fox Sports|agency=Associated Press|url=http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|url-status=live|access-date=September 10, 2017|archive-url=https://web.archive.org/web/20170912011719/http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|archive-date=September 12, 2017}}</ref> Insyd a Week 2 loss of 34–23 to de Falcons, he get 343 passing yards, two touchdowns, den an interception insyd de first game insyd de new Mercedes-Benz Stadium insyd Atlanta.<ref>{{Cite web |title=Green Bay Packers at Atlanta Falcons – September 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201709170atl.htm |url-status=live |archive-url=https://web.archive.org/web/20171008080102/https://www.pro-football-reference.com/boxscores/201709170atl.htm |archive-date=October 8, 2017 |access-date=October 13, 2017 |website=[[Pro Football Reference]]}}</ref> Insyd Week 5, down by 28–31 against de Cowboys plus less dan two minutes on de clock, Rodgers lead a nine-play, 75-yard touchdown drive insyd de 35–31 victory, earning am NFC Offensive Player of de Week.<ref>{{Cite web |last=Lewis |first=Edward |date=October 11, 2017 |title=Aaron Rodgers, Earl Thomas among Players of Week |url=https://www.nfl.com/news/aaron-rodgers-earl-thomas-among-players-of-week-0ap3000000859999 |url-status=live |archive-url=https://web.archive.org/web/20190504022932/http://www.nfl.com/news/story/0ap3000000859999/article/aaron-rodgers-earl-thomas-among-players-of-week |archive-date=May 4, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref>
During Week 6 against de Vikings, na dem take Rodgers off de field by ein coaches den medical personnel after suffering a shoulder injury on a hit from [[Anthony Barr (American football)|Anthony Barr]]. Shortly thereafter, na dem reveal say Rodgers suffer a fractured right collarbone.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 15, 2017 |title=Aaron Rodgers has broken collarbone, could miss season |url=https://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |url-status=live |archive-url=https://web.archive.org/web/20190504114010/http://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |archive-date=May 4, 2019 |access-date=October 15, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Wesseling |first=Chris |date=October 15, 2017 |title=Aaron Rodgers suffers broken collarbone vs. Vikings |url=https://www.nfl.com/news/aaron-rodgers-suffers-broken-collarbone-vs-vikings-0ap3000000861006 |url-status=live |archive-url=https://web.archive.org/web/20171015222153/http://www.nfl.com/news/story/0ap3000000861006/article/aaron-rodgers-suffers-broken-collarbone-vs-vikings |archive-date=October 15, 2017 |access-date=October 15, 2017 |website=NFL.com |publisher=National Football League}}</ref> De next day, on October 16, na dem announce say Rodgers go get surgery on ein broken collarbone.<ref>{{Cite web |last=Patra |first=Kevin |date=October 16, 2017 |title=Aaron Rodgers will have surgery on broken collarbone |url=https://www.nfl.com/news/aaron-rodgers-will-have-surgery-on-broken-collarbone-0ap3000000862438 |url-status=live |archive-url=https://web.archive.org/web/20171016214737/http://www.nfl.com/news/story/0ap3000000862438/article/aaron-rodgers-will-have-surgery-on-broken-collarbone |archive-date=October 16, 2017 |access-date=October 16, 2017 |website=NFL.com |publisher=National Football League}}</ref> On October 19, he undergo surgery on ein collarbone, wey na he be officially placed on injured reserve de next day.<ref>{{Cite web |date=October 19, 2017 |title=Aaron Rodgers has surgery on collarbone |url=https://www.nfl.com/news/packers-aaron-rodgers-has-surgery-on-collarbone-0ap3000000864021 |url-status=live |archive-url=https://web.archive.org/web/20171020135141/http://www.nfl.com/news/story/0ap3000000864021/article/packers-aaron-rodgers-has-surgery-on-collarbone |archive-date=October 20, 2017 |access-date=October 19, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |date=October 20, 2017 |title=Packers place QB Rodgers on injured reserve |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |url-status=dead |archive-url=https://web.archive.org/web/20171021061030/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |archive-date=October 21, 2017 |access-date=October 20, 2017 |website=Packers.com}}</ref> Na dem insert a total of 13 screws to stabilize ein collarbone.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 26, 2017 |title=Injury roundup: Rodgers has '13 screws' in collarbone |url=https://www.nfl.com/news/injuries-aaron-rodgers-has-13-screws-in-collarbone-0ap3000000867422 |url-status=live |archive-url=https://web.archive.org/web/20171026222152/http://www.nfl.com/news/story/0ap3000000867422/article/injury-roundup-rodgers-has-13-screws-in-collarbone |archive-date=October 26, 2017 |access-date=October 26, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Knoblauch |first=Austin |date=November 3, 2017 |title=Aaron Rodgers focusing on his health, not return date |url=https://www.nfl.com/news/aaron-rodgers-focusing-on-his-health-not-return-date-0ap3000000871634 |url-status=live |archive-url=https://web.archive.org/web/20171104033909/http://www.nfl.com/news/story/0ap3000000871634/article/aaron-rodgers-focusing-on-his-health-not-return-date |archive-date=November 4, 2017 |access-date=November 3, 2017 |website=NFL.com |publisher=National Football League}}</ref>
Rodgers return to practice on December 2, wey dey make am eligible to play insyd de upcoming Week 15 game.<ref>{{Cite web |last=Bergman |first=Jeremy |date=December 2, 2017 |title=Aaron Rodgers returns to Packers practice Saturday |url=https://www.nfl.com/news/aaron-rodgers-returns-to-packers-practice-saturday-0ap3000000885977 |url-status=live |archive-url=https://web.archive.org/web/20191202121449/http://www.nfl.com/news/story/0ap3000000885977/article/aaron-rodgers-returns-to-packers-practice-saturday |archive-date=December 2, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> On December 12, na dem announce say Rodgers be medically cleared by doctors wey he be set to start de next game against de Panthers.<ref>{{Cite web |last=Lewis |first=Edward |date=December 12, 2017 |title=Aaron Rodgers cleared to return, to start vs. Panthers |url=http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |url-status=dead |archive-url=https://web.archive.org/web/20191109071351/http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |archive-date=November 9, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> He be officially activated on December 16.<ref>{{Cite web |date=December 16, 2017 |title=Aaron Rodgers activated from injured reserve |url=https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |url-status=live |archive-url=https://web.archive.org/web/20190413105005/https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |archive-date=April 13, 2019 |access-date=September 12, 2019 |website=Packers.com}}</ref> As dem plan, Rodgers return insyd Week 15 against de Panthers, wer he fini plus 290 passing yards, three touchdowns, den three interceptions as de Packers loose 24–31.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – December 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201712170car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101135719/https://www.pro-football-reference.com/boxscores/201712170car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> However, on December 19, na dem place Rodgers back on injured reserve after de Packers be eliminated from playoff contention.<ref>{{Cite web |date=December 19, 2017 |title=Packers place QB Aaron Rodgers on IR |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |url-status=dead |archive-url=https://web.archive.org/web/20180326030719/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |archive-date=March 26, 2018 |website=Packers.com}}</ref><ref>{{Cite web |last=Patra |first=Kevin |date=December 19, 2017 |title=Packers place Aaron Rodgers back on injured reserve |url=https://www.nfl.com/news/packers-place-aaron-rodgers-back-on-injured-reserve-0ap3000000895650 |url-status=live |archive-url=https://web.archive.org/web/20190920235723/http://www.nfl.com/news/story/0ap3000000895650/article/packers-place-aaron-rodgers-back-on-injured-reserve |archive-date=September 20, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Rapoport |first=Ian |author-link=Ian Rapoport |date=December 17, 2017 |title=Aaron Rodgers' collarbone still not completely healed |url=https://www.nfl.com/news/aaron-rodgers-collarbone-still-not-completely-healed-0ap3000000893627 |url-status=live |archive-url=https://web.archive.org/web/20171223065547/http://www.nfl.com/news/story/0ap3000000893627/article/aaron-rodgers-collarbone-still-not-completely-healed |archive-date=December 23, 2017 |access-date=December 23, 2017 |website=NFL.com |publisher=National Football League}}</ref> He be ranked No. 10 by ein fellow players on de ''NFL Top 100'' Players of 2018.<ref>{{Cite web |title=2018 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201104205316/https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |archive-date=November 4, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2018 ====
[[File:Rodgersthrowing2018redskins.jpg|thumb|Rodgers dey throw a pass insyd 2018]]
On August 29, 2018, Rodgers sign a four-year extension plus de Packers worth $134 million featuring a $57.5 million signing bonus.<ref>{{Cite web |last=Siegle |first=Evan |date=August 29, 2018 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |url-status=live |archive-url=https://web.archive.org/web/20180830044455/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |archive-date=August 30, 2018 |access-date=August 29, 2018 |website=packers.com}}</ref><ref>{{Cite web |last=Teope |first=Herbie |date=August 29, 2018 |title=Aaron Rodgers agrees to 4-year, $134M extension |url=http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |url-status=dead |archive-url=https://web.archive.org/web/20180830005310/http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |archive-date=August 30, 2018 |access-date=August 29, 2018 |publisher=National Football League}}</ref>
During ''Sunday Night Football'' against de Bears insyd Week 1, Rodgers lef de game plus a knee injury buh he return insyd de third quarter. Down by 20 points, Rodgers fini plus 286 passing yards den three touchdowns, leading de Packers rally to a 24–23 win.<ref>{{Cite web |last=Bergman |first=Jeremy |date=September 9, 2018 |title=Rodgers helps Packers rally against Bears |url=https://www.nfl.com/news/aaron-rodgers-rallies-packers-to-improbable-win-0ap3000000960283 |url-status=live |archive-url=https://web.archive.org/web/20180910164829/http://www.nfl.com/news/story/0ap3000000960283/article/aaron-rodgers-rallies-packers-to-improbable-win |archive-date=September 10, 2018 |access-date=September 10, 2018 |publisher=National Football League}}</ref> Despite a nagging knee injury, Rodgers get at least 40 pass attempts insyd each of de next three games. Insyd de last of these, he throw ein first interception insyd 150 attempts.<ref>{{Cite web |date=September 30, 2018 |title=GAME RECAP: Bills fall on the road in Green Bay |url=https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |url-status=live |archive-url=https://web.archive.org/web/20181008214257/https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |archive-date=October 8, 2018 |access-date=December 17, 2018 |website=buffalobills.com}}</ref> Insyd Week 5, Rodgers pass for 442 yards (de second-best of ein career) den three touchdowns, buh sanso two fumbles, insyd a 31–23 loss to de Lions.<ref>{{Cite web |last=Owczarski |first=Jim |date=October 7, 2018 |title=Packers doomed by slow start, Mason Crosby's misses in loss to Lions |url=https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |url-status=live |archive-url=https://web.archive.org/web/20201109032148/https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |archive-date=November 9, 2020 |access-date=December 17, 2018 |website=USA Today}}</ref> Insyd de following game, a 33–30 victory over de 49ers, he get 425 passing yards den two passing touchdowns.<ref>{{Cite web |date=October 16, 2018 |title=Bloodied Aaron Rodgers leads Packers and Crosby to redemption over 49ers |url=https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |url-status=live |archive-url=https://web.archive.org/web/20181030035759/https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |archive-date=October 30, 2018 |access-date=October 29, 2018 |website=The Guardian |agency=Associated Press}}</ref>
Following de bye-week, despite a continuing knee injury,<ref>{{Cite news|last=Maske|first=Mark|date=October 16, 2018|title=Aaron Rodgers's knee isn't quite right. But he's still good enough to carry the Packers|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|url-status=live|access-date=December 6, 2019|archive-url=https://web.archive.org/web/20191207093807/https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|archive-date=December 7, 2019}}</ref> Rodgers get ein third consecutive week plus a 100+ quarterback rating,<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log (Games 5, 6, and 8) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231012655/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |archive-date=December 31, 2019 |access-date=December 5, 2019 |website=[[Pro Football Reference]]}}</ref> wich include 286 yards passing, no interceptions, den a go-ahead 40-yard touchdown pass to [[Marquez Valdes-Scantling]] insyd a 29–27 loss to de Los Angeles Rams.<ref>{{Cite web |last=Beacham |first=Greg |date=October 29, 2018 |title=Late fumble keeps Rams unbeaten with 29–27 win over Packers |url=https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |url-status=live |archive-url=https://web.archive.org/web/20181217202249/https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref>
Insyd Week 14, against de Falcons, Rodgers set an NFL record by converting ein 359th consecutive pass widout an interception, breaking Tom Brady ein previous record.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 9, 2018 |title=No picks for Packer: Rodgers sets no-INT mark |url=https://www.espn.com/nfl/story/_/id/25491996 |url-status=live |archive-url=https://web.archive.org/web/20181210123157/http://www.espn.com/nfl/story/_/id/25491996 |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=[[ESPN.com]]}}</ref> Insyd Week 15, against de Chicago Bears, Rodgers throw for 274 yards den an interception insyd a 24–17 loss. Rodgers ein record streak widout an interception end plus 402 pass attempts after he be intercepted by free safety [[Eddie Jackson (safety)|Eddie Jackson]].<ref>{{Cite web |last=Cohen |first=Jay |date=December 16, 2018 |title=Rodgers throws interception as Packers lose 24–17 to Bears |url=https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |url-status=live |archive-url=https://web.archive.org/web/20181217145036/https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref> During Week 16 against de Jets, Rodgers fini plus 442 passing yards, two passing touchdowns, den two rushing touchdowns. Trailing at one point by 15 points, Rodgers den de Packers win 44–38 insyd overtime.<ref>{{Cite web |date=December 23, 2018 |title=Rodgers leads Packers to wild 44–38 overtime win over Jets |url=https://www.espn.com/nfl/recap?gameId=401030870 |url-status=live |archive-url=https://web.archive.org/web/20190101002910/http://www.espn.com/nfl/recap?gameId=401030870 |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> He match ein own feat of achieving at least 400 passing yards, two passing touchdowns, deb two rushing touchdowns insyd a single game. De only oda time insyd NFL history wey na e occur be wen Rodgers accomplish am insyd 2011 against de Denver Broncos.<ref>{{Cite web |last=Kruse |first=Zach |date=December 24, 2018 |title=Packers QB Aaron Rodgers matches his own rare feat vs. Jets |url=https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |url-status=live |archive-url=https://web.archive.org/web/20190123071358/https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Packers Wire}}</ref>
On December 18, 2018, na dem name Rodgers to ein seventh Pro Bowl.<ref>{{Cite web |date=December 18, 2018 |title=NFL reveals rosters for 2019 Pro Bowl in Orlando |url=https://www.nfl.com/news/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando-0ap3000001001792 |url-status=live |archive-url=https://web.archive.org/web/20190108220211/http://www.nfl.com/news/story/0ap3000001001792/article/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando |archive-date=January 8, 2019 |access-date=January 1, 2019 |publisher=National Football League}}</ref> He decline de appearance secof injury wey na he be replaced by [[Russell Wilson]].<ref>{{Cite web |last=Fentress |first=Aaron |date=January 9, 2019 |title=Russell Wilson replaces Aaron Rodgers on NFC Pro Bowl team |url=https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |url-status=live |archive-url=https://web.archive.org/web/20190626144630/https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |archive-date=June 26, 2019 |access-date=June 26, 2019 |website=NBC Sports Northwest}}</ref>
Insyd de regular season finale against de Detroit Lions, Rodgers suffer a concussion early insyd de game wey he no go return.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 30, 2018 |title=Aaron Rodgers suffers concussion in Packers' regular season finale |url=https://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |url-status=live |archive-url=https://web.archive.org/web/20190101005826/http://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]]}}</ref> Na den then send am to de hospital to test for concussion symptoms.<ref name="2018conc">{{Cite web |last=Jones |first=Brian |date=December 31, 2018 |title=Aaron Rodgers sent to hospital after suffering concussion |url=https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |url-status=live |archive-url=https://web.archive.org/web/20220427185549/https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |archive-date=April 27, 2022 |access-date=January 1, 2019 |website=247 SPORTS}}</ref> Secof na de Packers already be eliminated from playoff contention, Rodgers answer questions about whether he for be playing, for fear of injury, by saying: "''That's just not the way I lead, and I'm super-competitive, and I want to be out there with the guys and I look forward to being out there."''<ref name="2018conc" /> Na dem later spot Rodgers at de Packers dema facility after de game.<ref name="2018conc" />
Rodgers fini de season plus 372 completions, 597 attempts, 4,442 passing yards, 25 passing touchdowns, two interceptions den a passer rating of 97.6.<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/ |access-date=January 8, 2026 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to setting de record for consecutive passes widout an interception during de season, Rodgers set NFL records for interception percentage for a season, plus only 0.335% of ein passes be intercepted, den for de amount of thrown away passes.<ref name="passintpfr">{{Cite web |title=NFL Pass Interception % Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20190102050903/https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |archive-date=January 2, 2019 |access-date=January 1, 2019 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |last=Smith |first=Michael David |date=December 3, 2018 |title=Aaron Rodgers avoids interceptions by throwing the ball away at a record rate |url=https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |url-status=live |archive-url=https://web.archive.org/web/20190807024232/https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |archive-date=August 7, 2019 |access-date=November 12, 2019 |website=ProFootballTalk}}</ref> Na dem rank am eighth by ein fellow players on de ''NFL Top 100'' Players of 2019.<ref>{{Cite web |title=2019 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112140727/https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2019 ====
[[File:Aaron_Rodgers_2019.jpg|right|thumb|Rodgers insyd a game against de Washington Redskins ]]
Rodgers start de 2019 season plus a new head coach insyd [[Matt LaFleur]] following de departure of Mike McCarthy.<ref>{{Cite web |last=Wilde |first=Jason |date=September 17, 2019 |title=Believing offensive success is 'close,' Matt LaFleur and Aaron Rodgers focus on making more plays |url=https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |url-status=live |archive-url=https://web.archive.org/web/20190927192039/https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=madison.com}}</ref> De Packers offense rely less on Rodgers ein trademark passes den more on heavy formations den play-action throws to take advantage of running back [[Aaron Jones (running back)|Aaron Jones]].<ref>{{Cite web |last=Mays |first=Robert |date=January 17, 2020 |title=The Incalculable Legacy of Aaron Rodgers |url=https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |url-status=live |archive-url=https://web.archive.org/web/20200409091343/https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |archive-date=April 9, 2020 |access-date=April 7, 2020 |website=The Ringer |language=en}}</ref>
Rodgers help lead de Packers to a 3–0 start plus victories over de Bears, Vikings, den Broncos.<ref>{{Cite web |last=Wilner |first=Barry |date=September 6, 2019 |title=Packers' D, Aaron Rodgers beat Bears 10–3 in opener |url=https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |url-status=live |archive-url=https://web.archive.org/web/20190927192201/https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref><ref>{{Cite web |date=September 15, 2019 |title=Packers ride Rodgers' hot start to 21–16 win over Vikings |url=https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |url-status=dead |archive-url=https://web.archive.org/web/20190927192237/https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |publisher=WBAY |agency=Associated Press}}</ref><ref>{{Cite web |last=Jenkins |first=Keith |date=September 22, 2019 |title=Packers remain unbeaten with 27–16 win over Broncos |url=https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |url-status=live |archive-url=https://web.archive.org/web/20190927193720/https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref> Insyd Week 4, against de Eagles on ''Thursday Night Football'', he get 422 passing yards den two passing touchdowns, buh he sanso throw de game-ending interception as de Packers be handed dema first loss of de season by a score of 34–27.<ref>{{Cite web |date=September 27, 2019 |title=Eagles pick off Aaron Rodgers' late pass to beat Packers |url=https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |url-status=live |archive-url=https://web.archive.org/web/20190927063930/https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=Los Angeles Times |agency=Associated Press}}</ref> Insyd Week 7, against de Raiders, Rodgers post ein first-ever game plus a perfect passer rating of 158.3, de first quarterback insyd team history to do so.<ref>{{Cite web |last=Joseph |first=Andrew |date=October 20, 2019 |title=The Packers players were so pumped to find out Aaron Rodgers had a perfect passer rating |url=https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |url-status=live |archive-url=https://web.archive.org/web/20191021004107/https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |archive-date=October 21, 2019 |access-date=October 20, 2019 |website=USA Today}}</ref> He plete 25-of-31 passes for 429 yards den five touchdowns insyd de 42–24 victory.<ref>{{Cite web |last=Kruse |first=Zach |date=October 20, 2019 |title=Perfection: Aaron Rodgers finishes with perfect passer rating vs. Raiders |url=https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |url-status=live |archive-url=https://web.archive.org/web/20191020214833/https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |archive-date=October 20, 2019 |access-date=October 20, 2019 |website=PackersWire}}</ref> Na dem name am de NFC Offensive Player of de Week for ein performance.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 23, 2019 |title=Aaron Rodgers, Jacoby Brissett among Players of the Week |url=https://www.nfl.com/news/aaron-rodgers-jacoby-brissett-among-players-of-the-week-0ap3000001068643 |url-status=live |archive-url=https://web.archive.org/web/20191023124430/http://www.nfl.com/news/story/0ap3000001068643/article/aaron-rodgers-jacoby-brissett-among-players-of-the-week |archive-date=October 23, 2019 |access-date=October 23, 2019 |publisher=National Football League}}</ref> Insyd Week 17, against de Lions, Rodgers help lead de team to a 23–20 comeback win. As a result of de victory, de Packers secure a first round bye insyd de playoffs.<ref>{{Cite web |date=December 29, 2019 |title=Packers barely beat Lions 23–20 to earn first-round bye |url=https://www.espn.com/nfl/recap?gameId=401127983 |url-status=live |archive-url=https://web.archive.org/web/20220415135127/https://www.espn.com/nfl/recap?gameId=401127983 |archive-date=April 15, 2022 |access-date=December 29, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers fini de 2019 season plus 4,002 passing yards, 26 passing touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2019 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |url-status=live |archive-url=https://web.archive.org/web/20191231012649/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |archive-date=December 31, 2019 |access-date=December 31, 2019 |website=[[Pro Football Reference]]}}</ref>
Insyd de Divisional Round of de playoffs against de Seahawks, Rodgers plete 16 passes on 27 attempts wey he throw for 243 yards den two touchdowns during de 28–23 win.<ref>{{Cite web |date=January 12, 2020 |title=Packers hold off Seahawks 28–23 to reach NFC title game |url=https://www.espn.com/nfl/recap?gameId=401131042 |url-status=live |archive-url=https://web.archive.org/web/20200417042143/https://www.espn.com/nfl/recap?gameId=401131042 |archive-date=April 17, 2020 |access-date=January 13, 2020 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd de NFC Championship Game against de 49ers, Rodgers plete 31 passes on 39 attempts wey he throw for 326 yards den two touchdowns, buh he sanso throw two interceptions, wey dey include one to [[Richard Sherman (American football)|Richard Sherman]] insyd de final two minutes of de game as de Packers loose 37–20.<ref>{{Cite web |last=Wagner-McGough |first=Sean |date=January 19, 2020 |title=Packers suffer system-wide failure in ugly NFC Championship loss as clock ticks on the Aaron Rodgers era |url=https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |url-status=live |archive-url=https://web.archive.org/web/20200121163627/https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |archive-date=January 21, 2020 |access-date=January 20, 2020 |website=CBS Sports}}</ref> De loss mark Rodgers ein third consecutive NFC Championship loss (a streak wey go extend to four de following season).<ref name="Clunker">{{Cite web |last=Reischel |first=Rob |date=January 19, 2020 |title=Green Bay Packers' Aaron Rodgers Has Another NFC Championship Game Clunker |url=https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |url-status=live |archive-url=https://web.archive.org/web/20200120124354/https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |archive-date=January 20, 2020 |access-date=January 22, 2020 |website=Forbes}}</ref> Na dem rank am 16th by ein fellow players on de ''NFL Top 100'' Players of 2020.<ref>{{Cite web |title=2020 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200015/https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2020: Third MVP ====
Prior to a Week 5 bye, Rodgers help lead de Packers to a four-game winning streak to start de 2020 season.<ref>{{Cite web |date=October 7, 2020 |title=Packers head into their Week 5 bye |url=https://www.packers.com/news/packers-head-into-their-week-5-bye |url-status=live |archive-url=https://web.archive.org/web/20211115190601/https://www.packers.com/news/packers-head-into-their-week-5-bye |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=packers.com |language=en-US}}</ref> That winning streak go end insyd Week 6 against de Buccaneers, insyd wich Rodgers throw for 160 yards den two interceptions, wey dey include a pick-six (de third of ein professional career), during de 38–10 loss.<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – October 18th, 2020 |url=https://www.pro-football-reference.com/boxscores/202010180tam.htm |url-status=live |archive-url=https://web.archive.org/web/20201019130703/https://www.pro-football-reference.com/boxscores/202010180tam.htm |archive-date=October 19, 2020 |access-date=October 22, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> After a 3–2 stretch give de team, Rodgers throw for 211 yards den four touchdowns insyd a 41–25 victory over de Bears insyd Week 12. During de game, he cam be de 11th player insyd NFL history to eclipse 50,000 career passing yards, achieving de milestone on a 39-yard touchdown pass to tight end [[Robert Tonyan]] midway thru de third quarter.<ref>{{Cite magazine|last=Huber|first=Bill|date=November 29, 2020|title=Rodgers Makes History with 50,000-Yard Milestone|url=https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|url-status=live|archive-url=https://web.archive.org/web/20201130035319/https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|archive-date=November 30, 2020|access-date=November 30, 2020|magazine=Sports Illustrated}}</ref> In Week 13 against de Eagles, Rodgers throw for 295 yards den three touchdowns during de 30–16 win. Rodgers ein third touchdown pass of de game be to wide receiver [[Davante Adams]] wey na e be ein 400th career touchdown pass.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – December 6th, 2020 |url=https://www.pro-football-reference.com/boxscores/202012060gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20201125163729/https://www.pro-football-reference.com/boxscores/202012060gnb.htm |archive-date=November 25, 2020 |access-date=December 8, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Na dem name Rodgers de NFC Offensive Player of de Week for ein performance insyd Week 13.<ref>{{Cite web |last=Gordon |first=Grant |date=December 9, 2020 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |url-status=live |archive-url=https://web.archive.org/web/20201209165050/https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |archive-date=December 9, 2020 |access-date=December 10, 2020 |publisher=National Football League |language=en-US}}</ref> On December 21, 2020, na dem select am for de 2021 Pro Bowl.<ref>{{Cite web |date=December 21, 2020 |title=NFL reveals complete AFC, NFC rosters for 2021 Pro Bowl |url=https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |url-status=live |archive-url=https://web.archive.org/web/20201222000525/https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |archive-date=December 22, 2020 |access-date=December 21, 2020 |publisher=National Football League}}</ref> N dem name Rodgers de NFC Offensive Player of de Month for ein performance insyd December after passing for 15 touchdowns den one interception insyd five victories for de Packers.<ref>{{Cite web |last=Gordon |first=Grant |date=January 7, 2021 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen among Players of the Month |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20210107133506/https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |archive-date=January 7, 2021 |access-date=January 7, 2021 |publisher=National Football League}}</ref>
Overall, Rodgers fini de 2020 regular season plus 4,299 passing yards, 48 passing touchdowns, den five interceptions. Ein passing touchdowns total set a new franchise record.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> He get seven total games plus four passing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2020 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |url-status=live |archive-url=https://web.archive.org/web/20210109144744/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |archive-date=January 9, 2021 |access-date=January 7, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> He lead de league insyd numerous statistical categories, wey dey include completion percentage, touchdown passes, den passer rating.<ref>{{Cite web |last=Kruse |first=Zach |date=January 4, 2021 |title=Packers QB Aaron Rodgers led NFL in all these statistical categories in 2020 |url=https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |url-status=live |archive-url=https://web.archive.org/web/20210104150141/https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |archive-date=January 4, 2021 |access-date=January 7, 2021 |website=Packers Wire |language=en-US}}</ref> On January 8, 2021, he make de 2020 All-Pro Team first-team.<ref>{{Cite web |date=January 8, 2021 |title=2020 NFL All-Pro Team Roster |url=https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |url-status=live |archive-url=https://web.archive.org/web/20210108171953/https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |archive-date=January 8, 2021 |access-date=January 8, 2021 |work=Associated Press News}}</ref> De Pro Football Writers of America name am de NFL MVP.<ref>{{Cite web |last=Werner |first=Barry |date=January 21, 2021 |title=Aaron Rodgers earns PFWA NFL MVP honors |url=https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |url-status=live |archive-url=https://web.archive.org/web/20210131171403/https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |archive-date=January 31, 2021 |access-date=January 24, 2021 |website=Yahoo! Sports}}</ref>
De Packers fini plus a 13–3 record, dem win de NFC North, wey dem earn a first-round bye for de NFC playoffs.<ref>{{Cite web |title=2020 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2020/index.htm |url-status=live |archive-url=https://web.archive.org/web/20211115190600/https://www.pro-football-reference.com/years/2020/index.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de Divisional Round of de playoffs against de Rams, Rodgers throw for 296 yards den two touchdowns wey he sanso rush for anoda touchdown during de 32–18 win.<ref>{{Cite web |title=Divisional Round – Los Angeles Rams at Green Bay Packers – January 16th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210118220025/https://www.pro-football-reference.com/boxscores/202101160gnb.htm |archive-date=January 18, 2021 |access-date=January 20, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de NFC Championship against de Buccaneers, Rodgers throw for 346 yards den three touchdowns, buh he sanso throw an interception wey na he be sacked five times while he be constantly pressured during de 31–26 loss.<ref name="mcatee_01242021">{{Cite news|last=McAtee|first=Riley|date=January 24, 2021|title=The Packers' Championship-Game Curse Continues. Will It Cost Them Aaron Rodgers?|work=The Ringer|url=https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125040540/https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|archive-date=January 25, 2021}}</ref><ref>{{Cite news|last=Hoffman|first=Benjamin|date=January 24, 2021|title=What We Learned From the N.F.L.'s Conference Championships|work=The New York Times|url=https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125041821/https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|archive-date=January 25, 2021}}</ref><ref name="demovsky_01242021">{{Cite web |last=Demovsky |first=Rob |date=January 24, 2021 |title=Aaron Rodgers uncertain about future with Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20210125195535/https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |archive-date=January 25, 2021 |access-date=January 25, 2021 |website=[[ESPN.com]]}}</ref> Rodgers fall to 1–4 insyd conference championship games, becoming de first quarterback insyd NFL history to loose four in a row.<ref name="mcatee_01242021" /><ref name="demovsky_01242021" /><ref>{{Cite web |title=NFC Championship – Tampa Bay Buccaneers at Green Bay Packers – January 24th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101240gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210129001224/https://www.pro-football-reference.com/boxscores/202101240gnb.htm |archive-date=January 29, 2021 |access-date=January 31, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> After de season, he win de AP Most Valuable Player Award<ref>{{Cite web |last=Shook |first=Nick |date=February 6, 2021 |title=Packers QB Aaron Rodgers named 2020 AP NFL Most Valuable Player |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |url-status=live |archive-url=https://web.archive.org/web/20210207034518/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |archive-date=February 7, 2021 |access-date=February 6, 2021 |publisher=National Football League}}</ref> as well as de FedEx Air Player of de Year.<ref>{{Cite web |title=FedEx Air and Ground Players of the Year |url=https://www.nfl.com/voting/air-and-ground/player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20210125192004/https://www.nfl.com/voting/air-and-ground/player-of-the-year |archive-date=January 25, 2021 |access-date=January 25, 2021 |publisher=National Football League}}</ref> Na dem rank am 3rd by ein fellow players on de ''NFL Top 100'' Players of 2021.<ref>{{Cite web |title=2021 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200023/https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2021: Fourth MVP ====
[[File:Aaron_Rodgers_Packers_OCT2021_(cropped).jpg|right|thumb|Rodgers insyd 2021]]
Rodgers ein 2021 season get a rough start, as he plete 15 of 28 passes for 133 yards den two interceptions as Green Bay loose 38–3 to de Saints at TIAA Bank Field.<ref>{{Cite web |last=Benjamin |first=Cody |date=September 12, 2021 |title=Packers bench Aaron Rodgers for Jordan Love as Jameis Winston torches Green Bay in Week 1 |url=https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |url-status=live |archive-url=https://web.archive.org/web/20210913012242/https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |archive-date=September 13, 2021 |access-date=September 13, 2021 |website=CBS Sports |language=en}}</ref> Na dem pull am insyd de fourth quarter for [[Jordan Love]] as na ein chance of a comeback be all buh eliminated.<ref>{{Cite web |last=Polacek |first=Scott |date=September 12, 2021 |title=Packers' Aaron Rodgers Pulled for Jordan Love amid Blowout by Jameis Winston, Saints |url=https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |url-status=live |archive-url=https://web.archive.org/web/20211021021121/https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |archive-date=October 21, 2021 |access-date=October 21, 2021 |website=Bleacher Report |language=en}}</ref> However, Rodgers dem de Packers recover, going on a seven-game winning streak following de loss to New Orleans.<ref>{{Cite web |last1=Hodkiewicz |first1=Wes |last2=Spofford |first2=Mike |date=October 28, 2021 |title=Late interception wins it for Packers, 24–21 over Cardinals |url=https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |url-status=live |archive-url=https://web.archive.org/web/20211030160810/https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |archive-date=October 30, 2021 |access-date=October 30, 2021 |website=packers.com |language=en-US}}</ref>
Insyd Week 6, Rodgers seal a 24–14 victory against de Bears plus a six-yard touchdown run with 4:34 to go insyd de fourth quarter. During ein celebration, he yell at de Chicago crowd, "''All my f***ing life I own you! I still own you!"''<ref>{{cite web |last1=Demovsky |first1=Rob |date=October 17, 2021 |title=Packers QB Aaron Rodgers taunts jeering Bears fans after game-clinching TD run: 'I still own you' |url=https://www.espn.com/nfl/story/_/id/32419669/packers-qb-aaron-rodgers-taunts-jeering-bears-fans-game-clinching-td-run-own-you |access-date=September 3, 2025 |website=ESPN.com |publisher=ESPN}}</ref> Na de utterance be heavily discussed insyd ein aftermath, den two months later- wen Rodgers play de second game against Chicago- he state say na he get no regrets for making de comment.<ref>{{cite web |last1=Goodbread |first1=Chase |date=December 9, 2021 |title=Packers QB Aaron Rodgers has no regrets for saying 'I own you' to Bears fan |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-has-no-regrets-for-saying-i-own-you-to-bears-fan |access-date=September 3, 2025 |website=NFL.com |publisher=NFL}}</ref>
Following a positive test for [[COVID-19]], na dem place Rodgers on de COVID-19 reserve list on November 3.<ref>{{Cite web |date=November 3, 2021 |title=Packers place QB Aaron Rodgers on reserve/COVID-19 list |url=https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211107032353/https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |archive-date=November 7, 2021 |access-date=November 15, 2021 |website=Packers.com}}</ref> He miss 10 days per de league ein COVID-19 policies for unvaccinated players, wey dey include a game against de Chiefs.<ref>{{Cite web |last=Shook |first=Nick |date=November 3, 2021 |title=Packers QB Aaron Rodgers tests positive for COVID-19, will not play in Week 9 versus Chiefs |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |url-status=live |archive-url=https://web.archive.org/web/20211103152721/https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |archive-date=November 3, 2021 |access-date=November 3, 2021 |publisher=National Football League}}</ref> Despite answering "''Yeah, I'm immunized''" wen dem biz am during de preseason if na he be vaccinated against COVID-19, na he no actually receive a vaccination. Instead, he receive homeopathic treatment from ein personal doctor. While unvaccinated, he commit multiple violations of NFL COVID-19 protocols for unvaccinated players, wey dey include attending parties plus teammates while he no dey use PPE den dey appear unmasked at multiple postgame press conferences.<ref>{{Cite news|last=Jenkins|first=Sally|date=November 4, 2021|title=Aaron Rodgers is entitled to stay unvaccinated. He's not entitled to lie about it|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211105053620/https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|archive-date=November 5, 2021}}</ref><ref>{{Cite web |last=Shpigel |first=Ben |date=November 3, 2021 |title=Aaron Rodgers Out After Positive Coronavirus Test |url=https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |url-status=live |archive-url=https://web.archive.org/web/20211105230713/https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |archive-date=November 5, 2021 |access-date=November 6, 2021 |website=[[The New York Times]]}}</ref><ref>{{Cite news|last=Maske|first=Mark|date=November 3, 2021|title=Aaron Rodgers tests positive for coronavirus, is considered unvaccinated under NFL rules|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211103182339/https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|archive-date=November 3, 2021}}</ref><ref name="Paras">{{Cite web |last=Paras |first=Matthew |date=November 8, 2021 |title=State Farm backs Rodgers despite vaccine controversy |url=https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |url-status=live |archive-url=https://web.archive.org/web/20211110054603/https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=The Washington Times |language=en-US}}</ref><ref>{{Cite web |last=Florio |first=Mike |date=November 6, 2021 |title=Aaron Rodgers consulted with Joe Rogan, has taken Ivermectin |url=https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |url-status=live |archive-url=https://web.archive.org/web/20211110054606/https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=ProFootballTalk |language=en-US}}</ref> After a review, na dem fine am $14,650 for violations of de agreed protocols wey na ein team be fined $300,000.<ref name="demosky1">{{Cite web |last=Demovsky |first=Rob |date=November 10, 2021 |title=Green Bay Packers, Aaron Rodgers, Allen Lazard fined for COVID-19 protocol violations, source says |url=https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |url-status=live |archive-url=https://web.archive.org/web/20220417022230/https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |archive-date=April 17, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]]}}</ref><ref name="gordon1">{{Cite web |last=Gordon |first=Grant |date=November 9, 2021 |title=Packers fined $300K, Aaron Rodgers, Allen Lazard fined $14K for violation of COVID protocols |url=https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |url-status=live |archive-url=https://web.archive.org/web/20220415084129/https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |archive-date=April 15, 2022 |access-date=January 23, 2022 |publisher=National Football League}}</ref>
Na Rodgers be activated off de reserve/COVID-19 list on November 13, wey he return to play de next day against de Seahawks, a game de Packers win 17–0.<ref>{{Cite web |date=November 13, 2021 |title=Packers activate QB Aaron Rodgers off reserve/COVID-19 list |url=https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211113210134/https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |archive-date=November 13, 2021 |access-date=November 13, 2021 |website=Packers.com}}</ref> Insyd Week 15, Rodgers throw for 268 yards den three touchdowns insyd a 31–30 win over de Ravens, wich clinch de NFC North title give de Packers for a third consecutive season wey e earn am NFC Offensive Player of de Week honors.<ref>{{Cite web |last=Gordon |first=Grant |date=December 22, 2021 |title=Packers QB Aaron Rodgers, Chiefs TE Travis Kelce lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |url-status=live |archive-url=https://web.archive.org/web/20220113012121/https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |archive-date=January 13, 2022 |access-date=January 17, 2022 |publisher=National Football League}}</ref> On December 23, 2021, na dem name Rodgers to ein tenth Pro Bowl.<ref>{{Cite web |date=December 22, 2021 |title=2022 NFL Pro Bowl rosters for AFC, NFC: Bucs' Tom Brady gets record 15th selection |url=https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |url-status=live |archive-url=https://web.archive.org/web/20211228200849/https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |archive-date=December 28, 2021 |access-date=December 24, 2021 |website=[[ESPN.com]]}}</ref>
Insyd a Week 16 victory over de Browns, Rodgers throw ein 443rd career touchdown pass, passing Brett Favre for de most all-time career touchdown passes insyd Packers history.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 25, 2021 |title=Rodgers tops Favre's Pack record for TD passes |url=https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |url-status=live |archive-url=https://web.archive.org/web/20211227221346/https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |archive-date=December 27, 2021 |access-date=January 17, 2022 |website=[[ESPN.com]] |language=en}}</ref> For ein play insyd de month of December, Rodgers earn NFC Offensive Player of de Month honors.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=December 30, 2021 |title=For 10th time, Packers QB Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20220104191144/https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month#:~:text=GREEN%2520BAY%2520%25E2%2580%2593%2520Following%2520a%2520dominant,10th%2520time%2520in%2520his%2520career |archive-date=January 4, 2022 |access-date=January 17, 2022 |website=Packers.com |language=en-US}}</ref> He fini de 2021 season plus 4,115 passing yards, 37 touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2021 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2021/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> On January 14, 2022, Rodgers earn ein fourth career first-team All-Pro selection.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=January 14, 2022 |title=Three Packers players named first-team All-Pro |url=https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |url-status=live |archive-url=https://web.archive.org/web/20220116105423/https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |archive-date=January 16, 2022 |access-date=January 14, 2022 |website=packers.com}}</ref>
Insyd de Divisional Round against de 49ers, Rodgers throw for 225 yards, buh a poor performance by de special teams unit haunt de Packers, dem loose 13–10. Na e be Rodgers ein fourth loss insyd as many games to de 49ers insyd de postseason den Rodgers ein second home divisional loss.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> He sanso fail to notice a wide–open Allen Lazard (den [[Equanimeous St. Brown]]) on ein last throw of de game, instead targeting Davante Adams insyd double coverage for a Hail Mary attempt.<ref>{{Cite web |last=Farrar |first=Doug |title=What Aaron Rodgers missed on the play that could have saved the Packers' season |url=https://touchdownwire.usatoday.com/story/sports/nfl/touchdown/2022/01/23/aaron-rodgers-davante-adams-allen-lazard-2021-nfl-playoffs/80662791007/ |access-date=2026-08-06 |website=Touchdown Wire |language=en-US}}</ref> After de season, Rodgers win de AP NFL Most Valuable Player Award for de second consecutive season den de fourth time overall.<ref>{{Cite web |last=Shook |first=Nick |date=February 10, 2022 |title=Packers QB Aaron Rodgers named 2021 AP NFL MVP |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20220425153314/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |archive-date=April 25, 2022 |access-date=February 11, 2022 |publisher=National Football League}}</ref> Rodgers cam be de fifth player to win consecutive MVPs den first since Peyton Manning between 2008 den 2009.<ref>{{Cite web |last=Sutelan |first=Edward |date=February 10, 2022 |title=NFL MVP back-to-back winners: Aaron Rodgers set to join rare company in NFL history |url=https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |url-status=live |archive-url=https://web.archive.org/web/20220413074439/https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |archive-date=April 13, 2022 |access-date=February 20, 2022 |website=sportingnews.com |language=en}}</ref> Rodgers join Manning as de only players insyd NFL history to win at least four MVPs.<ref>{{Cite web |last=Spofford |first=Mike |date=February 10, 2022 |title=Packers QB Aaron Rodgers wins fourth NFL MVP award |url=https://www.packers.com/news/packers-qb-aaron-rodgers-wins-fourth-nfl-mvp-award |access-date=January 19, 2023 |website=packers.com |language=en-US}}</ref> Na dem rank am third by ein fellow players on de ''NFL Top 100'' Players of 2022.<ref>{{Cite web |title=2022 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2022-nfl-top-100.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2022 ====
[[File:Aaron_Rodgers_OCT2022_(cropped).jpg|thumb|Rodgers insyd 2022]]
[[File:Aaron_Rodgers_Packers_vs_Commanders_OCT2022.jpg|left|thumb|Rodgers dey play against de Washington Commanders insyd 2022]]
On March 8, Rodgers confirm say he go return den play give de Packers for de 2022 season after speculations dat Rodgers go fi retire anaa demand a trade to anoda team.<ref>{{Cite web |last=Demovsky |first=Rob |date=March 8, 2021 |title=QB Aaron Rodgers returning to play for Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220411070329/https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |archive-date=April 11, 2022 |access-date=March 9, 2021 |website=[[ESPN.com]]}}</ref> Na der be reports say Rodgers den de Packers agree to terms on a 4-year, $200 million contract extension wey go make am de highest-paid player insyd NFL history, buh Rodgers deny those reports on Twitter, wey he state say de numbers on de proposed contract be inaccurate, den dat he be yet to sign such a contract. He confirm, however, say he go return to play ein 18th NFL season plus de Packers.<ref>{{Cite web |date=March 15, 2022 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |url-status=live |archive-url=https://web.archive.org/web/20220404205504/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |archive-date=April 4, 2022 |access-date=April 27, 2022 |website=Packers.com}}</ref>
On March 16, he officially sign ein contract extension. Na de final terms of de contract be a 3-year contract (wich replace de final year of ein existing contract) worth $150.8 million, plus $101.5 million guaranteed. De new contract make am de highest paid player insyd North American sports history on an annual basis, surpassing de NBA ein [[Damian Lillard]] ein $49 million per annum contract.<ref>{{Cite web |last=Roscher |first=Liz |date=March 15, 2022 |title=Aaron Rodgers' Packers contract is reportedly official, and the numbers are staggering |url=https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |url-status=live |archive-url=https://web.archive.org/web/20220427025539/https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |archive-date=April 27, 2022 |access-date=March 17, 2022 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd de season opener against de Vikings, Rodgers throw for 195 yards den an interception insyd de 23–7 loss.<ref>{{Cite web |last=Demovsky |first=Rob |date=September 12, 2022 |title=Following loss to Minnesota Vikings, QB Aaron Rodgers says Green Bay Packers 'hurting ourselves' with 'too many mental mistakes' |url=https://www.espn.com/nfl/story/_/id/34575984/following-loss-minnesota-vikings-qb-aaron-rodgers-says-green-bay-packers-hurting-ourselves-too-many-mental-mistakes |access-date=September 12, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{cite web |last=Huber |first=Bill |date=September 12, 2022 |title=Mental Mistakes Frustrate Rodgers in Packers' Loss at Vikings |url=https://www.si.com/nfl/packers/gameday/mental-mistakes-frustrate-rodgers-in-packers-loss-at-vikings |access-date=July 1, 2025 |website=SI.com}}</ref> Insyd Week 4 against de Patriots, Rodgers throw for 251 yards den two touchdowns, buh he sanso throw ein fourth career pick-six to [[Jack Jones (American football)|Jack Jones]] insyd de 27–24 overtime win.<ref>{{Cite web |last=Patra |first=Kevin |date=October 3, 2022 |title=Aaron Rodgers on Packers' OT win over Patriots: 'This way of winning, I don't think, is sustainable' |url=https://www.nfl.com/news/aaron-rodgers-packers-patriots-this-way-of-winning-not-sustainable |access-date=October 13, 2022 |publisher=National Football League}}</ref> Insyd Week 5 at London, Rodgers throw for 222 yards den two touchdowns insyd an upset loss against de Giants.<ref>{{Cite news|last=Larrison|first=Ryan|date=October 9, 2022|title=Aaron Rodgers threw two touchdowns in a loss at London|url=https://www.rotoballer.com/player-news/aaron-rodgers-throws-two-touchdowns-during-loss-in-london/1079701|access-date=October 10, 2022|website=rotoballer.com}}</ref> Insyd Week 8 against de Buffalo Bills on Sunday Night Football, Rodgers throw for 203 yards, two touchdowns den one interception as de Packers loose dema fourth consecutive game insyd de 27–17 defeat.<ref>{{Cite web |last=Patra |first=Kevin |date=October 31, 2022 |title=Aaron Rodgers on the Packers' 3–5 start |url=https://www.nfl.com/news/aaron-rodgers-packers-3-5-start-nobody-feels-sorry-for-us-bills |access-date=November 5, 2022 |publisher=National Football League |language=en-US}}</ref> De next week against de Lions, Rodgers throw for 291 yards, a touchdown, den three interceptions insyd de 15–9 loss. Na e be de first time since Week 15 of de 2017 season wey Rodgers throw three interceptions insyd a game.<ref>{{Cite web |date=November 6, 2022 |title=Aaron Rodgers throws 3 INTs, lets Lions beat Packers 15–9 |url=https://www.cbssports.com/nfl/news/aaron-rodgers-throws-3-ints-lets-lions-beat-packers-15-9/ |access-date=November 6, 2022 |website=CBSSports.com |language=en |agency=Associated Press}}</ref> Rodgers bounce back de following week against de Cowboys, completing 14-of-20 passes for 224 yards den three touchdowns insyd 31–28 overtime victory.<ref>{{Cite web |last=Bubel |first=Jennifer |date=November 13, 2022 |title=Dallas Cowboys vs. Green Bay Packers: Stats, Scores, Highlights |url=https://en.as.com/nfl/dallas-cowboys-vs-green-bay-packers-live-online-stats-scores-and-highlights-nfl-week-10-n/ |access-date=November 15, 2022 |website=AS USA |language=en-us}}</ref><ref>{{Cite web |date=November 13, 2022 |title=Rodgers rallies Packers past McCarthy's Cowboys 31–28 in OT |url=https://www.espn.com/nfl/recap/_/gameId/401437131 |access-date=November 15, 2022 |website=[[ESPN.com]] |language=en-us |agency=Associated Press}}</ref> Following a Week 11 loss to de Titans, Rodgers confirm na he dey play plus a broken thumb on ein throwing hand he suffer insyd Week 5.<ref>{{Cite web |last=Alper |first=Josh |date=November 23, 2022 |title=Aaron Rodgers says he's been playing with a broken thumb |url=https://profootballtalk.nbcsports.com/2022/11/23/aaron-rodgers-says-hes-been-playing-with-a-broken-thumb/ |access-date=December 2, 2022 |website=ProFootballTalk |language=en-US}}</ref><ref>{{Cite web |last=Thompson |first=Scott |date=November 23, 2022 |title=Packers' Aaron Rodgers admits playing through broken thumb since Week 5 |url=https://www.foxnews.com/sports/packers-aaron-rodgers-admits-playing-through-broken-thumb-since-week-5 |access-date=November 24, 2022 |publisher=Fox News}}</ref> A Week 12 loss to de Eagles lef de Packers plus a 4–8 record, buh na de team rally off four consecutive wins to get to 8–8 before de regular season finale.<ref>{{Cite web |title=Green Bay Packers 2022 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2022/gamelog/ |access-date=January 20, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> De Packers fini plus an 8–9 record wey he miss de postseason following a Week 18 loss to de Detroit Lions insyd a win-and-in scenario for Green Bay.<ref>{{Cite web |title=2022 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2022/index.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |date=January 9, 2023 |title=How the Lions beat the Packers: Detroit eliminates rival Green Bay from playoff contention, Seahawks clinch final spot |url=https://www.nytimes.com/athletic/live-blogs/lions-packers-playoff-picture-seeding/Vj6r382oO6N1/ |access-date=January 20, 2023 |website=The Athletic |language=en}}</ref> After de game, Rodgers put ein arm around long-time teammate Cobb, wey he look solemnly around Lambeau Field before de two walked down de tunnel togeda. Sam suspected say dis indicate say Rodgers play ein last game give de Packers.<ref>{{Cite web |last=McKenna |first=Henry |date=January 9, 2023 |title=Has Packers legend Aaron Rodgers walked off Lambeau Field for the last time? |url=https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |url-status=live |archive-url=https://web.archive.org/web/20230109203158/https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |archive-date=January 9, 2023 |access-date=April 5, 2026 |website=[[Fox Sports]] |publisher=[[Fox Corporation]]}}</ref>
Rodgers fini de 2022 season plus 3,695 passing yards, 26 touchdowns, den 12 interceptions, wich mark de most for Rodgers insyd a single season since 2008.<ref>{{Cite web |title=Aaron Rodgers 2022 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2022/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |last=Kruse |first=Zach |date=January 9, 2023 |title=Aaron Rodgers throws interception on final pass of disappointing 2022 season |url=https://news.yahoo.com/aaron-rodgers-throws-interception-final-144926791.html |access-date=January 19, 2023 |publisher=Yahoo! News |language=en-US}}</ref> Na dem rank am 51st by ein fellow players on de ''NFL Top 100'' Players of 2023.<ref>{{Cite web |title=2023 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2023-nfl-top-100.htm |access-date=January 20, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
=== New York Jets ===
==== 2023: Achilles injury ====
[[File:Rodgers_vs_Bills_2.jpg|right|thumb|Rodgers (white, #8) dey take a snap against de Bills, shortly before ein injury.]]
On April 26, 2023, Rodgers be traded to de Jets, along plus de Packers dema first den fifth-round selections insyd de 2023 NFL draft, in exchange for de Jets dema first, second (via Cleveland) den sixth-round selections insyd de 2023 draft den a conditional second-round selection (wich na go convert to a first if Rodgers play 65% of de offensive snaps insyd 2023, buh na e it no happen) insyd de 2024 NFL draft.<ref>{{Cite web |last=Allen |first=Eric |date=April 26, 2023 |title=OFFICIAL Jets Acquire QB Aaron Rodgers From Green Bay Packers |url=https://www.newyorkjets.com/news/jets-acquire-qb-aaron-rodgers-from-green-bay-packers |access-date=July 28, 2023 |website=NewYorkJets.com}}</ref> De move echo de career path of ein predecessor Brett Favre, wey similarly spend over fifteen years as quarterback of de Packers before he be traded to de Jets.<ref>{{Cite web |last=Kerr |first=Jeff |date=April 24, 2023 |title=Aaron Rodgers traded to Jets: Ex-Packers QB taking eerily similar path as Brett Favre in journey to New York |url=https://www.cbssports.com/nfl/news/aaron-rodgers-traded-to-jets-ex-packers-qb-taking-eerily-similar-path-as-brett-favre-in-journey-to-new-york/ |access-date=May 1, 2023 |website=CBS Sports}}</ref> Although [[Joe Namath]] grant Rodgers permission to wear ein retired No. 12 jersey, Rodgers announce say he go return to wearing de No. 8 jersey, wich na he wear thru out ein college career plus de California Golden Bears.<ref>{{Cite web |last=Riccette |first=Billy |date=April 26, 2023 |title=Aaron Rodgers on number change: 'To me, No. 12 is Broadway Joe' |url=https://sports.yahoo.com/aaron-rodgers-number-change-no-185505111.html |access-date=July 19, 2023 |website=Yahoo! Sports}}</ref> On July 26, 2023, Rodgers take a pay cut wey he agree to a rework contract plus de Jets.<ref>{{cite web |last1=Cimini |first1=Rich |date=July 26, 2023 |title=Aaron Rodgers signs reworked contract with Jets |url=https://www.espn.com/nfl/story/_/id/38075863/aaron-rodgers-agrees-reworked-contract-jets |access-date=July 26, 2023 |website=[[ESPN.com]]}}</ref>
Making ein Jets debut insyd Week 1 on ''Monday Night Football'' against de Bills at MetLife Stadium, Rodgers injure ein left ankle on just ein fourth offensive snap after he be sacked by Bills dema defensive end [[Leonard Floyd]]. Na dem help Rodgers off de field wey dem later cart am to de locker room for further evaluation.<ref>{{Cite web |last=Cimini |first=Rich |date=September 12, 2023 |title=Jets fear QB Aaron Rodgers suffered serious Achilles injury |url=https://www.espn.com/nfl/story/_/id/38381823/qb-aaron-rodgers-injures-ankle-opening-drive-new-york-jets-debut |access-date=September 12, 2023 |website=[[ESPN.com]] |language=en}}</ref> Rodgers ein backup [[Zach Wilson]] go on to lead de Jets to a 22–16 win insyd overtime.<ref>{{Cite web |last=Kownack |first=Bobby |date=September 11, 2023 |title=Jets QB Aaron Rodgers exits Monday's overtime win against Bills on first drive; ankle X-rays negative |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-ankle-questionable-to-return-to-monday-s-game-against-bill |access-date=September 12, 2023 |website=NFL.com |language=en-US}}</ref> De next day, na dem diagnose Rodgers plus an Achilles tendon rupture wey na dem later place am on injured reserve.<ref>{{Cite web |last=Dajani |first=Jordan |date=September 12, 2023 |title=Aaron Rodgers injury update: MRI reveals Jets QB suffered a complete tear of Achilles tendon |url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-update-mri-reveals-jets-qb-suffered-a-complete-tear-of-achilles-tendon/ |access-date=September 12, 2023 |website=CBS Sports |language=en}}</ref><ref>{{Cite web |last=Sullivan |first=Phil |date=September 12, 2023 |title=Jets Place Aaron Rodgers on Injured Reserve; Saleh Commits To Zach Wilson |url=https://www.jetnation.com/2023/09/13/jets-place-aaron-rodgers-on-injured-reserve-saleh-commits-to-zach-wilson/ |access-date=September 14, 2023 |website=JetNation.com}}</ref> Rodgers undergo surgery on September 13, plus Dr. [[Neal ElAttrache]] placing an internal brace insyd ein left Achilles plus de goal of a mid-January return at de earliest.<ref>{{Cite web |last1=Rapoport |first1=Ian |author-link1=Ian Rapoport |last2=Pelissero |first2=Tom |author-link2=Tom Pelissero |date=September 16, 2023 |title=Jets QB Aaron Rodgers aims for potential playoff return after innovative surgery on torn Achilles |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-aims-for-potential-playoff-return-after-innovative-surgery |access-date=September 17, 2023 |website=NFL.com}}</ref> On November 29, de New York Jets open de 21-day practice window for Rodgers. Limited insyd practice, na Rodgers be cleared for functional activity buh no contact.<ref>{{Cite web |last=Patra |first=Kevin |date=November 29, 2023 |title=Jets opening QB Aaron Rodgers' 21-day practice window |url=https://www.nfl.com/news/jets-opening-qb-aaron-rodgers-21-day-practice-window |access-date=November 30, 2023 |website=NFL.com |language=en-US}}</ref> He be activated off injured reserve on December 20, buh de Jets announce he no go san play dis season after dema Week 15 loss to de Dolphins dem mathematically eliminate dem from playoff contention.<ref>{{Cite web |last=Shook |first=Nick |date=December 20, 2023 |title=Jets to activate Aaron Rodgers off IR to allow QB to continue to practice with team |url=https://www.nfl.com/news/jets-to-activate-aaron-rodgers-off-ir-to-allow-qb-to-continue-to-practice-with-t |access-date=December 20, 2023 |website=NFL.com}}</ref><ref>{{cite web |last=Reyes |first=Lorenzo |date=December 20, 2023 |title=Aaron Rodgers' season is over, so why are the Jets activating him? |url=https://www.usatoday.com/story/sports/nfl/jets/2023/12/20/aaron-rodgers-comeback-jets-shut-down-achilles-tear/71825680007/ |access-date=July 24, 2024 |website=USA TODAY}}</ref> Despite missing most of de season, he be ranked 92nd by ein fellow players on de NFL Top 100 Players of 2024.<ref>{{cite web |last=Hetherington |first=Krissy |date=July 23, 2024 |title=Top 100 Players of 2024, Nos. 100–91: Aaron Rodgers falls to lowest ranking in his career |url=https://www.nfl.com/news/top-100-players-of-2024-nos-100-91-aaron-rodgers-trevor-lawrence |access-date=July 6, 2025 |website=NFL.com}}</ref>
==== 2024 ====
[[File:Aaron_Rodgers_Jets_vs_Titans_SEPT2024.png|thumb|Rodgers dey play against de Tennessee Titans at Nissan Stadium insyd 2024]]
After playing just four offensive snaps insyd ein first season plus de Jets secof an Achilles injury, Rodgers make ein return on ''Monday Night Football'' insyd Week 1 to kick off de 2024 campaign. Insyd ein highly anticipated return, Rodgers plete 13 of 21 passes for 167 yards, one touchdown den one interception insyd a 32–19 loss to de defending NFC champion San Francisco 49ers.<ref>{{Cite web |last=Patra |first=Kevin |date=September 9, 2024 |title=Aaron Rodgers on Jets' loss to 49ers: 'I can play better' |url=https://www.nfl.com/news/aaron-rodgers-on-jets-loss-to-49ers-i-can-play-better |access-date=September 10, 2024 |website=[[NFL.com]] |language=en}}</ref> Insyd de Jets dema home opener against de New England Patriots, Rodgers plete 27 of 35 passes for 281 yards den two touchdowns as de Jets cruise to a 24–3 victory.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=September 19, 2024 |title='Thursday Night Football' highlights: Aaron Rodgers, Jets dominate Patriots |url=https://www.nbcnews.com/news/sports/live-blog/patriots-vs-jets-live-updates-jacoby-brissett-takes-aaron-rodgers-new-rcna171577 |access-date=September 22, 2024 |website=NBC News}}</ref> Insyd Week 5 insyd London, Rodgers cam be de ninth quarterback insyd NFL history to reach 60,000 passing yards buh he tie ein career-high plus three interceptions, wey dey include a game-sealing pick plus under a minute left as de Jets loose 23–17 to de Vikings.<ref>{{Cite web |last=Cimini |first=Rich |date=October 6, 2024 |title=Aaron Rodgers 9th QB to pass for 60K yards, but 3 INTs doom Jets |url=https://www.espn.com/nfl/story/_/id/41642251/jets-aaron-rodgers-becomes-9th-qb-pass-60000-yards |access-date=October 6, 2024 |website=ESPN.com}}</ref> Jets head coach [[Robert Saleh]] unexpectedly be fired after de London loss, plus sam analysts dey perceive say na he no get along plus Rodgers.<ref>{{Cite web |last1=Li |first1=David K. |last2=Abdelkader |first2=Rima |date=October 8, 2024 |title=New York Jets fire coach Robert Saleh after 2–3 start and apparent tension with Aaron Rodgers |url=https://www.nbcnews.com/sports/nfl/jets-robert-saleh-fired-rcna174473 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref> Wen dem biz am about am on ''The Pat McAfee Show'', de quarterback firmly deny accusations say he get a role insyd Saleh ein termination.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=October 9, 2024 |title=Aaron Rodgers on accusations he wanted Jets coach Robert Saleh fired: 'Patently false' |url=https://www.nbcnews.com/sports/nfl/aaron-rodgers-robert-saleh-fired-rcna174701 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref>
Insyd Week 6, de Jets dema first game after Saleh ein termination, Rodgers throw for 294 yards den two touchdowns, wey dey include a 52-yard Hail Mary pass to [[Allen Lazard]] to close out de first half, ein fourth career such pass completion.<ref>{{Cite news|last=Waszak Jr.|first=Dennis|date=October 14, 2024|title=Jets' Aaron Rodgers throws a 52-yard Hail Mary to Allen Lazard to end the first half vs. Bills|url=https://apnews.com/article/jets-rodgers-hail-mary-lazard-49f7dbe5569749c60e9878cc7ea5d606|access-date=October 20, 2024|work=AP News}}</ref> However, anoda interception on de Jets dema final drive doomed dem as dem loose 23–20 to de Buffalo Bills.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=After 'weird' week, Rodgers and Jets can't overcome mistakes and missed chances in loss to Bills|url=https://apnews.com/article/jets-bills-rodgers-ulbrich-0a14afca36a55c2cbb0f9aa35c3a7855|access-date=October 15, 2024|work=AP News|date=October 14, 2024}}</ref> Following de loss, se Jets trade for [[Davante Adams]], plus whom Rodgers previously combine for over 600 receptions den 68 touchdowns during dema eight seasons togeda insyd Green Bay.<ref>{{Cite news|last1=Cimini|first1=Rich|last2=Fowler|first2=Jeremy|last3=Walder|first3=Seth|last4=Reid|first4=Jordan|last5=Gutierrez|first5=Paul|last6=Karabell|first6=Eric|date=October 15, 2024|title=How Davante Adams affects the Jets, Aaron Rodgers' playoff hopes|url=https://www.espn.com/nfl/story/_/id/41809450/new-york-jets-future-davante-adams-trade-las-vegas-raiders|access-date=October 15, 2024|work=ESPN}}</ref> However, de Jets continue to struggle, as Rodgers throw two interceptions wey he lead de offense to zero points insyd de second half of dema Week 7 matchup against de Steelers, losing dema fourth consecutive game.<ref>{{cite news|last=Cimini|first=Rich|title=Aaron Rodgers, Davante Adams reunion fails to spark Jets|url=https://www.espn.com/nfl/story/_/id/41917779/aaron-rodgers-davante-adams-reunion-fails-spark-jets-drop-4th-straight-vs-steelers|access-date=October 21, 2024|work=ESPN|date=October 21, 2024}}</ref> After a loss to de Patriots, Rodgers help de Jets snap dema five-game losing streak insyd Week 9 against de Houston Texans, throwing for 179 yards den three touchdowns insyd de second half after he be shutout insyd de first half as de Jets win 21–13.<ref>{{cite news|last=Fried|first=Justin|title=Aaron Rodgers saves NY Jets' season with vintage performance amidst fan revolt|url=https://thejetpress.com/aaron-rodgers-saves-ny-jets-season-vintage-performance-fan-revolt-01jbjvhkx6k7|access-date=October 31, 2024|work=The Jet Press|date=October 31, 2024}}</ref>
Insyd Week 11 against de Colts, Rodgers throw two touchdowns wey he lead de Jets to a season-high insyd points, buh na dem fall short insyd a 28–27 loss, dropping to 3–7.<ref>{{Cite web |last=Miller |first=Colin |date=November 19, 2024 |title=Jets' Aaron Rodgers Not a Fan of Reporter's 'Buzzword' After Another Loss |url=https://athlonsports.com/nfl/new-york-jets-aaron-rodgers-familiar-response-loss-indianapolis-colts-recap-shock-buzz-word |access-date=November 26, 2024 |website=Athlon Sports |language=en}}</ref> During dema bye week, na dem reveal say na Rodgers dey play thru hamstring, knee, den ankle injuries buh na he refuse to get scans done in fear of how severe dem go be.<ref>{{Cite web |last=McCarriston |first=Shanna |date=November 24, 2024 |title=Jets' Aaron Rodgers played through multiple injuries this season, resisted getting scans, per report |url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-played-through-multiple-injuries-this-season-resisted-getting-scans-per-report/ |access-date=November 26, 2024 |website=CBSSports.com |language=en}}</ref> Despite dis, he remain de starter following de bye week.<ref>{{cite news|last=Cimini|first=Rich|title=Jeff Ulbrich says Aaron Rodgers to remain Jets' starting QB|url=https://www.espn.com/nfl/story/_/id/42738131/jeff-ulbrich-says-aaron-rodgers-remain-jets-starting-qb|access-date=December 9, 2024|work=ESPN|date=December 2, 2024}}</ref> Entering Week 14, Rodgers hold an NFL-record 34-game drought widout a 300-yard passing performance, wich he break on December 8 against de Dolphins.<ref>{{cite news|last=Benjamin|first=Cody|title=Jets' Aaron Rodgers halts historic drought of 300-yard passing games in Week 14 loss to Dolphins|url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-halts-historic-drought-of-300-yard-passing-games-in-week-14-loss-to-dolphins/|access-date=December 9, 2024|work=CBS Sports|date=December 8, 2024}}</ref> Despite recording ein first 300-yard game insyd three years, de Jets fall 32–26 insyd overtime, eliminating dem from playoff contention.<ref>{{cite news|last=Cimini|first=Rich|title=Jets collapse again, extend postseason drought to 14 seasons|url=https://www.espn.com/nfl/story/_/id/42862200/jets-collapse-again-extend-postseason-drought-14-seasons|access-date=December 9, 2024|work=ESPN|date=December 8, 2024}}</ref> On January 5, 2025, Rodgers plete ein 500th touchdown pass to [[Tyler Conklin]] at MetLife Stadium against de Dolphins, becoming de fifth quarterback insyd NFL history plus 500 touchdown passes.<ref>{{cite news|last=Cimini|first=Rich|title=Jets QB Aaron Rodgers joins prestigious 500 touchdown club|url=https://www.espn.com/nfl/story/_/id/43300286/jets-qb-aaron-rodgers-joins-prestigious-500-touchdown-club|access-date=January 5, 2025|work=ESPN|date=January 5, 2025}}</ref> He fini de final game of de season plus 274 yards, a season-high four touchdowns, den an interception as de Jets win 32–20, finishing plus a record of 5–12.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=Rodgers throws a season-high 4 touchdown passes in possible final game as Jets top Dolphins 32–20|url=https://apnews.com/article/dolphins-jets-score-rodgers-8013b4de0ea591a84d721f5c4dd17111|access-date=January 5, 2025|work=Associated Press|date=January 5, 2025}}</ref> He fini de 2024 season plus 3,897 yards, 28 touchdowns, den 11 interceptions.<ref>{{Cite web |title=Aaron Rodgers 2024 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2024/ |access-date=January 15, 2025 |website=[[Pro Football Reference]] |language=en}}</ref>
On February 13, 2025, na de Jets announce dema intention to part ways plus Rodgers after two seasons.<ref>{{Cite web |last=Allen |first=Eric |date=February 13, 2025 |title=Jets to move on from Aaron Rodgers |url=https://www.newyorkjets.com/news/jets-moving-on-from-aaron-rodgers |access-date=February 13, 2025 |website=NewYorkJets.com |language=en-US}}</ref> Na Rodgers be released as a post-June 1 designation, allowing de Jets to split ein salary cap charges ($49 million) over two years. De Jets therefore keep am on de roster til March 12, de start of de 2025 NFL year, wen na dem officially released am.<ref>{{cite web |last=Cimini |first=Rich |date=February 13, 2025 |title=Jets announce split with Aaron Rodgers, wish him success |url=https://www.espn.com/nfl/story/_/id/43826969/jets-announce-split-aaron-rodgers-wish-success |accessdate=February 25, 2025}}</ref>
=== Pittsburgh Steelers ===
[[File:McCormickRodgersFrazier.jpg|thumb|Rodgers (middle) at Steelers training camp insyd 2025]]
==== 2025 ====
On June 6, 2025, de Pittsburgh Steelers agree to terms plus Rodgers on a one-year deal.<ref>{{Cite web |last=Varley |first=Teresa |date=June 5, 2025 |title=Steelers agree to terms with Rodgers |url=https://www.steelers.com/news/steelers-agree-to-terms-with-rodgers |access-date=June 6, 2025 |website=Steelers.com |language=en-US}}</ref> De following day, he officially sign ein one-year, $13.65 million contract, wich dey include $10 million guaranteed wey fi be worth up to $19.5 million plus incentives.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Sources: QB Rodgers with Steelers, signs one-year, $13.65M deal|url=https://www.espn.com/nfl/story/_/id/45470407/sources-qb-rodgers-steelers-signs-one-year-1365m-deal|access-date=June 7, 2025|work=ESPN|date=June 7, 2025}}</ref> De team subsequently announce say Rodgers go continue to wear ein number 8 from Cal den de Jets, since ein number 12 plus de Packers unofficially be retired for [[Terry Bradshaw]]; neither de Steelers nor Bradshaw sign off on allowing Rodgers to wear number 12.<ref>{{cite web |last1=Goldstein |first1=Jeremy |date=June 7, 2025 |title=Aaron Rodgers suffers early Steelers setback thanks to Terry Bradshaw |url=https://www.themirror.com/sport/american-football/aaron-rodgers-terry-bradshaw-steelers-1194927 |website=[[Daily Mirror]]}}</ref>
Na Rodgers ein months-long courtship den subsequent signing be met plus mixed to negative reaction among Steeler fans as well as ex-Steelers Bradshaw den [[Ryan Clark (American football)|Ryan Clark]] secof ein polarizing attitude,<ref>{{cite web |last=Sayer |first=Ricky |date=June 5, 2025 |title=Aaron Rodgers signing brings mixed reactions from Steelers fans |url=https://www.cbsnews.com/pittsburgh/news/steelers-fans-aaron-rodgers-signing-reaction/ |access-date=June 10, 2025 |work=CBS News}}</ref><ref>{{cite web |last=Gamba-Ellis |first=Thomas |date=June 6, 2025 |title=Aaron Rodgers signing is 'worst-case scenario' for Steelers: Ryan Clark |url=https://nypost.com/2025/06/06/sports/aaron-rodgers-signing-is-worst-case-scenario-for-the-steelers-ryan-clark/ |access-date=June 10, 2025 |work=New York Post}}</ref><ref>{{cite web |last=Baca |first=Michael |date=May 28, 2025 |title=Steelers legend Terry Bradshaw calls Pittsburgh's interest in QB Aaron Rodgers 'a joke' |url=https://www.nfl.com/news/steelers-legend-terry-bradshaw-calls-pittsburgh-interest-aaron-rodgers-a-joke |access-date=September 25, 2025 |website=NFL.com}}</ref> wey sam fans feeling like he no fit Western Pennsylvania dema traditional blue collar base.<ref>{{cite web |last1=Cioppa |first1=Jordan |date=June 5, 2025 |title=Steelers fans react to Aaron Rodgers coming to Pittsburgh |url=https://www.wtae.com/article/steelers-fans-reaction-aaron-rodgers-pittsburgh-quarterback/64985539 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> Sam speculate say Rodgers fi be swayed to sign plus de Steelers by ein friendship plus former Indianapolis Colts punter den Pittsburgh-area native [[Pat McAfee]].<ref>{{cite web |last1=Ciampi |first1=Raquel |date=April 17, 2025 |title=Aaron Rodgers talks sneaking into Pittsburgh for first visit with Steelers on McAfee Show |url=https://www.wtae.com/article/steelers-aaron-rodgers-mcafee-show/64514048 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> On June 23, 2025, Rodgers flow McAfee on ein show say he go likely retire after de 2025 season.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Steelers' Aaron Rodgers 'pretty sure' this will be final season|url=https://www.espn.com/nfl/story/_/id/45575766/steelers-aaron-rodgers-pretty-sure-final-season|access-date=June 29, 2025|work=ESPN|date=June 29, 2025}}</ref>
On September 7, Rodgers make ein Steelers debut against ein former team, de New York Jets. During ein first outing plus Pittsburgh, he plete 22 of 30 pass attempts for 244 yards den four touchdowns while committing no turnovers. De game end plus a 34–32 Steelers victory.<ref>{{cite web |last=Maaddi |first=Rob |date=September 9, 2025 |title=Aaron Rodgers showed he has plenty left to help the Steelers |url=https://sports.yahoo.com/article/aaron-rodgers-showed-plenty-left-191014645.html |access-date=September 25, 2025 |website=Yahoo! Sports}}</ref> Later dat month, Rodgers surpasse [[Brett Favre]], ein former Packers teammate, insyd career touchdown passes wen he throw a scoring pass to [[D.K. Metcalf]] insyd a win over de New England Patriots. Dis move Rodgers into fourth place for most career touchdown passes (509), only behind [[Peyton Manning]], [[Drew Brees]] den [[Tom Brady]].<ref name="u989">{{cite web |last=Gordon |first=Grant |date=September 21, 2025 |title=Aaron Rodgers moves past former teammate Brett Favre with 509th career touchdown pass |url=https://www.nfl.com/news/aaron-rodgers-moves-past-brett-favre-509-career-touchdown-pass |access-date=October 14, 2025 |website=NFL.com}}</ref>
During de second quarter of de Steelers dema Week 11 victory over de Cincinnati Bengals, Rodgers suffer a small fracture insyd ein left wrist.<ref>{{cite news|last=DeArdo|first=Bryan|url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-steelers-qb-hand-injury/|title=Aaron Rodgers has small fracture in wrist, Steelers QB reportedly pushing to play this week|website=[[CBSSports.com]]|publisher=[[CBS Sports]]|date=November 17, 2025|access-date=November 30, 2025}}</ref> De injury prevent am from playing de following game against de Bears, wich [[Mason Rudolph (American football)|Mason Rudolph]] start insyd ein place.<ref>{{cite news|last=Cohen|first=Jay|url=https://www.kare11.com/article/syndication/associatedpress/steelers-qb-aaron-rodgers-misses-game-against-bears-because-of-a-broken-left-wrist/616-e94370ae-9cda-4db9-891f-56092ba44dd1|title=With Aaron Rodgers sidelined, Mason Rudolph and the Steelers fall short in Chicago|agency=[[Associated Press|AP]]|publisher=[[KARE (TV)]]|date=November 23, 2025|access-date=November 30, 2025}}</ref> Rodgers return for Week 13 insyd Buffalo.<ref>{{cite news|last=Guise|first=Michael|url=https://www.cbsnews.com/pittsburgh/news/is-aaron-rodgers-playing-steelers-bills-nfl-news/|title=Is Aaron Rodgers playing against the Bills? Steelers give update on starting quarterback.|publisher=[[CBS News]]|date=November 28, 2025|access-date=November 30, 2025}}</ref>
Rodgers lead de Steelers to an AFC North title den a playoff berth following a Week 18 win over de Baltimore Ravens.<ref>{{Cite web |last=Pryor |first=Brooke |date=January 5, 2026 |title=Steelers take AFC North as Ravens FG sails wide |url=https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-url=https://web.archive.org/web/20260105045214/https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-date=January 5, 2026 |access-date=January 5, 2026 |website=ESPN.com |language=en}}</ref> He fini de 2025 season throwing for 3,322 yards, 24 touchdowns, den seven interceptions, den rushing for a touchdown.<ref>{{Cite web |title=Aaron Rodgers 2025 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2025/ |access-date=January 8, 2026 |website=Pro-Football-Reference.com |language=en}}</ref>
Insyd de Steelers dema playoff loss to de Houston Texans, Rodgers play poorly, completing 17 passes out of 33 attempts for 146 yards, getting sacked 4 times for 36 yards, den throwing a pick-six.<ref>{{cite news|last1=Heyen|first1=Billy|title=Texans defense made Steelers' Aaron Rodgers play the worst playoff game by a QB in a dozen years|url=https://sports.yahoo.com/articles/texans-defense-made-steelers-aaron-131529479.html?guccounter=1|access-date=January 13, 2026|work=Yahoo Sports|date=January 13, 2026}}</ref> Rodgers sanso fumble on one of de sacks, wich dem return for a Texans touchdown.<ref>{{cite news|last1=Brinkerhoff|first1=Nick|title=Aaron Rodgers crushed on strip-sack, leads to critical Texans score|url=https://www.usatoday.com/story/sports/nfl/playoffs/2026/01/12/aaron-rodgers-strip-sack-crushed-texans-packers/88153423007/|access-date=January 13, 2026|work=USA Today|date=January 12, 2026}}</ref>
==== 2026 ====
[[File:RodgersandMcCarthy.jpg|thumb|Rodgers plus [[Mike McCarthy]] during training camp insyd 2026]]
On May 16, 2026, Rodgers return to de Steelers for ein 22nd season, signing a one-year deal worth up to $25 million.<ref>{{Cite web |last=Pryor |first=Brooke |date=May 16, 2026 |title=Sources: Aaron Rodgers to sign 1-year deal with Steelers |url=https://www.espn.com/nfl/story/_/id/48791130/aaron-rodgers-sign-1-year-deal-steelers |access-date=May 16, 2026 |website=ESPN}}</ref> De signing reunite am plus head coach Mike McCarthy.<ref>{{Cite web |last=Middlehurst-Schwartz |first=Michael |date=May 16, 2026 |title=Aaron Rodgers to re-sign with Steelers, reunite with coach Mike McCarthy |url=https://www.usatoday.com/story/sports/nfl/steelers/2026/05/16/aaron-rodgers-contract-pittsburgh-steelers-mike-mccarthy/88698339007/ |access-date=May 16, 2026 |website=USA Today}}</ref> Rodgers later announce say de 2026 season go be ein final season insyd de NFL.<ref>{{Cite web |last=Ulrich |first=Logan |date=2026-05-20 |title=Aaron Rodgers Says 2026 Will Be His Final Season |url=https://nfltraderumors.co/aaron-rodgers-says-2026-will-be-his-final-season/ |access-date=2026-05-20 |website=NFLTradeRumors.co |language=en-US}}</ref>
==Career statistics==
{| class="wikitable"
|-
! colspan="2"| Legend
|-
| style="background:#ff0; width:3em;"|
| AP [[NFL MVP]]
|-
| style="background:#f4c842; width:3em;"|
| [[Super Bowl Most Valuable Player Award|Super Bowl MVP]]
|-
| style="background:#afe6ba; width:3em;"|
| Won the [[Super Bowl]]
|-
| style="background:#e0cef2; width:3em;"|
| NFL record
|-
| style="background:#cfecec; width:3em;"|
| Led the league
|-
| style="width:3em;"|'''Bold'''
| Career best
|}
===NFL===
====Regular season====
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|Regular season}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="11"| Passing
! colspan="5"| Rushing
! colspan="2"| Sacked
! colspan="2"| Fumbles
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starting quarterback}} !! {{abbr|Cmp|Passes completed}} !! {{abbr|Att|Passes attempted}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Y/A|Yards per passing attempt}} !! {{abbr|Lng|Longest pass completion}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions thrown}} !! {{abbr|TD%|Passing touchdown percentage}} !! {{abbr|Int%|Interception thrown percentage}} !! {{abbr|Rtg|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Y/A|Yards per rushing attempt}} !! {{abbr|Lng|Longest rushing attempt}} !! {{abbr|TD|Rushing touchdowns}} !! {{abbr|Sck|Sacks}} !! {{abbr|SckY|Yards lost from sacks}} !! {{abbr|Fum|Fumbles}} !! {{abbr|Lost|Fumbles lost}}
|-
! [[2005 NFL season|2005]] !! [[2005 Green Bay Packers season|GB]]
| 3 || 0 || — || 9 || 16 || 56.3 || 65 || 4.1 || 16 || 0 || 1 || 0.0 || 6.3 || 39.8 || 2 || 7 || 3.5 || 8 || 0 || 3 || 28 || 2 || 2
|-
! [[2006 NFL season|2006]] !! [[2006 Green Bay Packers season|GB]]
| 2 || 0 || — || 6 || 15 || 40.0 || 46 || 3.1 || 16 || 0 || 0 || 0.0 || '''0.0'''|| 48.2 || 2 || 11 || 5.5 || 6 || 0 || 3 || 18 || 1 || 1
|-
! [[2007 NFL season|2007]] !! [[2007 Green Bay Packers season|GB]]
| 2 || 0 || — || 20 || 28 || 71.4 || 218 || 7.8 || 43 || 1 || 0 || 3.6 || '''0.0'''|| 106.0 || 7 || 29 || 4.1 || 13 || 0 || 3 || 24 || 0 || 0
|-
! [[2008 NFL season|2008]] !! [[2008 Green Bay Packers season|GB]]
| 16 || 16 || 6–10 || 341 || 536 || 63.6 || 4,038 || 7.5 || 71 || 28 || 13 || 5.2 || 2.4 || 93.8 || 56 || 207 || 3.7 || 21 || 4 || 34 || 231 || 10 || 3
|-
! [[2009 NFL season|2009]] !! [[2009 Green Bay Packers season|GB]]
| 16 || 16 || 11–5 || 350 || 541 || 64.7 || 4,434 || 8.2 || 83 || 30 || 7 || 5.5 || style="background:#cfecec;"| 1.3 || 103.2 || 58 || 316 || 5.4 || '''35''' || '''5''' || style="background:#cfecec;"| 50 || 306 || 10 || 4
|-
! [[2010 NFL season|2010]] !! style="background:#afe6ba;"|[[2010 Green Bay Packers season|GB]]
| 15 || 15 || 10–5 || 312 || 475 || 65.7 || 3,922 || 8.3 || 86 || 28 || 11 || 5.9 || 2.3 || 101.2 || 64 || 356 || 5.6 || 27 || 4 || 31 || 193 || 4 || 1
|-
! style="background:#ff0;"|[[2011 NFL season|2011]] !! [[2011 Green Bay Packers season|GB]]
| 15 || 15 || '''14–1'''|| 343 || 502 || 68.3 || '''4,643''' || style="background:#cfecec;"| '''9.2''' || '''93''' || 45 || 6 || style="background:#cfecec;"| 9.0 || 1.2 || style="background:#e0cef2;"| '''122.5''' || 60 || 257 || 4.3 || 25 || 3 || 36 || 219 || 4 || '''0'''
|-
! [[2012 NFL season|2012]] !! [[2012 Green Bay Packers season|GB]]
| 16 || 16 || 11–5 || 371 || 552 || 67.2 || 4,295 || 7.8 || 73 || 39 || 8 || style="background:#cfecec;"| 7.1 || 1.4 || style="background:#cfecec;"| 108.0 || 54 || 259 || 4.8 || 27 || 2 || style="background:#cfecec;"| 51 || 293 || 5 || 4
|-
! [[2013 NFL season|2013]] !! [[2013 Green Bay Packers season|GB]]
| 9 || 9 || 6–3 || 193 || 290 || 66.6 || 2,536 || 8.7 || 83 || 17 || 6 || 5.9 || 2.1 || 104.9 || 30 || 120 || 4.0 || 18 || 0 || 21 || '''117''' || 4 || '''0'''
|-
! style="background:#ff0;"|[[2014 NFL season|2014]] !! [[2014 Green Bay Packers season|GB]]
| 16 || 16 || 12–4 || 341 || 520 || 65.6 || 4,381 || 8.4 || 80 || 38 || 5 || 7.3 || style="background:#cfecec;"| 0.9 || 112.2 || 43 || 269 || '''6.3''' || 19 || 2 || 28 || 174 || 10 || 2
|-
! [[2015 NFL season|2015]] !! [[2015 Green Bay Packers season|GB]]
| 16 || 16 || 10–6 || 347 || 572 || 60.7 || 3,821 || 6.7 || 65 || 31 || 8 || 5.4 || 1.4 || 92.7 || 58 || 344 || 5.9 || 18 || 1 || 46 || 314 || 8 || 4
|-
! [[2016 NFL season|2016]] !! [[2016 Green Bay Packers season|GB]]
| 16 || 16 || 10–6 || '''401''' || '''610''' || 65.7 || 4,428 || 7.3 || 66 || style="background:#cfecec;"| 40 || 7 || 6.6 || 1.1 || 104.2 || '''67'''|| '''369'''|| 5.5 || 23 || 4 || 35 || 246 || 8 || 4
|-
! [[2017 NFL season|2017]] !! [[2017 Green Bay Packers season|GB]]
| 7 || 7 || 4–3 || 154 || 238 || 64.7 || 1,675 || 7.0 || 72 || 16 || 6 || 6.7 || 2.5 || 97.2 || 24 || 126 || 5.3 || 18 || 0 || 22 || 168 || '''1''' || 1
|-
! [[2018 NFL season|2018]] !! [[2018 Green Bay Packers season|GB]]
| 16 || 16 || 6–9–1 || 372 || 597 || 62.3 || 4,442 || 7.4 || 75 || 25 || '''2''' || 4.2 || style="background:#e0cef2;"| 0.3 || 97.6 || 43 || 269 || '''6.3''' || 23 || 2 || 49 || 353 || 6 || 3
|-
! [[2019 NFL season|2019]] !! [[2019 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 353 || 569 || 62.0 || 4,002 || 7.0 || 74 || 26 || 4 || 4.6 || style="background:#cfecec;"| 0.7 || 95.4 || 46 || 183 || 4.0 || 17 || 1 || 36 || 284 || 4 || 4
|-
! style="background:#ff0;"|[[2020 NFL season|2020]] !! [[2020 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 372 || 526 || style="background:#cfecec;"| '''70.7''' || 4,299 || 8.2 || 78 || style="background:#cfecec;"| '''48'''|| 5 || style="background:#cfecec;"| '''9.1''' || style="background:#cfecec;" | 0.9 || style="background:#cfecec;"| 121.5 || 38 || 149 || 3.9 || 14 || 3 || '''20''' || 182 || 4 || 2
|-
! style="background:#ff0;"|[[2021 NFL season|2021]] !! [[2021 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 366 || 531 || 68.9 || 4,115 || 7.7 || 75 || 37 || 4 || style="background:#cfecec;"| 7.0 || style="background:#cfecec;"| 0.8 || style="background:#cfecec;"| 111.9 || 33 || 101 || 3.1 || 18 || 3 || 30 || 188 || 3 || '''0'''
|-
! [[2022 NFL season|2022]] !! [[2022 Green Bay Packers season|GB]]
| 17 || 17 || 8–9 || 350 || 542 || 64.6 || 3,695 || 6.8 || 58 || 26 || 12 || 4.8 || 2.2 || 91.1 || 34 || 94 || 2.8 || 18 || 1 || 32 || 258 || 8 || 4
|-
! [[2023 NFL season|2023]] !! [[2023 New York Jets season|NYJ]]
| 1 || 1 || 1–0 || 0 || 1 || 0.0 || 0 || 0.0 || 0 || 0 || 0 || 0.0 || '''0.0'''|| 39.6 || 0 || 0 || — || 0 || 0 || 1 || 10 || 0 || 0
|-
! [[2024 NFL season|2024]] !! [[2024 New York Jets season|NYJ]]
| 17 || 17 || 5–12 || 368 || 584 || 63.0 || 3,897 || 6.7 || 71 || 28 || 11 || 4.8 || 1.9 || 90.5 || 22 || 107 || 4.9 || 18 || 0 || 40 || 302 || 5 || 2
|-
! [[2025 NFL season|2025]] !! [[2025 Pittsburgh Steelers season|PIT]]
| 16 || 16 || 10–6 || 327 || 498 || 65.7 || 3,322 || 6.7 || 80 || 24 || 7 || 4.8 || 1.4 || 94.8 || 21 || 61 || 2.9 || 20 || 1 || 29 || 180 || 4 || 1
|-
! colspan="2" | Career<ref>{{cite web | url=https://www.pro-football-reference.com/players/R/RodgAa00.htm | title=Aaron Rodgers Stats, Height, Weight, Position, Draft, College | website=[[Pro-Football-Reference.com]] }}</ref> !! 264 !! 257 !! {{nowrap|163–93–1}}!! 5,696 !! 8,743 !! 65.1 !! 66,274 !! 7.6 !! 93 !! 527 !! 123 !! 6.0 !! style="background:#e0cef2;"|1.4 !! style="background:#e0cef2;"|102.2 !! 762 !! 3,634 !! 4.8 !! 35 !! 36 !! style="background:#e0cef2; " | 600 !! 4,088 !! 101 !! 42
|}
====Postseason====
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|Postseason}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="11"| Passing
! colspan="5"| Rushing
! colspan="2"| Sacked
! colspan="2"| Fumbles
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starting quarterback}} !! {{abbr|Cmp|Passes completed}} !! {{abbr|Att|Passes attempted}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Y/A|Yards per passing attempt}} !! {{abbr|Lng|Longest pass completion}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions thrown}} !! {{abbr|TD%|Passing touchdown percentage}} !! {{abbr|Int%|Interception thrown percentage}} !! {{abbr|Rtg|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Y/A|Yards per rushing attempt}} !! {{abbr|Lng|Longest rushing attempt}} !! {{abbr|TD|Rushing touchdowns}} !! {{abbr|Sck|Sacks}} !! {{abbr|SckY|Yards lost from sacks}} !! {{abbr|Fum|Fumbles}} !! {{abbr|Lost|Fumbles lost}}
|-
! [[2007–08 NFL playoffs|2007]] !! [[2007 Green Bay Packers season|GB]]
| 1 || 0 || — || 0 || 0 || — || 0 || — || 0 || 0 || 0 || — || — || — || 0 || 0 || — || 0 || 0 || 0 || 0 || 0 || 0
|-
! [[2009–10 NFL playoffs|2009]] !! [[2009 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 28 || 42 || 66.7 || 423 || style="background:#cfecec;"|'''10.1''' || 44 || 4 || 1 || style="background:#cfecec;"|'''9.5''' || 2.4 || '''121.4''' || 3 || 13 || 4.3 || 13 || 1 || 5 || 19 || 1 || 1
|-
! style="background:#f4c842;"|[[2010–11 NFL playoffs|2010]] !! style="background:#afe6ba;"|[[2010 Green Bay Packers season|GB]]
| 4 || 4 || '''4–0''' || style="background:#cfecec;"|'''90''' || style="background:#cfecec;"|'''132''' || 68.2 || style="background:#cfecec;"|'''1,094''' || 8.3 || 38 || style="background:#cfecec;"|'''9''' || 2 || 6.8 || 1.5 || style="background:#cfecec;"|109.8 || '''14''' || 54 || 3.9 || 25 || '''2''' || 8 || 53 || 2 || 1
|-
! [[2011–12 NFL playoffs|2011]] !! [[2011 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 26 || 46 || 56.5 || 264 || 5.7 || 21 || 2 || 1 || 4.3 || 2.2 || 78.5 || 7 || '''66''' || style="background:#cfecec;"|'''9.4''' || 16 || 0 || 4 || 23 || 1 || 1
|-
! [[2012–13 NFL playoffs|2012]] !! [[2012 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 49 || 72 || 68.1 || 531 || 7.4 || 44 || 3 || 1 || 4.2 || 1.4 || 97.6 || 5 || 40 || 8.0 || 17 || 0 || 4 || 33 || 1 || '''0'''
|-
! [[2013–14 NFL playoffs|2013]] !! [[2013 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 17 || 26 || 65.4 || 177 || 6.8 || 26 || 1 || '''0''' || 3.8 || style="background:#cfecec;"|'''0.0''' || 97.8 || 2 || 11 || 5.5 || 9 || 0 || 4 || 20 || 1 || '''0'''
|-
! [[2014–15 NFL playoffs|2014]] !! [[2014 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 43 || 69 || 62.3 || 494 || 7.2 || 46 || 4 || 2 || 5.8 || 2.9 || 91.1 || 4 || 8 || 2.0 || 12 || 0 || 3 || 26 || 2 || 1
|-
! [[2015–16 NFL playoffs|2015]] !! [[2015 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 45 || 80 || 56.3 || 471 || 5.9 || 60 || style="background:#cfecec;"|4 || 1 || 5.0 || 1.3 || 84.9 || 3 || 20 || 6.7 || 19 || 0 || '''2''' || '''15''' || '''0''' || '''0'''
|-
! [[2016–17 NFL playoffs|2016]] !! [[2016 Green Bay Packers season|GB]]
| 3 || 3 || 2–1 || 80 || 128 || 62.5 || 1,004 || 7.8 || 42 || style="background:#cfecec;"|'''9''' || 2 || 7.0 || 1.6 || 103.8 || 8 || 62 || 7.8 || '''28''' || 0 || style="background:#cfecec;"|10 || style="background:#cfecec;"|79 || '''0''' || '''0'''
|-
! [[2019–20 NFL playoffs|2019]] !! [[2019 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 47 || 66 || '''71.2''' || 569 || 8.6 || style="background:#cfecec;"|65 || 4 || 2 || 6.1 || 3.0 || 104.9 || 6 || 14 || 2.3 || 14 || 0 || 5 || 38 || 3 || 1
|-
! [[2020–21 NFL playoffs|2020]] !! [[2020 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 56 || 84 || 66.7 || 642 || 7.6 || 58 || 5 || 1 || 6.0 || 1.2 || style="background:#cfecec;"|104.4 || 4 || −3 || −0.8 || 1 || 1 || 5 || 32 || '''0''' || '''0'''
|-
! [[2021–22 NFL playoffs|2021]] !! [[2021 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 20 || 29 || 69.0 || 225 || 7.8 || style="background:#cfecec;"|'''75''' || 0 || '''0''' || 0.0 || style="background:#cfecec;"|'''0.0''' || 91.9 || 0 || 0 || — || 0 || 0 || 5 || 29 || 1 || '''0'''
|-
! [[2025–26 NFL playoffs|2025]] !! [[2025 Pittsburgh Steelers season|PIT]]
| 1 || 1 || 0–1 || 17 || 33 || 51.5 || 146 || 4.4 || 25 || 0 || 1 || 0.0 || 3.0 || 50.8 || 0 || 0 || — || 0 || 0 || 4 || 36 || 2 || 1
|-
! colspan="2"| Career<ref>{{cite web | url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/post/ | title=Aaron Rodgers Career Game Log | website=[[Pro-Football-Reference.com]] }}</ref> !! 23 !! 22 !! 11–11 !! 518 !! 807 !! 64.2 !! 6,040 !! 7.5 !! 75 !! 45 !! 14 !! 5.6 !! 1.7 !! 98.1 !! 56 !! 285 !! 5.1 !! 28 !! 4 !! 59 !! 403 !! 14 !! 6
|}
===College===
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|College statistics}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="8"| Passing
! colspan="4"| Rushing
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starter}} !! {{abbr|Cmp|Pass completions}} !! {{abbr|Att|Pass attempts}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Avg|Average yards per pass attempts}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions}} !! {{abbr|Rate|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Avg|Average yards per rush}} !! {{abbr|TD|Rushing touchdowns}}
|-
! 2002 !! [[Butte College|Butte]]
| 11 || 11 || '''10–1''' || 164 || 265 || 61.9 || 2,408 || 9.1 || 28 || 4 || 170.1 || 101 || 294 || 2.9 || 7
|-
! [[2003 NCAA Division I-A football season|2003]] !! [[2003 California Golden Bears football team|California]]
| 13 || 10 || 7–3 || '''215'''|| '''349'''|| 61.6 || '''2,903'''|| '''8.3'''|| 19 || 5 || 146.6 || '''86'''|| '''210'''|| '''2.4'''|| '''5'''
|-
! [[2004 NCAA Division I-A football season|2004]] !! [[2004 California Golden Bears football team|California]]
| 12 || 12 || 10–2 || 209 || 316 || '''66.1'''|| 2,566 || 8.1 || '''24'''|| '''8'''|| '''154.4'''|| 74 || 126 || 1.7 || 3
|-
! colspan="2"| FBS career<ref>{{cite web | url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1.html | title=Aaron Rodgers College Stats, School, Draft, Gamelog, Splits }}</ref> !! 25 !! 22 !! 17–5 !! 424 !! 665 !! 63.8 !! 5,469 !! 8.2 !! 43 || 13 !! 150.3 !! 160 !! 336 !! 2.1 !! 8
|}
== Touchdown celebration ==
Since becoming an NFL starter insyd 2008, Rodgers cam be known for ein unique touchdown celebration, wich he den ein teammates dub de "Championship Belt." After a scoring play, Rodgers dey celebrate by making a motion as if he dey put an invisible championship belt on around ein waist.<ref>{{Cite web |last=Sayler |first=Ryan |date=January 10, 2011 |title=The Evolution of Aaron Rodgers' Weird "Belt Dance" |url=http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120416003749/http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |archive-date=April 16, 2012 |access-date=May 10, 2012 |website=Real Fantasy}}</ref><ref>{{Cite web |date=January 16, 2011 |title=Aaron Rodgers | Championship Belt Celebration |url=http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |url-status=live |archive-url=https://web.archive.org/web/20120322064628/http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |archive-date=March 22, 2012 |access-date=May 10, 2012 |website=SportsGrid}}</ref> Teammate Greg Jennings say of de celebration: "''It's just something fun that he does. We get excited when we see it cause we know that he's made a play or we've made a play as offense."''<ref name="youtube1">{{Cite web |date=January 25, 2011 |title=Aaron Rodgers Championship Belt Special on ESPN |url=https://www.youtube.com/watch?v=mcwa2EvQ61Y |url-status=live |archive-url=https://web.archive.org/web/20111225110056/http://www.youtube.com/watch?v=mcwa2EvQ61Y |archive-date=December 25, 2011 |access-date=May 10, 2012 |publisher=ESPN |via=YouTube}}</ref> De gesture draw de praise of WWE wrestler Triple H wey e cam be common for Green Bay fans to mimic during games.<ref>{{Cite web |last=Anderson |first=Kyle |date=February 7, 2011 |title=Aaron Rodgers Wins Super Bowl MVP, Celebrates With Championship Belt |url=http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |url-status=dead |archive-url=https://web.archive.org/web/20191206042749/http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |archive-date=December 6, 2019 |access-date=December 6, 2019 |publisher=MTV}}</ref> Na he sanso celebrate by doing de shoryuken, a jumping uppercut move from de ''Street Fighter'' series.<ref>{{Cite web |last=Kunnath |first=Avinash |date=February 17, 2011 |title=Aaron Rodgers Best Touchdown Celebration: Championship Belt, Super Mario Jump, Or Shoryuken? |url=https://bayarea.sbnation.com/california-golden-bears/2011/2/17/1998750/aaron-rodgers-best-touchdown-celebration-championship-belt-super-mario-jump-shoryuken |access-date=January 19, 2023 |website=SB Nation Bay Area |language=en}}</ref>
== Alternative medicine advocacy ==
Rodgers be vocal about ein use of alternative medicine,<ref>{{Cite web |last=Mole |first=Beth |date=February 23, 2022 |title=Aaron Rodgers' go-to cleanse could involve oily enemas, bloodletting, vomiting |url=https://arstechnica.com/science/2022/02/everything-you-didnt-need-to-know-about-aaron-rodgers-oily-enema-cleanse/ |access-date=August 8, 2022 |website=[[Ars Technica]] |language=en}}</ref><ref>{{Cite web |last=McLaughlin |first=Kelly |date=November 3, 2021 |title=Aaron Rodgers reportedly petitioned the NFL to have an alternative treatment count as being vaccinated against COVID-19 |url=https://sports.yahoo.com/aaron-rodgers-reportedly-petitioned-nfl-163711629.html |access-date=August 8, 2022 |website=[[Yahoo! Sports]] |language=en}}</ref> wey he be a proponent of de legalization of psychedelic drugs.<ref>{{cite magazine|last=Chavkin|first=Daniel|date=June 23, 2023|title=Aaron Rodgers Touts Legalization of Psychedelics at Conference|url=https://www.si.com/extra-mustard/2023/06/23/new-york-jets-aaron-rodgers-touts-psychedelics-legalization|access-date=June 23, 2023|magazine=[[Sports Illustrated]]|language=en}}</ref> He reveal insyd 2022 say na he previously make offseason trips to Peru, wer he consume ayahuasca.<ref>{{Cite web |last=Demovsky |first=Rob |date=August 8, 2022 |title=NFL says Green Bay Packers QB Aaron Rodgers' use of ayahuasca didn't violate drug policy |url=https://www.espn.com/nfl/story/_/id/34371733/nfl-says-green-bay-packers-qb-aaron-rodgers-use-ayahuasca-violate-drug-policy |access-date=August 8, 2022 |website=[[ESPN.com]] |language=en |agency=[[Associated Press]]}}</ref>
=== Views on COVID-19 ===
Rodgers be one of de most prominent American athletes to choose he no go get vaccinated against de [[COVID-19]] virus,<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref> wey na he be critical of de NFL dema health den safety protocols during de COVID-19 pandemic.<ref>{{Cite web |last=Wood |first=Ryan |date=November 5, 2021 |title=Packers quarterback Aaron Rodgers blasts 'woke mob' over COVID-19 news on Pat McAfee show, rips NFL's 'draconian' protocols |url=https://www.jsonline.com/story/sports/nfl/packers/2021/11/05/packers-quarterback-aaron-rodgers-talks-covid-19-sounds-off-nfl-protocols/6280790001/ |access-date=January 5, 2024 |website=[[Milwaukee Journal Sentinel]] |language=en}}</ref> Ein stances on de COVID-19 vaccine be criticized by scientists, health officials, den sam former players den commentators, secof concerns say na Rodgers dey spread vaccine misinformation wey he dey potentially risk de health of ein teammates.<ref>{{Cite web |last1=Belson |first1=Ken |last2=Anthes |first2=Emily |date=November 8, 2021 |title=Scientists Fight a New Source of Vaccine Misinformation: Aaron Rodgers |url=https://www.nytimes.com/2021/11/08/sports/football/aaron-rodgers-vaccine.html |access-date=January 5, 2024 |work=[[The New York Times]] |language=en}}</ref>
During de NFL season, Rodgers frequently appear on ''The Pat McAfee Show''.<ref>{{Cite magazine|last=Hladik|first=Matt|date=January 26, 2021|title=Aaron Rodgers Explains Why He Appears on the Pat McAfee Show|url=https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|url-status=live|archive-url=https://web.archive.org/web/20210924043905/https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|archive-date=September 24, 2021|access-date=December 1, 2021|magazine=The Spun by [[Sports Illustrated]]}}</ref> One such interview insyd 2021 make headlines after Rodgers make several false den misleading statements about COVID-19,<ref name="Rosenberg">{{Cite magazine|last=Rosenberg|first=Michael|date=November 5, 2021|title=The Problem Is Aaron Rodgers Thinks He Has All the Answers|url=https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|url-status=live|archive-url=https://web.archive.org/web/20211108000052/https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|archive-date=November 8, 2021|access-date=November 8, 2021|magazine=[[Sports Illustrated]]|language=en-us}}</ref><ref>{{Cite news|last=Kornfield|first=Meryl|date=November 5, 2021|title=Aaron Rodgers said he did the research on covid vaccines. Here's how he was wrong, according to experts|url=https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|url-status=live|archive-url=https://web.archive.org/web/20211109160437/https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|archive-date=November 9, 2021|access-date=November 15, 2021|newspaper=[[The Washington Post]]}}</ref> wey dey imply say na unvaccinated people no be de group most affected by de pandemic den dat [[ivermectin]] be beneficial for people plus COVID-19.<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |last=Schad |first=Tom |date=November 5, 2021 |title=Fact check: 6 of Aaron Rodgers' false and misleading claims about COVID-19 vaccine |url=https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |url-status=live |archive-url=https://web.archive.org/web/20211108002751/https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=[[USA Today]] |language=en-US}}</ref><ref>{{Cite web |last=Sutelan |first=Edward |date=November 14, 2021 |title=Fact-checking Aaron Rodgers' bizarre COVID beliefs and 'woke mob' claim made on Pat McAfee Show |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |url-status=live |archive-url=https://web.archive.org/web/20211108035450/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=Sporting News |language=en}}</ref><ref>{{Cite web |last=Reinwald |first=Caroline |date=November 6, 2021 |title=Aaron Rodgers vaccine fact check: Doctor responds to quarterback's concerns |url=https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |url-status=live |archive-url=https://web.archive.org/web/20211108035459/https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |archive-date=November 8, 2021 |access-date=November 8, 2021 |publisher=[[WISN-TV]] |language=en}}</ref> Dese den similar claims lead sam reporters to describe Rodgers as a conspiracy theorist.<ref name="Rosenberg" /><ref>{{Cite web |last=Jones |first=Ja'han |date=November 9, 2021 |title=Aaron Rodgers should keep Martin Luther King Jr. out of his foolish Covid claims |url=https://www.msnbc.com/the-reidout/reidout-blog/aaron-rodgers-martin-luther-king-jr-covid-vaccine-rcna4872 |access-date=November 13, 2021 |publisher=MSNBC |language=en}}</ref>
== Political den social commentary ==
Rodgers voice support give [[Robert F. Kennedy Jr.]] den ein presidential campaign of 2024.<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref> Kennedy reportedly include Rodgers on ein "short list" of possible vice presidential running mates, along plus odas, wey dey include [[Jesse Ventura]] den [[Nicole Shanahan]].<ref name=":0">{{Cite news|last=O’Brien|first=Rebecca Davis|date=March 12, 2024|title=Aaron Rodgers and Jesse Ventura Top R.F.K. Jr.'s List for Running Mate|url=https://www.nytimes.com/2024/03/12/us/politics/rfk-jr-aaron-rodgers-jesse-ventura.html|access-date=March 13, 2024|work=The New York Times|language=en-US|issn=0362-4331}}</ref><ref name="OBrienMar172024">{{Cite news|last=O'Brien|first=Rebecca Davis|date=March 17, 2024|title=Nicole Shanahan Emerges as a Top Candidate to Be R.F.K. Jr.'s Running Mate|url=https://www.nytimes.com/2024/03/17/us/politics/nicole-shanahan-rfk-jr-running-mate.html|access-date=May 30, 2024|work=[[The New York Times]]}}</ref>
On [[Adam Breneman]] ein podcast insyd 2022, former Packers backup quarterback [[DeShone Kizer]] talk say Rodgers express interest insyd 9/11 conspiracy theories at one of de first meetings between de two quarterbacks. Kizer describe dema discussion of conspiracy theories as "a real thought experiment".<ref name="nypost-2022-11-29">{{cite news|last1=Hendricks|first1=Jaclyn|date=November 29, 2022|title=DeShone Kizer: Aaron Rodgers pressed me on 9/11 conspiracies|url=https://nypost.com/2022/11/29/deshone-kizer-aaron-rodgers-pressed-me-on-9-11-conspiracies/|access-date=January 8, 2023|work=[[The New York Post]]}}</ref><ref name="si-2022-11-29">{{cite magazine|last1=Salvador|first1=Joseph|date=November 29, 2022|title=Former Packers QB Says Aaron Rodgers Once Asked Him Whether He Believes in 9/11|url=https://www.si.com/nfl/2022/11/29/packers-deshone-kizer-aaron-rodgers-once-asked-him-if-he-believes-in-9-11-conspiracy-theories|access-date=January 8, 2022|magazine=[[Sports Illustrated]]|language=en-us}}</ref> Rodgers sanso promote de Tartarian architecture conspiracy theory.<ref name="tart">{{Cite web |last=Silverman |first=Robert |date=March 8, 2024 |title=Aaron Rodgers Dabbles in the 'QAnon of Architecture' |url=https://www.yahoo.com/entertainment/aaron-rodgers-dabbles-qanon-architecture-234934271.html |access-date=January 15, 2025 |website=Yahoo! Entertainment}}</ref>
Insyd a January 2024 appearance on ''The Pat McAfee Show'', Rodgers, widout evidence, imply say na comedian [[Jimmy Kimmel]] be an acquaintance of disgraced financier den sex offender [[Jeffrey Epstein]], den dat Kimmel ein name go possibly appear in soon to be released court documents listing Epstein ein associates.<ref>{{Cite web |last=Simonetti |first=Isabella |date=January 9, 2024 |title=ESPN's Pat McAfee Said He Doesn't 'Take Back Anything' After Skewering Colleague |url=https://www.wsj.com/business/media/pat-mcafee-show-espn-aaron-rodgers-ede1d63b |access-date=January 9, 2024 |website=WSJ |language=en-US}}</ref> Kimmel deny de allegations den threatened to sue Rodgers for defamation if he repeat de claim.<ref>{{Cite web |last=Kimmel |first=Jimmy |author-link=Jimmy Kimmel |date=January 2, 2024 |title=X Post |url=https://twitter.com/jimmykimmel/status/1742324477323833546 |access-date=January 9, 2024 |website=X}}</ref> Insyd a follow-up appearance on McAfee ein show de following week, Rodgers state say: "''I'm glad that Jimmy is not on the list. I really am. I don't think he's the P-word [pedophile]."''<ref>{{Cite web |last=France |first=Lisa |date=January 9, 2024 |title=Aaron Rodgers blames media in response to Jimmy Kimmel's comments about him |url=https://www.cnn.com/2024/01/09/entertainment/jimmy-kimmel-aaron-rodgers-monologue/index.html |access-date=January 9, 2024 |website=CNN |language=en}}</ref>
During a February 2024 appearance on de conspiracy-focused ''Look Into It'' podcast wey [[Eddie Bravo]] host, Rodgers espouse numerous conspiracy theories on medicine, immigration, den John F. Kennedy.<ref>{{Cite web |last=Keeley |first=Sean |date=March 14, 2024 |title=Here's all the dumb shit Aaron Rodgers recently said on a conspiracy theory podcast |url=https://awfulannouncing.com/nfl/aaron-rodgers-conspiracy-theory-podcast-tartaria-immigrants-trump-biden.html |access-date=April 17, 2024 |website=Awful Announcing |language=en}}</ref> Na ein claims include say na dem create [[HIV/AIDS|AIDS]] den COVID by de government for de sake of pharmaceutical industry profits (sanso spy discredited HIV/AIDS origins theories den Operation Denver).<ref>{{Cite web |last=Buzinski |first=Jim |date=April 17, 2024 |title=Aaron Rodgers says AIDS was created by the U.S. government in the 1980s |url=https://www.outsports.com/2024/4/17/24091797/aaron-rodgers-says-aids-was-created-by-the-u-s-government-in-the-1980s/ |access-date=April 17, 2024 |website=outsports.com |language=en}}</ref>
Insyd 2024, CNN reporter [[Pamela Brown (journalist)|Pamela Brown]] report say na Rodgers insyd 2013 share false conspiracy theories about de Sandy Hook massacre, wey dey claim say na de attack be an "inside job" perpetrated by de government. Na CNN simultaneously report an allegation by an anonymous source say na Rodgers for several years prior say "''Sandy Hook never happened....All those children never existed. They were all actors.''"<ref name="SandyHook1">{{Cite web |last1=Brown |first1=Pamela |last2=Tapper |first2=Jake |date=March 14, 2024 |title=RFK Jr.'s VP prospect Aaron Rodgers has shared false Sandy Hook conspiracy theories in private conversations |url=https://www.cnn.com/2024/03/13/politics/aaron-rodgers-sandy-hook-conspiracy-theories/index.html |access-date=March 17, 2024 |website=CNN.com |language=en}}</ref> In response, Rodgers say, "''I am not and have never been of the opinion that the events did not take place" but did not say whether he had ever believed the Sandy Hook massacre was an "inside job.''"<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref>
== Personal life ==
=== Family den relationships ===
Rodgers get two bros; de younger, [[Jordan Rodgers|Jordan]], play quarterback at Vanderbilt University wey he get a brief NFL career plus de Jacksonville Jaguars den Tampa Bay Buccaneers.<ref>{{Cite web |title=Jordan Rodgers Vanderbilt Bio |url=http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-url=https://web.archive.org/web/20111126203900/http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-date=November 26, 2011 |access-date=June 19, 2017 |website=VUCommodores.com}}</ref><ref>{{Cite web |last=Imig |first=Paul |date=April 27, 2013 |title=Rodgers' younger brother Jordan signs with Jacksonville |url=http://www.foxsportswisconsin.com/fox-sports-networks/story/Rodgers-brother-Jordan-signs-with-Jackso?blockID=896957 |url-status=live |archive-url=https://web.archive.org/web/20220310191855/https://www.foxsports.com/wisconsin/story/rodgers-younger-brother-jordan-signs-with-jacksonville-042713 |archive-date=March 10, 2022 |access-date=June 19, 2017 |work=Fox Sports}}</ref><ref>{{Cite web |last=Eisenband |first=Jeff |date=October 8, 2018 |title=Jordan Rodgers Remembers His 'Good Little' Football Career |url=http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |url-status=dead |archive-url=https://web.archive.org/web/20190308081753/http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |archive-date=March 8, 2019 |access-date=March 7, 2019 |website=ThePostGame.com}}</ref> Although na dem raise Rodgers den ein bros Christian, insyd an interview insyd 2017 he state say he no longer affiliate einself plus any organized religion.<ref>{{Cite web |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=Aaron Rodgers, unmasked |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |url-status=live |archive-url=https://web.archive.org/web/20211114183324/http://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |archive-date=November 14, 2021 |access-date=March 7, 2019 |website=[[ESPN.com]]}}</ref>
Rodgers be de godfather to Cade Cobb, de second son of ein long-time NFL teammate, [[Randall Cobb (American football)|Randall Cobb]].<ref>{{cite web |last=Demovsky |first=Rob |date=October 28, 2021 |title=The 'beautiful, chaotic mess' that brought Randall Cobb's family back to Green Bay |url=https://www.espn.com/blog/green-bay-packers/post/_/id/51394/the-beautiful-chaotic-mess-that-brought-randall-cobbs-family-back-to-green-bay |accessdate=September 1, 2023 |work=[[ESPN.com]]}}</ref>
Na Rodgers dey insyd a relationship plus actress [[Olivia Munn]] from 2014 to 2017 den plus former professional racing driver [[Danica Patrick]] from 2018 to 2020.<ref name="peoplemag">{{Cite web |last=Mizoguchi |first=Karen |date=April 7, 2017 |title=Olivia Munn and Aaron Rodgers Break Up |url=http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |url-status=live |archive-url=https://web.archive.org/web/20170408081606/http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |archive-date=April 8, 2017 |access-date=April 7, 2017 |website=[[People (magazine)|People]]}}</ref><ref name="AP">{{Cite web |date=January 15, 2018 |title=Danica Patrick finds love away from track with Aaron Rodgers |url=https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |url-status=live |archive-url=https://web.archive.org/web/20180219090141/https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |archive-date=February 19, 2018 |access-date=February 18, 2018 |work=[[Associated Press News]]}}</ref><ref>{{Cite web |date=July 16, 2020 |title=Danica, Rodgers call off two-year relationship |url=https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |url-status=live |archive-url=https://web.archive.org/web/20210203195658/https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |archive-date=February 3, 2021 |access-date=February 7, 2021 |website=[[ESPN.com]]}}</ref> He start dey date actress [[Shailene Woodley]] insyd de second half of 2020.<ref>{{Cite web |last=Weinberg |first=Lindsay |date=February 2, 2021 |title=Inside Shailene Woodley and Aaron Rodgers' "Private and Low Key" Romance |url=https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |url-status=live |archive-url=https://web.archive.org/web/20210207071957/https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |archive-date=February 7, 2021 |access-date=February 7, 2021 |website=[[E!]]}}</ref> Insyd an appearance on ''The Tonight Show Starring Jimmy Fallon'' insyd 2021, Woodley confirm say na she be engaged to Rodgers.<ref>{{Cite web |last=Kubota |first=Samantha |date=February 22, 2021 |title=Shailene Woodley engaged to Aaron Rodgers, says she's 'still learning' about football |url=https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |url-status=live |archive-url=https://web.archive.org/web/20210223055422/https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |archive-date=February 23, 2021 |access-date=February 23, 2021 |website=[[Today.com]]}}</ref> On February 16, 2022, na Rodgers den Woodley call off dema engagement.<ref>{{Cite web |last=Wang |first=Jessica |date=February 16, 2022 |title=Shailene Woodley and Aaron Rodgers split, call off engagement |url=https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |url-status=live |archive-url=https://web.archive.org/web/20220409131033/https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |archive-date=April 9, 2022 |access-date=February 16, 2022 |website=[[Yahoo!]] |language=en-US}}</ref>
Insyd December 2024, na Rodgers state say na he dey date a woman dem name Brittani. Insyd June 2025, Rodgers state say dem marry a few months prior.<ref>{{Cite web |last=Comiter |first=Jordana |date=June 10, 2025 |title=Who Is Aaron Rodgers' Wife, Brittani? All About Her Private Relationship with the NFL Quarterback |url=https://people.com/who-is-brittani-aaron-rodgers-11718036 |access-date=June 22, 2025 |website=People.com |language=en}}</ref><ref>{{cite web |last=Hooks |first=Kalan |date=June 10, 2025 |title=Aaron Rodgers announces marriage at Steelers minicamp |url=https://www.espn.com/nfl/story/_/id/45481936/aaron-rodgers-pittsburgh-steelers-announces-marriage |access-date=June 10, 2025 |website=[[ESPN]]}}</ref>
=== Honorary memberships den business ventures ===
Na dem initiate Rodgers as an honorary member of Tau Kappa Epsilon (TKE) on January 5, 2012, at de Sigma-Xi Chapter at St. Norbert College.<ref>{{Cite web |last=Zegers |first=Dan |date=January 6, 2012 |title=MEET FRATERS AARON RODGERS & GRAHAM HARRELL |url=https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |url-status=live |archive-url=https://web.archive.org/web/20221229085550/https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |archive-date=December 29, 2022 |access-date=December 29, 2022 |publisher=Tau Kappa Epsilon}}</ref>
Insyd April 2018, na dem annouce Rodgers as a limited partner insyd de Milwaukee Bucks ownership group, wey dey make am de first active NFL player plus an ownership stake insyd an NBA franchise.<ref>{{Cite web |last=Demovsky |first=Rob |date=April 20, 2018 |title=Aaron Rodgers buys minority stake in Bucks: 'A dream come true' |url=https://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |url-status=live |archive-url=https://web.archive.org/web/20180422052450/http://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |archive-date=April 22, 2018 |access-date=April 22, 2018 |website=[[ESPN.com]]}}</ref> De team later win de NBA Finals insyd 2021.<ref>{{Cite news|last=Deb|first=Sopan|date=July 21, 2021|title=The Milwaukee Bucks Win the N.B.A. Championship|url=https://www.nytimes.com/2021/07/20/sports/basketball/milwaukee-bucks-nba-finals-championship.html|access-date=February 12, 2026|work=The New York Times|language=en-US|issn=0362-4331}}</ref>
== Media appearances ==
Na Rodgers be a longtime spokesperson for State Farm Insurance wey na he frequently feature insyd dema commercials. Insyd de commercials, Rodgers often dey highlight ein "Championship Belt" touchdown celebration, wich State Farm rename as de "Discount Double Check".<ref>{{Cite web |title=State Farm® State of Imitation (Aaron Rodgers) |url=https://www.youtube.com/watch?v=j9Rv7czl9cU |url-status=live |archive-url=https://web.archive.org/web/20121017234148/http://www.youtube.com/watch?v=j9Rv7czl9cU |archive-date=October 17, 2012 |access-date=May 10, 2012 |publisher=State Farm |via=YouTube}}</ref> Rodgers sanso be featured insyd Pizza Hut advertisements,<ref>{{Cite web |last=Rovell |first=Darren |author-link=Darren Rovell |date=September 4, 2012 |title=Pizza Hut uses Aaron Rodgers in new ads |url=https://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |url-status=live |archive-url=https://web.archive.org/web/20161229100812/http://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=[[ESPN.com]]}}</ref> as well as numerous local Wisconsin-based advertisements.<ref name="milcomm">{{Cite web |last=Kirchen |first=Rich |date=August 20, 2015 |title=Aaron Rodgers' commercial work in Wisconsin appears to be dwindling |url=http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |url-status=live |archive-url=https://web.archive.org/web/20151008232237/http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |archive-date=October 8, 2015 |access-date=December 29, 2016 |website=Milwaukee Business Journal}}</ref>
Insyd May 2015, Rodgers appear as a contestant on ''Celebrity Jeopardy!''; he defeat ''Shark Tank'' investor [[Kevin O'Leary]] den astronaut den future United States Senator [[Mark Kelly]], winning $50,000 for ein charity. Insyd April 2021, Rodgers get a two-week stint as guest host on ''Jeopardy!'' from April 5–16.<ref>{{Cite web |last=Demovsky |first=Rob |date=January 12, 2021 |title=Green Bay Packers QB Aaron Rodgers says he'll be a 'Jeopardy!' guest host |url=https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |url-status=live |archive-url=https://web.archive.org/web/20210116152354/https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |archive-date=January 16, 2021 |access-date=January 16, 2021 |publisher=[[ESPN]]}}</ref><ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers sanso make numerous cameo appearances on television, wey dey include insyd a 2013 episode of ''The Office'', a 2019 episode of ''Game of Thrones'', den a 2015 episode of de sketch comedy television series ''Key & Peele''.<ref>{{Cite web |last=Zaldivar |first=Gabe |date=May 10, 2013 |title=Aaron Rodgers Judges Andy Bernard Breakdown on 'The Office' |url=https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |url-status=live |archive-url=https://web.archive.org/web/20210720173445/https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |archive-date=July 20, 2021 |access-date=July 20, 2021 |website=Bleacher Report}}</ref><ref>{{Cite web |date=May 13, 2019 |title=Video NFL star makes surprise cameo on 'Game of Thrones' |url=https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |url-status=live |archive-url=https://web.archive.org/web/20211018165222/https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |archive-date=October 18, 2021 |access-date=October 18, 2021 |website=ABC News |language=en}}</ref><ref>{{Cite web |last=Dubin |first=Jared |date=January 28, 2015 |title=WATCH: Key & Peele, Aaron Rodgers spoof player introductions |url=https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |url-status=live |archive-url=https://web.archive.org/web/20180831104426/https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |archive-date=August 31, 2018 |access-date=August 30, 2018 |website=CBS Sports}}</ref> He sanso tape a cameo as ''Jeopardy!'' host for an episode of ''The Conners''.<ref>{{Cite web |last=Cwik |first=Chris |date=May 8, 2021 |title=Aaron Rodgers guest starring as 'Jeopardy!' host on 'The Conners,' prompting speculation about future |url=https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |url-status=live |archive-url=https://web.archive.org/web/20210508190417/https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |archive-date=May 8, 2021 |access-date=May 8, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd 2021, Rodgers take part insyd ''The Match IV'', wich be de fourth installment insyd de exhibition match play golf series. Na he be paired plus professional golfer [[Bryson DeChambeau]]. De team go up against [[Phil Mickelson]] den Tom Brady.<ref>{{Cite web |last=Wells |first=Adam |date=May 26, 2021 |title=Mickelson, Tom Brady vs. DeChambeau, Aaron Rodgers Set for Capital One's 'The Match' |url=https://bleacherreport.com/articles/10003839-mickelson-tom-brady-vs-dechambeau-aaron-rodgers-set-for-capital-ones-the-match |access-date=May 26, 2021 |website=BleacherReport |publisher=Turner Broadcasting System, Inc.}}</ref> DeChambeau den Rodgers win de match 3 den 2.<ref>{{Cite web |last=VanHaaren |first=Tom |date=July 6, 2021 |title=Bryson DeChambeau, Aaron Rodgers beat Phil Mickelson, Tom Brady in 'The Match' |url=https://www.espn.co.uk/golf/story/_/id/31773982/bryson-dechambeau-aaron-rodgers-beat-phil-mickelson-tom-brady-match |access-date=May 26, 2022 |website=[[ESPN.com]]}}</ref> Rodgers sanso take part insyd de sixth edition of ''The Match'', wer na he team up plus Brady against fellow quarterbacks [[Josh Allen]] den [[Patrick Mahomes]].<ref>{{Cite web |date=April 18, 2022 |title=Tom Brady and Aaron Rodgers to Play Patrick Mahomes and Josh Allen in 'The Match' on June 1 |url=https://www.si.com/golf/news/tom-brady-aaron-rodgers-to-play-patrick-mahomes-josh-allen-in-the-match-june-1 |access-date=May 26, 2022 |website=Morning Read |language=en}}</ref> Rodgers den Brady defeat Mahomes den Allen 1 up.<ref>{{Cite web |last=Hamel |first=Riley |date=June 1, 2022 |title=Aaron Rodgers buries a birdie at the last, teams with Tom Brady to take down Patrick Mahomes, Josh Allen in Capital One's: The Match VI |url=https://golfweek.usatoday.com/lists/tracker-shot-to-shot-updates-of-the-match-vi-at-wynn-las-vegas/ |access-date=June 28, 2022 |website=Golfweek |language=en-US}}</ref>
== Humanitarian den charitable efforts ==
Rodgers be de founder, den de co-creator, along plus David Gruber, of itsAaron,<ref>{{Cite web |last=Littman |first=Chris |date=December 4, 2014 |title=Aaron Rodgers' surprise visit makes school dean scream with joy |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |url-status=live |archive-url=https://web.archive.org/web/20191017184232/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |archive-date=October 17, 2019 |access-date=October 17, 2019 |website=Sporting News}}</ref> a charity plus a mission of "creating awareness for organizations den people wey dey change de world".<ref name="Rodgers Charity">{{Cite web |title=It's Aaron & Gruber Law |url=https://www.gruber-law.com/itsaaron/ |url-status=live |archive-url=https://web.archive.org/web/20250523173120/https://www.gruber-law.com/itsaaron/ |archive-date=May 23, 2025 |access-date=July 1, 2025 |website=Gruber Law |language=en}}</ref><ref>{{Cite web |date=September 4, 2013 |title=Gruber Law Brings Awareness Through 'Its Aaron' with Aaron Rodgers |url=https://www.gruber-law.com/itsaaron/ |archive-url=https://web.archive.org/web/20190414173233/https://www.gruber-law.com/itsaaron/ |archive-date=April 14, 2019 |access-date=March 7, 2019 |website=Gruber Law Offices}}</ref>
He sanso be a supporter of de MACC Fund,<ref name="Nickel">{{Cite web |last=Nickel |first=Lori |date=May 14, 2013 |title=Aaron Rodgers Shines at MACC Fund Event |url=https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |url-status=live |archive-url=https://web.archive.org/web/20250306103414/https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |archive-date=March 6, 2025 |access-date=February 2, 2014 |website=Milwaukee Journal Sentinel}}</ref><ref name="Demovsky">{{Cite web |last=Demovsky |first=Rob |date=December 31, 2013 |title=Aaron Rodgers address 'crazy rumors' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |url-status=live |archive-url=https://web.archive.org/web/20140204035709/http://espn.go.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |archive-date=February 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> Raise Hope for Congo,<ref name="Garber">{{Cite web |last=Garber |first=Greg |date=January 1, 2014 |title=Aaron Rodgers makes real difference:Packers quarterback uses his clout to bring awareness to Raise Hope For Congo |url=https://www.espn.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |url-status=live |archive-url=https://web.archive.org/web/20140104044126/http://espn.go.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |archive-date=January 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> den oda humanitarian den charitable efforts.<ref>{{Cite web |title=Aaron Rodgers: Charity Work & Causes |url=https://www.looktothestars.org/celebrity/aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20211115164124/https://www.looktothestars.org/celebrity/aaron-rodgers |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=Look to the Stars |language=en}}</ref><ref>{{Cite web |date=March 1, 2021 |title=Aaron Rodgers donates $1 million to aid 80 small businesses in hometown |url=https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |url-status=live |archive-url=https://web.archive.org/web/20211115164225/https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=NFL.com |language=en-US}}</ref>
Rodgers ein ''[[List of Jeopardy! tournaments and events|Celebrity Jeopardy!]]'' win earn $50,000 for de MACC Fund.<ref name="Kaduk2015">{{Cite web |last=Kaduk |first=Kevin |date=May 12, 2015 |title=Aaron Rodgers wins his episode of Celebrity Jeopardy |url=https://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |url-status=live |archive-url=https://web.archive.org/web/20150514165207/http://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=[[Yahoo! Sports]]}}</ref><ref>{{Cite web |last=Hanzus |first=Dan |date=May 12, 2015 |title=Aaron Rodgers comes up clutch on Celebrity Jeopardy |url=https://www.nfl.com/news/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy-0ap3000000492438 |url-status=live |archive-url=https://web.archive.org/web/20150514155518/http://www.nfl.com/news/story/0ap3000000492438/article/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=NFL.com}}</ref> During ein 2021 appearance as ''Jeopardy!'' guest host, de show make a charitable donation equal to de cumulative winnings of de contestants (wey dey include de runners-up) for those ten shows.<ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers be a supporter of ein alma mater, University of California, Berkeley. He donate funds to renovate de athletic facilities<ref>{{Cite web |last=Kercheval |first=Ben |date=June 11, 2019 |title=Aaron Rodgers gives Cal football 'seven-figure gift' for locker room renovations, scholarship |url=https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |url-status=live |archive-url=https://web.archive.org/web/20210709182238/https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=CBS Sports |language=en}}</ref> wey he sanso establish an endowed scholarship give transfer students at de school. Insyd 2021, dem honor am by de school for ein charitable work.<ref>{{Cite web |date=June 1, 2021 |title=2021's Best and Brightest Alumni, Faculty Honored at Berkeley Charter Gala |url=https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |url-status=live |archive-url=https://web.archive.org/web/20210709182728/https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=Cal Alumni Association}}</ref>
Insyd 2021, Rodgers donate $1 million to help small businesses insyd Chico den Butte County, California.<ref>{{Cite web |date=March 1, 2021 |title=Packers QB Aaron Rodgers donates $1 million to help his hometown's small businesses |url=https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |url-status=dead |archive-url=https://web.archive.org/web/20230119205343/https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |archive-date=January 19, 2023 |access-date=January 19, 2023 |website=Packers.com |language=en-US}}</ref>
Insyd 2024, Rodgers raise $3 million for charities plus a flag football tournament.<ref>{{Cite web |last=Williams |first=Randall |date=May 4, 2024 |title=Aaron Rodgers Is Bullish on Flag Football, Uses to Raise Millions for Charity |url=https://www.bloomberg.com/news/articles/2024-05-04/nfl-qb-aaron-rodgers-says-olympic-flag-football-might-be-next-chapter |access-date=May 30, 2024 |website=Bloomberg.com}}</ref>
== References ==
<references />
== External links ==
p7q8284zk6niexgnkqgnuwamp2n52g1
111299
111298
2026-08-29T23:06:55Z
DaSupremo
9
/* Career highlights */ Improve article
111299
wikitext
text/x-wiki
{{Databox}}
'''Aaron Charles Rodgers''' (born December 2, 1983) be an American professional football quarterback give de Pittsburgh Steelers of de National Football League (NFL). He play college football give de California Golden Bears, setting de school ein record for lowest single-season den career interception rates before he be selected by de Green Bay Packers insyd de first round of de 2005 NFL draft.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{cite web |date=April 23, 2005 |title=Aaron Rodgers Selected by Green Bay |url=https://calbears.com/sports/2005/4/23/207736054 |access-date=September 25, 2025 |website=California Golden Bears Athletics}}</ref> He be regarded as one of de greatest den most talented quarterbacks of all time.<ref name="GOAT2">*{{Cite web |date=August 30, 2018|title=Where will Rodgers finish among the greatest QBs of all time?|url=http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|url-status=live|archive-url=https://web.archive.org/web/20181114060238/http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|archive-date=November 14, 2018|access-date=November 13, 2018|publisher=National Football League|type=Television production}}<li>{{Cite web |last=Siegel|first=Alan|date=February 28, 2018|title=The top 25 NFL quarterbacks of all-time|url=https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|url-status=live|archive-url=https://web.archive.org/web/20200724211140/https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|archive-date=July 24, 2020|access-date=November 13, 2018|work=[[USA Today]]|quote=By the time he's done, Rodgers may be No. 1 on this list. At 35, the seven-time Pro Bowler and two-time NFL MVP, who led the Packers to victory in Super Bowl XLV, is still going strong. He holds the NFL record in single-season and career passer rating (122.5, 103.2) and is creeping up on the leaders in nearly every major passing category.}}</li><li>{{Cite web |last=Schein|first=Adam|date=January 18, 2021|title=NFL Divisional Round aftermath: Aaron Rodgers most talented QB ever? Chiefs in trouble?|url=https://www.nfl.com/news/nfl-divisional-round-aftermath-aaron-rodgers-most-talented-qb-ever-chiefs-in-tro|access-date=April 4, 2023|website=[[NFL.com]]}}</li>*{{Cite web |last=Miller|first=Dalton|date=May 27, 2021|title=Ranking the Top Quarterbacks in NFL History from Tom Brady to Warren Moon|url=https://www.profootballnetwork.com/ranking-top-quarterbacks-in-nfl-history/|access-date=April 5, 2023|work=Pro Football Network}}
*{{Cite web |last=Schwab|first=Frank|date=February 1, 2023|title=What is Tom Brady's place among the 5 greatest QBS in NFL history?|url=https://sports.yahoo.com/what-is-tom-bradys-place-among-the-5-greatest-qbs-in-nfl-history-161857912.html|access-date=April 4, 2023|work=[[Yahoo! Sports]]}}</ref>
After backing up [[Brett Favre]] for de first three years of ein NFL career, Rodgers cam be de Packers dema starting quarterback insyd 2008. Insyd de 2010 season, he lead dem to a victory insyd Super Bowl XLV, earning de Super Bowl MVP. Na dem name am Associated Press Athlete of de Year insyd 2011,<ref name="Male Athlete of the year">{{Cite news|date=December 21, 2011|title=Rodgers named Male Athlete of the Year|work=[[Fox Sports]]|agency=[[Associated Press]]|url=http://msn.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|url-status=dead|access-date=May 13, 2011|archive-url=https://web.archive.org/web/20190718082529/https://www.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|archive-date=July 18, 2019}}</ref> wey na dem vote am league MVP by de Associated Press for de 2011, 2014, 2020, den 2021 NFL seasons. Rodgers be de fifth player to win NFL MVP insyd consecutive seasons, joining [[Peyton Manning]], Favre, [[Joe Montana]] den [[Jim Brown]]. Rodgers lead de NFL six times insyd touchdown-to-interception ratio (2011, 2012, 2014, 2018, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Leaders – Passing Touchdown/Interception Ratio |url=https://www.footballdb.com/leaders/yearly-passing-tdintratio |url-status=live |archive-url=https://web.archive.org/web/20190407190912/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=April 7, 2019 |access-date=April 7, 2019 |website=FootballDB.com}}</ref> six times insyd lowest passing interception percentage (2009, 2014, 2018, 2019, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passing Interception Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-intpct |url-status=live |archive-url=https://web.archive.org/web/20200724202503/https://www.footballdb.com/leaders/yearly-passing-intpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> four times insyd passer rating (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passer Rating Leaders |url=https://www.footballdb.com/leaders/yearly-passing-rating |url-status=live |archive-url=https://web.archive.org/web/20200724211550/https://www.footballdb.com/leaders/yearly-passing-rating |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den four times insyd touchdown passing percentage (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Touchdown Pass Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-tdpct |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.footballdb.com/leaders/yearly-passing-tdpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> three times insyd total touchdowns (2011, 2016, 2020); twice insyd touchdown passes (2016, 2020)<ref>{{Cite web |title=NFL Yearly Touchdown Passes Leaders |url=https://www.footballdb.com/leaders/yearly-passing-touchdowns |url-status=live |archive-url=https://web.archive.org/web/20200724202559/https://www.footballdb.com/leaders/yearly-passing-touchdowns |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den once insyd yards per attempt (2011) den completion percentage (2020).<ref>{{Cite web |title=NFL Yearly Passing Yards per Attempt Leaders |url=https://www.footballdb.com/leaders/yearly-passing-ydsattempt |url-status=live |archive-url=https://web.archive.org/web/20200724202800/https://www.footballdb.com/leaders/yearly-passing-ydsattempt |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> Insyd 2023, na dem trade Rodgers to de New York Jets, wer he spend two seasons plus de team. Released by de Jets after de 2024 season, Rodgers sign plus de Steelers, whom he lead to a division title dat season.
Ranking first on de NFL ein all-time regular-season career passer rating list,<ref>{{Cite web |last=Brizuela |first=James |date=September 16, 2025 |title=Ravens' Lamar Jackson Has Surpassed Aaron Rodgers in Major NFL Career Stat |url=https://www.newsweek.com/sports/nfl/ravens-lamar-jackson-has-surpassed-aaron-rodgers-major-nfl-career-stat-2130770 |access-date=September 16, 2025 |website=[[Newsweek]]}}</ref> Rodgers be among de most efficient quarterbacks of all time. Apart from a regular-season career passer rating of over 100 (de first to ever have a career rating over 100), he sanso dey hold de best touchdown-to-interception ratio den de lowest passing interception percentage insyd NFL history while he sanso get de highest passer rating insyd NFL history thru out de entire 2010s decade. Insyd de postseason, he be second in both touchdown passes den touchdown-to-interception ratio, fourth insyd passing yards, den eighth insyd all-time passer rating. Insyd de regular season, he get de best touchdown-to-interception ratio insyd NFL history at 4.34,<ref name="Football DB">{{Cite web |title=NFL Career Leaders – Passing Touchdown/Interception Ratio |url=http://www.footballdb.com/leaders/career-passing-tdintratio |archive-url=https://web.archive.org/web/20200508102359/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=May 8, 2020 |access-date=November 3, 2014 |website=FootballDB.com}}</ref> he dey hold de league ein second lowest career interception percentage at 1.4 percent<ref name="a">{{Cite web |title=NFL Career Pass Interception % Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |url-status=live |archive-url=https://web.archive.org/web/20110815065956/http://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |archive-date=August 15, 2011 |access-date=September 24, 2015 |work=[[Pro Football Reference]]}}</ref> den de highest single-season passer rating record of 122.5.<ref>{{Cite web |last=Mayer |first=Larry |date=September 12, 2012 |title=Bears gearing up to battle Rodgers |url=http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |url-status=dead |archive-url=https://web.archive.org/web/20150925095614/http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |archive-date=September 25, 2015 |access-date=September 24, 2015 |publisher=[[Chicago Bears]]}}</ref> Rodgers sanso be a four-time winner of de Best NFL Player ESPY Award.
== Early life ==
Ba dem born Aaron Charles Rodgers on December 2, 1983, insyd Chico, California,<ref>{{Cite magazine|title=Aaron Rodgers – No. 12 – QB|url=http://sportsillustrated.cnn.com/football/nfl/players/7200|url-status=dead|archive-url=https://web.archive.org/web/20110719095151/http://sportsillustrated.cnn.com/football/nfl/players/7200/|archive-date=July 19, 2011|access-date=February 6, 2011|magazine=[[Sports Illustrated]]}}</ref> de son of Darla Leigh (née Pittman) den Edward Wesley Rodgers. Na ein poppie be a Texas-born chiropractor wey play football as an offensive lineman give de Chico State Wildcats from 1973 to 1976.<ref name="about1">{{Cite web |last=Powell |first=Kimberly |date=October 15, 2018 |title=Ancestry of Aaron Rodgers |url=https://www.thoughtco.com/family-tree-of-aaron-rodgers-1421929 |url-status=live |archive-url=https://web.archive.org/web/20111211212214/http://genealogy.about.com/od/famous_family_trees/ss/aaron-rodgers.htm |archive-date=December 11, 2011 |access-date=May 10, 2012 |website=ThoughtCo.com}}</ref><ref name="Jackel2005">{{Cite web |last=Jackel |first=Pete |date=October 6, 2005 |title=Focus on Football: Rodgers preparing for his moment |url=http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |url-status=live |archive-url=https://web.archive.org/web/20110127115346/http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |archive-date=January 27, 2011 |access-date=March 14, 2012 |website=RacineSportsZone.com |publisher=JournalTimes.com}}</ref> Rodgers be of English, Irish den German ancestry.<ref name="about1" /> De family move go Ukiah, California, wer he attend Oak Manor Elementary School.<ref name="FreeThrows">{{Cite news|date=January 3, 1993|title='Free throws' are his forte|url=https://newspaperarchive.com/ukiah-daily-journal/1993-01-03/|url-status=live|archive-url=https://web.archive.org/web/20211201192340/https://newspaperarchive.com/browse/us/ca/ukiah/ukiah-daily-journal/|archive-date=December 1, 2021|access-date=March 14, 2012|work=Ukiah Daily Journal|via=Newspaper Archive|page=1}}</ref> Edward Rodgers toss a football plus ein sons Luke, Aaron den [[Jordan Rodgers]], wey he flow dem make dem no told drink den no party insyd college anaa dem go limit demaselves insyd sports like he do. Aaron take dis advice to heart.<ref name="Jackel2005" /> At de age of ten, he be featured on de front page of de ''Ukiah Daily Journal'' for ein top performance at a local basketball free throw competition.<ref name="FreeThrows" />
Later, de family move go Beaverton, Oregon, wer Rodgers attend Vose Elementary School den Whitford Middle School, wey he play baseball insyd de Raleigh Hills Little League at shortstop, center field den pitcher.<ref name="Oregonian">{{Cite web |date=February 5, 2011 |title=Green Bay quarterback Aaron Rodgers has strong ties to Beaverton |url=http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |url-status=live |archive-url=https://web.archive.org/web/20110216014347/http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |archive-date=February 16, 2011 |access-date=February 5, 2011 |work=[[The Oregonian]]}}</ref>
De Rodgers family return to Chico insyd 1997, wey Aaron attend Pleasant Valley High School, starting for two years at quarterback den garnering 4,421 passing yards.<ref>{{Cite web |last=Davidson |first=Joe |date=September 5, 2019 |title=Green Bay Packers quarterback Aaron Rodgers donates 354 new helmets to California high schools |url=https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |url-status=live |archive-url=https://web.archive.org/web/20190925105424/https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |archive-date=September 25, 2019 |access-date=September 13, 2019 |work=[[Honolulu Star-Advertiser]]}}</ref> He set single-game records of six touchdowns den 440 all-purpose yards. Rodgers set a single-season school record plus 2,466 total yards insyd 2001.<ref>{{Cite web |last=Carlton |first=Jimmy |date=April 26, 2018 |title=Of brains, Butte and baseball: How a tiny teenager became #Packers MVP Aaron Rodgers |url=https://onmilwaukee.com/articles/packersaaronrodgersjourney |access-date=May 30, 2024 |website=OnMilwaukee}}</ref> He graduate from Pleasant Valley High School insyd spring 2002, after scoring 1310 insyd de SAT den plus an A− average.<ref>{{Cite web |title=#12 Aaron Rodgers |url=http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |url-status=live |archive-url=https://web.archive.org/web/20110716022313/http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |archive-date=July 16, 2011 |access-date=February 6, 2011 |website=Packer Report |publisher=Scout with FoxSports.com}}</ref><ref>{{Cite news|date=November 20, 2002|title=JC Quarterback Commits to Cal, Butte's Rodgers Could Join the Competition to Replace Boller Next Year|url=http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|url-status=live|archive-url=https://web.archive.org/web/20181113165752/http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|archive-date=November 13, 2018|access-date=May 11, 2012|work=Contra Costa Times|location=Walnut Creek, California|via=NewsBank|quote=[He] scored 1310 on the SAT, so Cal's academic reputation was important to him.}}</ref><ref>{{Cite news|last=Crouse|first=Karen|date=January 31, 2011|title=Packers' Rodgers Has Deep Roots in Chico|url=https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|url-status=live|archive-url=https://web.archive.org/web/20190426170034/https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|archive-date=April 26, 2019|access-date=December 5, 2019|work=[[The New York Times]]|page=D1|quote=Despite his athletic prowess, an A-minus average and an SAT score of 1310, Rodgers did not receive an NCAA Division I scholarship offer coming out of high school.}}</ref>
== College career ==
Despite ein impressive high school record, Rodgers attract little interest from Division I programs.<ref>{{Cite web |last=Kalland |first=Robby |date=September 3, 2015 |title=How Aaron Rodgers went from not being recruited to a star at Cal |url=https://www.cbssports.com/college-football/news/how-aaron-rodgers-went-from-not-being-recruited-to-a-star-at-cal/ |access-date=May 30, 2024 |website=CBSSports.com}}</ref> Insyd a 2011 interview plus ''E:60'', he attribute de relative lack of attention insyd de recruiting process to ein unimposing physical stature as a high school player at {{convert|5|ft|10|in|m|abbr=on}} den {{convert|165|lb|kg}}. Na Rodgers want to attend Florida State den play under head coach [[Bobby Bowden]], buh na dem reject am.<ref name="E60 Youtube">{{Cite web |date=October 27, 2011 |title=E:60 – Aaron Rodgers |url=https://www.youtube.com/watch?v=blrmdIfXPwI |url-status=live |archive-url=https://web.archive.org/web/20120302212553/https://www.youtube.com/watch?v=blrmdIfXPwI |archive-date=March 2, 2012 |access-date=May 13, 2012 |publisher=ESPN |via=YouTube}}</ref> Na he only be offered an opportunity to compete for a scholarship as a walk-on from University of Illinois.<ref>{{Cite news|last=McGrath|first=Jim|date=June 29, 2011|title=Green Bay QB Rodgers Visits All-Pro Campers at W&M|work=Williamsburg Yorktown Daily|url=http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|url-status=dead|access-date=August 22, 2013|archive-url=https://web.archive.org/web/20130921054645/http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|archive-date=September 21, 2013}}</ref> He decline de invitation, wey na he consider quitting football to play baseball instead anaa giving up entirely on de idea of playing insyd professional sports den attending law school after completing ein undergraduate degree.<ref name="Babb">{{Cite news|last=Babb|first=Kent|date=December 15, 2015|title=For Aaron Rodgers, road to the NFL started at an apparent dead end|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|url-status=live|access-date=November 30, 2018|archive-url=https://web.archive.org/web/20181130205037/https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|archive-date=November 30, 2018}}</ref>
He then be recruited to play football at Butte College insyd Oroville, a junior college about {{convert|15|mi|km}} southeast of Chico.<ref>{{Cite book |last=Sandler |first=Michael |url=https://archive.org/details/aaronrodgersgree0000sand |title=Aaron Rodgers and the Green Bay Packers: Super Bowl XLV |date=August 1, 2011 |publisher=Bearport Publishing |isbn=9781617723094 |url-access=registration}}</ref>
=== Butte ===
==== 2002 season ====
Rodgers throw 26 touchdowns insyd ein freshman season at Butte,<ref>{{Cite web |title=Aaron Rodgers |url=https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |url-status=live |archive-url=https://web.archive.org/web/20211028170413/https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |archive-date=October 28, 2021 |access-date=October 13, 2021 |website=California Community Colleges Chancellor's Office}}</ref><ref>{{Cite web |title=Stats & Records |url=http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-url=https://web.archive.org/web/20081202112615/http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-date=December 2, 2008 |access-date=November 18, 2011 |website=butte.edu |publisher=[[Butte College]]}}</ref> leading de school to a 10–1 record, de NorCal Conference championship,<ref>{{Cite web |date=November 8, 2008 |title=Title-tilt bound: Butte secures NorCal championship |url=https://www.chicoer.com/20081108/title-tilt-bound-butte-secures-norcal-championship/ |access-date=May 30, 2024 |work=Chico Enterprise-Record}}</ref> den a {{nowrap|No. 2}} national ranking. While der, na he be discovered by de California Golden Bears ein head coach [[Jeff Tedford]], wey na he dey recruite Butte tight end Garrett Cross.<ref>{{Cite web |last=McGrath |first=Dan |date=November 11, 2004 |title=Cal QB Rodgers has the pedigree |url=https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-url=https://web.archive.org/web/20191205183533/https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-date=December 5, 2019 |access-date=September 13, 2019 |work=Chicago Tribune}}</ref> Na Tedford be surprised to learn say Rodgers no be recruited earlier. Secof Rodgers ein good high school scholastic record, he be eligible to transfer to de University of California, Berkeley after one year of junior college instead of de typical two.<ref name="Cal">{{Cite news|last=Adams|first=Bruce|date=August 3, 2003|title=Cal's QB hope: JC transfer Rodgers has what Tedford likes|work=San Francisco Chronicle|url=https://www.sfchronicle.com/sports/article/Cal-s-QB-hope-JC-transfer-Rodgers-has-what-2598626.php|url-status=live|access-date=22 February 2026}}</ref>
=== California ===
==== 2003 season ====
As a junior college transfer, Rodgers get three years of eligibility at Cal. Na dem name am de starting quarterback insyd de fifth game of de 2003 season, beating de only team wey offer am a {{nowrap|Division I}} opportunity out of high school, Illinois.<ref>{{Cite web |date=October 14, 2014 |title=Aaron Rodgers: I wanted to join Illini; they passed |url=https://www.chicagotribune.com/2014/10/14/aaron-rodgers-i-wanted-to-join-illini-they-passed/ |access-date=May 30, 2024 |work=Chicago Tribune}}</ref> As a sophomore, he help lead de Golden Bears to a 7–3 record as a starter.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{Cite web |last=King |first=Randy |date=December 26, 2003 |title=Virginia Tech finishes on wrong foot with Insight Bowl loss to Cal |url=https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |url-status=live |archive-url=https://web.archive.org/web/20191208021513/https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |work=The Roanoke Times}}</ref>
Insyd ein second career start, Rodgers lead de team to a 21–7 halftime lead against #3 USC. Secof injury, na dem replace Rodgers insyd de second half by Reggie Robertson.<ref name="calfans" /><ref>{{Cite web |date=September 27, 2003 |title=Cal-USC Postgame Quotes |url=http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121444/http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |archive-date=June 9, 2012 |website=California Golden Bears |quote=After the interception for the touchdown, I went over to him and said 'Do you want to take a couple of series off?' and he said 'Yes.' We put Reggie (Robertson) in and Reggie did a nice job for us."}}</ref> De Bears win insyd triple overtime, 34–31.<ref name="calfans">{{Cite web |date=September 27, 2003 |title=Cal fans storm field after win |url=http://espn.go.com/ncf/recap?gameId=232700025 |url-status=dead |archive-url=https://web.archive.org/web/20161119182933/https://www.espn.com/college-football/recap?gameId=232700025 |archive-date=November 19, 2016 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |last=Faraudo |first=Jeff |date=September 29, 2009 |title=Cal's triple-overtime thriller against USC in 2003 produced multiple heroes |url=https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |url-status=live |archive-url=https://web.archive.org/web/20191208021406/https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=East Bay Times}}</ref> Rodgers pass for 394 yards wey na dem name am game MVP insyd de Insight Bowl against Virginia Tech.<ref>{{Cite web |title=Insight Bowl – Virginia Tech vs California Box Score, December 26, 2003 |url=https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |url-status=live |archive-url=https://web.archive.org/web/20180312084010/https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |work=[[Sports Reference]]}}</ref><ref>{{Cite book |last=Tsuchiya |first=Anita |url=https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |title=Aaron Rodgers: Biography of a Super Bowl MVP |date=July 30, 2012 |publisher=Hyperink Inc |isbn=9781614646129 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203201742/https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |archive-date=February 3, 2021 |url-status=live}}</ref>
Insyd 2003, Rodgers tie de school season record for 300-yard games plus five wey he set a school record for de lowest percentage of passes dem intercept at 1.43%.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref>
==== 2004 season ====
As a junior, Rodgers lead Cal to a 10–1 record den top-five ranking at de end of de regular season, plus dema only loss a 23–17 loss at {{nowrap|No. 1}} USC.<ref>{{Cite web |title=2004 California Golden Bears Schedule and Results |url=https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |url-status=live |archive-url=https://web.archive.org/web/20180312085053/https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref> Insyd dat game, Rodgers set a school record for consecutive passes dem plete plus 26 wey he tie an NCAA record plus 23 consecutive passes dem plete insyd one game.<ref>{{Cite web |last=Lee |first=Ted |date=October 10, 2004 |title=It was there for the taking |url=https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-url=https://web.archive.org/web/20191205183922/https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-date=December 5, 2019 |access-date=September 13, 2019 |website=BearTerritory.net}}</ref> Na he set a Cal single-game record for passing completion percentage of 85.3.<ref>{{Cite web |last=Lowry |first=Matthew |date=November 15, 2019 |title=Trojans Throwback: 2004 USC vs California |url=https://www.conquestchronicles.com/football/2019/11/15/20966700/trojans-throwback-2004-usc-vs-california |access-date=May 30, 2024 |work=Conquest Chronicles}}</ref><ref>{{Cite web |last=Wharton |first=David |date=October 10, 2004 |title=Rodgers Can't See It Through to Completion |url=https://www.latimes.com/archives/la-xpm-2004-oct-10-sp-uscside10-story.html |access-date=May 30, 2024 |work=Los Angeles Times}}</ref> Rodgers dey hold de Cal career record for lowest percentage of passes dem intercept at 1.95 percent.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref> Rodgers ein performance set up de Golden Bears at first den goal plus 1:47 remaining den a chance for de game-winning touchdown. On de first play of USC ein goal line stand, Rodgers throw an incomplete pass. Na dis be followed by a second-down sack by [[Manuel Wright]].<ref name="Cal Vs USC 2004" /> After a timeout den Rodgers ein incomplete pass on third down, USC stop Cal ein run play to win de game.<ref name="Cal Vs USC 2004" /> Rodgers comment say na e be "frustrating dat we no fi get de job done."<ref name="Cal Vs USC 2004">{{Cite web |date=October 9, 2004 |title=Trojans' defense stymies Cal QB at first-and-goal |url=http://scores.espn.go.com/ncf/recap?gameId=242830030 |url-status=dead |archive-url=https://web.archive.org/web/20170817065913/http://scores.espn.com/ncf/recap?gameId=242830030 |archive-date=August 17, 2017 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Overall, he fini de 2004 season plus 2,566 passing yards, 24 touchdowns, den eight interceptions. Ein 66.1% pass completion percentage lead de Pac-10.<ref>{{Cite web |title=Aaron Rodgers 2004 Game Log |url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |url-status=live |archive-url=https://web.archive.org/web/20180312084136/https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref><ref>{{Cite web |title=2004 Pacific-10 Conference Leaders |url=https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |url-status=live |archive-url=https://web.archive.org/web/20180328231847/https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Sports Reference]]}}</ref> He fini ninth insyd Heisman Trophy voting.<ref>{{Cite web |title=2004 Heisman Trophy Voting |url=https://www.sports-reference.com/cfb/awards/heisman-2004.html |access-date=December 2, 2022 |website=[[Sports Reference]] |language=en}}</ref>
After na dem pick Texas over Cal for a Rose Bowl berth, na dem award de fourth-ranked Bears a spot insyd de Holiday Bowl, wich dem loose to Texas Tech, 45–31.<ref>{{Cite web |date=December 15, 2017 |title=2004 Holiday Bowl: Cal caught in Texas Tech's Air Raid |url=https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208021644/https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> After de season, Rodgers decide to forgo ein senior season to enter de 2005 NFL draft.<ref>{{Cite web |date=January 6, 2005 |title=Who to watch in 2005 |url=http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |url-status=live |archive-url=https://web.archive.org/web/20190426144539/http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |archive-date=April 26, 2019 |access-date=February 15, 2012 |website=Chico News & Review}}</ref>
== Professional career ==
=== 2005 NFL draft ===
Na Rodgers be expected to be selected early insyd de 2005 NFL draft as he post impressive numbers as a junior plus Cal, throwing for 2,320 yards plus a 67.5 completion rate insyd de regular season. He throw for 24 touchdowns den only eight interceptions insyd ein last college season, impressing chaw NFL scouts. Na dem comment say na he be a "talented strong-armed junior"<ref name="Draft Insider">{{Cite web |title=NFL Draft – QB Aaron Rodgers |url=http://www.draftinsiders.com/node/1288 |url-status=dead |archive-url=https://web.archive.org/web/20120111054622/http://www.draftinsiders.com/node/1288 |archive-date=January 11, 2012 |access-date=December 9, 2011 |website=DraftInsiders.com}}</ref> wey dey "combine arm strength, mechanics den delivery to make all de throws", buh dem note say ein stats fi be inflated secof playing insyd a quarterback-friendly system den dat he go need to adjust to de more elaborate defensive schemes of de NFL.<ref name="Draft Insider" />
Before de draft, na Rodgers be confident say he go be drafted to de San Francisco 49ers, de team he support den grow up near,<ref name="Bensiger">{{Cite AV media |url=https://www.youtube.com/watch?v=8_a6O3vdlU0 |title=In Depth with Graham Bensinger: Aaron Rodgers: Thought I'd be a 49er |date=December 21, 2016 |last=Bensinger |first=Graham |type=Television production, YouTube video |access-date=December 26, 2016 |archive-url=https://ghostarchive.org/varchive/youtube/20211212/8_a6O3vdlU0 |archive-date=December 12, 2021 |url-status=live |orig-year=2010}}</ref> wey possess de No. 1 overall pick insyd de draft.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> De 49ers, however, draft quarterback [[Alex Smith]] out of Utah instead, wey Rodgers slid all de way down to de 24th overall pick by de Green Bay Packers. Na Rodgers say he experience much angst den restlessness wen waiting to be selected several hours into de draft, as na he expect einself to be selected much sooner.<ref name="Bensiger" /> Rodgers ein slip to de 24th selection den de Packers choosing to pick [[Brett Favre]] ein future replacement cam be one of de biggest stories of de draft, though na he still be de second quarterback dem select. Na ein drop insyd de draft later be ranked number one on de NFL Network ein Top 10 Draft Day Moments.<ref>{{Cite web |last=Currie |first=David |date=April 27, 2017 |title=NFL Draft: Top 10 Moments – Aaron Rodgers falling to Tim Tebow trade |url=https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |url-status=live |archive-url=https://web.archive.org/web/20200727131640/https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |archive-date=July 27, 2020 |access-date=September 13, 2019 |website=Sky Sports}}</ref> Chaw teams wey dey draft between de second den 23rd positions get positional needs more pressing dan quarterback.<ref name="ESPN Column">{{Cite web |last=Clayton |first=John |date=April 23, 2005 |title=Clayton: Waiting is the hardest part |url=https://www.espn.com/nfl/draft05/columns/story?columnist=clayton_john&id=2044646 |url-status=live |archive-url=https://web.archive.org/web/20160702194839/http://espn.go.com/nfl/draft05/columns/story?id=2044646&columnist=clayton_john |archive-date=July 2, 2016 |access-date=April 27, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |title=2005 NFL Draft Listing |url=https://www.pro-football-reference.com/years/2005/draft.htm |url-status=live |archive-url=https://web.archive.org/web/20170921001516/https://www.pro-football-reference.com/years/2005/draft.htm |archive-date=September 21, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers be one of six quarterbacks wey [[Jeff Tedford]] coach to be drafted insyd de first round of an NFL draft, joining [[Trent Dilfer]], [[Akili Smith]], [[David Carr (American football)|David Carr]], [[Joey Harrington]] den [[Kyle Boller]].<ref>{{Cite news|last=Greenberg|first=Steve|date=November 20, 2012|title=Jeff Tedford developed Aaron Rodgers, but recent QBs struggled|work=Sporting News|url=http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|url-status=live|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20161230042613/http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|archive-date=December 30, 2016}}</ref>
=== Green Bay Packers ===
==== Backup years: 2005–2007 ====
Insyd August 2005, Rodgers agree to a reported five-year, $7.7 million deal wey include $5.4 million in guaranteed money wey e get de potential to pay am as much as $24.5 million if na dem meet all incentives den escalators.<ref name="Sportrac Contract">{{Cite web |title=Aaron Rodgers Contract Breakdown |url=https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |url-status=live |archive-url=https://web.archive.org/web/20210506052810/https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |archive-date=May 6, 2021 |access-date=November 15, 2021 |website=Spotrac.com |language=en-US}}</ref>
Rodgers spend ein rookie season as de Packers dema backup quarterback behind Brett Favre.<ref>{{Cite web |title=2005 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2005.htm |url-status=live |archive-url=https://web.archive.org/web/20211107183417/https://www.pro-football-reference.com/teams/gnb/2005.htm |archive-date=November 7, 2021 |access-date=December 8, 2019 |website=[[Pro Football Reference]]}}</ref> Na de Packers be 4–12 at dis point wey he receive ein first extended look insyd de opening preseason game against de San Diego Chargers after replacing Favre.<ref name="Chargers Vs Packers 2005 Preseason">{{Cite web |date=August 11, 2005 |title=Favre completes nine of 10 passes for 91 yards, TD |url=http://scores.espn.go.com/nfl/recap?gameId=250811009 |archive-url=https://web.archive.org/web/20180127084112/https://www.espn.com/nfl/recap?gameId=250811009 |archive-date=January 27, 2018 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd ein first NFL game, Rodgers plete two out of seven passes wey na dem sack am twice. He continue to struggle thru de preseason, before ending de preseason by converting two third downs den throwing a touchdown pass to tight end [[Ben Steele]] against de Tennessee Titans.<ref name="GB Vs Tennesee">{{Cite web |date=September 1, 2005 |title=Green Bay 21, Tennessee 17 |url=http://scores.espn.go.com/nfl/recap?gameId=250901010 |url-status=dead |archive-url=https://web.archive.org/web/20131105175854/http://scores.espn.go.com/nfl/recap?gameId=250901010 |archive-date=November 5, 2013 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Once de regular season begin, Rodgers see very little action dat year. He play against de New Orleans Saints insyd de fourth quarter of a 52–3 victory, wey he plete ein first career pass to fullback [[Vonta Leach]] for 0 yards.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> On {{nowrap|December 19, 2005,}} Rodgers enter de game against de Baltimore Ravens at de end of de third quarter insyd a 48–3 loss.<ref name="Green Bay Bio" /> He plete eight of 15 passes for 65 yards den an interception.<ref name="Packers Vs. Ravens 2005">{{Cite web |date=December 20, 2005 |title=Boller outplays Favre in Ravens' rout of Packers |url=http://scores.espn.go.com/nfl/recap?gameId=251219033 |url-status=dead |archive-url=https://web.archive.org/web/20121023103816/http://scores.espn.go.com/nfl/recap?gameId=251219033 |archive-date=October 23, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref>
After de Packers dema losing season, na dem fire den replace head coach [[Mike Sherman]] by [[Mike McCarthy]].<ref name="Packers Fire Sherman">{{Cite news|date=January 2, 2006|title=Packers fire coach Mike Sherman|work=Yahoo! Sports|url=https://sports.yahoo.com/nfl/news?slug=packerssherman|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20140426105024/https://sports.yahoo.com/nfl/news?slug=packerssherman|archive-date=April 26, 2014}}</ref><ref name="Packers to hire 49ers">{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=January 12, 2006 |title=Packers to hire 49ers' McCarthy as coach |url=https://www.espn.com/nfl/news/story?id=2288985 |url-status=live |archive-url=https://web.archive.org/web/20121014050433/http://sports.espn.go.com/nfl/news/story?id=2288985 |archive-date=October 14, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]]}}</ref> Rodgers then be placed insyd McCarthy ein "Quarterback school" for six hours a day several times a week.<ref name="Journal Sentinel">{{Cite web |last=Silverstein |first=Tom |date=September 7, 2008 |title=The Education of Aaron Rodgers |url=http://www.jsonline.com/sports/packers/32579374.html |url-status=live |archive-url=https://web.archive.org/web/20101223123643/http://www.jsonline.com/sports/packers/32579374.html |archive-date=December 23, 2010 |access-date=May 11, 2012 |website=Milwaukee Journal Sentinel}}</ref> Dis focus on working on Rodgers ein motor skills such as hand-eye coordination, finger dexterity, den mechanics.<ref name="New York Times QB School">{{Cite news|last=Bishop|first=Greg|date=December 2, 2011|title=The Education of a Quarterback|work=The New York Times|url=https://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|url-status=live|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20120501123445/http://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|archive-date=May 1, 2012}}</ref> McCarthy sanso work on Rodgers ein release point, moving am from right beside de ear hole of ein helmet to further below am, to give am a smoother release.<ref name="Aaron Rodgers Leader of The Pack">{{Cite book |last=Reischel |first=Rob |title=Aaron Rodgers: Leader of the Pack: An Intimate Portrait of a Super Bowl MVP |date=March 1, 2011 |publisher=Triumph Books |isbn=978-1-60078-645-7 |language=English}}</ref> Wen de 2006 preseason begin, Rodgers play as de backup insyd all four games; he plete 22 out 38 passes for 323 yards den three touchdowns.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> Rodgers see very little action during de 2006 season, buh did step insyd briefly on {{nowrap|October 2}} against de Philadelphia Eagles wen Favre lef de game secof injury.<ref name="Green Bay Bio" /> On {{nowrap|November 19, 2006,}} Rodgers break ein left foot while playing against de New England Patriots insyd a 35–0 defeat at home, filling insyd for an injured Favre, wey Rodgers miss de remainder of de 2006 season.<ref name="Journal Sentinel" />
Following de team ein season-ending victory at Chicago, Favre announce say he go stay plus de Packers for de 2007 season, again postponing Rodgers ein hopes of becoming de Packers dema starting quarterback.<ref name="Favre">{{Cite web |last=Silverstein |first=Tom |date=January 7, 2007 |title=Favre leaves lasting impression |url=http://www.jsonline.com/news/milwaukee/29212859.html |url-status=dead |archive-url=https://web.archive.org/web/20120908152601/http://www.jsonline.com/news/milwaukee/29212859.html |archive-date=September 8, 2012 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref> Prior to de 2007 season, rumors surface about a potential trade involving Rodgers insyd wich he go be traded to de Oakland Raiders for wide receiver [[Randy Moss]].<ref>{{Cite web |date=March 18, 2007 |title=Packers GM insists QB Rodgers not on trading block |url=https://www.espn.com/nfl/news/story?id=2803272 |url-status=live |archive-url=https://web.archive.org/web/20121107040642/http://sports.espn.go.com/nfl/news/story?id=2803272 |archive-date=November 7, 2012 |access-date=December 30, 2010 |website=[[ESPN.com]]}}</ref> However, Moss be traded to de Patriots during de second day of de 2007 NFL draft, wey Rodgers stay insyd Green Bay.<ref>{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=April 29, 2007 |title=Pats acquire WR Moss from Raiders for draft pick |url=https://www.espn.com/nfl/draft07/news/story?id=2853116 |url-status=live |archive-url=https://web.archive.org/web/20171229132248/http://www.espn.com/nfl/draft07/news/story?id=2853116 |archive-date=December 29, 2017 |access-date=January 1, 2018 |website=[[ESPN.com]]}}</ref>
Rodgers step in wen na Favre injure insyd de second quarter against de Dallas Cowboys on ''Thursday Night Football'' on {{nowrap|November 29, 2007}}.<ref name="Cowboys Versus Packers 2007">{{Cite web |date=November 30, 2007 |title=Cowboys hold off Favre-less Packers to clinch playoff berth |url=http://scores.espn.go.com/nfl/recap?gameId=271129006 |url-status=dead |archive-url=https://web.archive.org/web/20121111035600/http://scores.espn.go.com/nfl/recap?gameId=271129006 |archive-date=November 11, 2012 |access-date=May 12, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers plete 18 passes for 201 yards, plus no interceptions.<ref name="Cowboys Versus Packers 2007" /> He sanso throw ein first touchdown pass buh na he be sacked three times.<ref name="Cowboys Versus Packers 2007" /> Rodgers bring de team back from a 17-point deficit to a 3-point deficit, buh de Cowboys go on to win 37–27.<ref name="Cowboys Versus Packers 2007" />
==== 2008: Transition to starter ====
[[File:AaronRodgers.jpg|left|thumb|Rodgers going down de tunnel at Lambeau Field insyd 2008]]
Favre ein retirement announcement on {{nowrap|March 4, 2008,}} open up de Packers dema starting quarterback position to Rodgers for de 2008 season. Although Favre decide to return from retirement, he be traded to de New York Jets, wich mean say Rodgers go cam be de starter.<ref>{{Cite web |last=Nickel |first=Lori |date=March 9, 2008 |title=Rodgers preparing to assume control |url=http://www.jsonline.com/story/index.aspx?id=726140 |url-status=dead |archive-url=https://web.archive.org/web/20081007044908/http://www.jsonline.com/story/index.aspx?id=726140 |archive-date=October 7, 2008 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref>
Rodgers quickly prove say na he be one of de best quarterbacks insyd de league by passing for 4,038 yards insyd ein first season as a starter as well as throwing for 28 touchdowns den only 13 interceptions. As of de 2025 season, dis still dey stand as de most interceptions he throw insyd a season.<ref>{{Cite web |title=Aaron Rodgers 2008 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |url-status=live |archive-url=https://web.archive.org/web/20180313183821/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Plus Rodgers making ein debut as a starter, de Packers beat de Minnesota Vikings 24–19 at Lambeau Field. Dis mark de first time since 1992 wey a quarterback oda dan Favre start a regular season game give de Packers. Rodgers end de game plus 178 yards passing den two touchdowns (one passing den one rushing).<ref name="Rodgers Debut">{{Cite web |last=Jenkins |first=Chris |date=September 10, 2008 |title=Solid debut frees Rodgers from post-Favre scrutiny |url=http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |url-status=live |archive-url=https://web.archive.org/web/20130921062040/http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |archive-date=September 21, 2013 |access-date=May 13, 2012 |website=USA Today |agency=Associated Press}}</ref> Insyd just ein second NFL start de following week, na dem vote Rodgers de FedEx Air award winner after passing for 328 yards den three touchdowns insyd a win against de Lions.<ref name="FedEx Air and Ground Winners Week 2 2008">{{Cite web |date=September 20, 2008 |title=FedEx Air and Ground Week 2 2008 Winners |url=http://www.nfl.com/videos?videoId=09000d5d80af20df |url-status=live |archive-url=https://web.archive.org/web/20090108060338/http://www.nfl.com/videos?videoId=09000d5d80af20df |archive-date=January 8, 2009 |access-date=September 20, 2008 |website=NFL Network |publisher=National Football League}}</ref>
During de fourth week of de season, Rodgers ein streak of 157 consecutive pass attempts widout an interception end wen na he be intercepted by [[Derrick Brooks]] of de Tampa Bay Buccaneers. Na de streak be de third-longest insyd franchise history behind [[Bart Starr]] (294) den Brett Favre (163).<ref name="Buccaneers">{{Cite web |date=September 29, 2008 |title=Buccaneers' defense rattles Rodgers in win over Packers |url=http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081001100738/http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |archive-date=October 1, 2008 |access-date=September 29, 2008 |publisher=National Football League}}</ref> Rodgers suffer a severe shoulder sprain insyd de game buh he continue to start den play well insyd a win against de Seattle Seahawks two weeks later.<ref name="Rodgers">{{Cite web |last=Jenkins |first=Chris |date=December 26, 2008 |title=Packers' Rodgers learns lessons from trying season |url=http://seattletimes.nwsource.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-url=https://web.archive.org/web/20150226064522/http://old.seattletimes.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-date=February 26, 2015 |access-date=May 13, 2012 |website=The Seattle Times}}</ref> Despite early successes, Rodgers be unable to win a close game during de season despite seven opportunities to do so.<ref name="Rodgers" /><ref name="Bears cap unlikely rally with OT win to stay alive in playoff race">{{Cite web |date=December 23, 2008 |title=Bears cap unlikely rally with OT win to stay alive in playoff race |url=http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081225222724/http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |archive-date=December 25, 2008 |access-date=December 23, 2008 |publisher=National Football League |agency=Associated Press}}</ref>
On {{nowrap|October 31, 2008}}, Rodgers sign a six-year, {{nowrap|$65 million}} contract extension thru de 2014 season.<ref name="Packers Sign Rodgers Through 2014">{{Cite web |date=October 31, 2008 |title=Packers sign QB Rodgers to $65M extension through 2014 |url=https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |url-status=live |archive-url=https://web.archive.org/web/20201204181536/https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |archive-date=December 4, 2020 |access-date=April 27, 2022 |publisher=National Football League |language=en-US |agency=Associated Press}}</ref><ref name="Contracts: Rodgers vs. Romo">{{Cite web |last=Silverstein |first=Tom |date=November 5, 2008 |title=Contracts: Rodgers vs. Romo |url=http://www.jsonline.com/sports/packers/33941369.html |url-status=live |archive-url=https://web.archive.org/web/20081205152249/http://www.jsonline.com/sports/packers/33941369.html |archive-date=December 5, 2008 |access-date=November 6, 2008 |website=JSOnline |publisher=Milwaukee Journal-Sentinel}}</ref> Insyd Rodgers ein first full season plus de team, de Packers fini plus a 6–10 record wey dem miss de playoffs.<ref>{{Cite web |title=2008 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2008.htm |url-status=live |archive-url=https://web.archive.org/web/20180907044946/https://www.pro-football-reference.com/teams/gnb/2008.htm |archive-date=September 7, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2009 ====
For de opening game of de 2009 season, Rodgers record ein first win insyd a comeback situation. Na de Packers dey trail at de beginning of de fourth quarter wen Rodgers plete a fifty-yard touchdown pass to wide receiver [[Greg Jennings]] plus about a minute remaining insyd de game to contribute to de 21–15 victory over de Chicago Bears.<ref>{{Cite web |last=Jenkins |first=Chris |date=December 8, 2019 |title=Rodgers brings Pack back for 21–15 win over Bears |url=https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |url-status=dead |archive-url=https://web.archive.org/web/20191208022530/https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Holland Sentinel}}</ref>
Na dem name Rodgers NFC Offensive Player of de Month for {{nowrap|October 2009}}, wen he pass for 988 yards, he plete 74.5 percent of ein passes, wey he record a passer rating over 110 for all three games he play during de month.<ref name="Rodgers, Sharper, Knox win NFC player of month honors">{{Cite web |last=Rosenthal |first=Gregg |date=October 29, 2009 |title=Rodgers, Sharper, Knox win NFC player of month honors |url=http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |url-status=live |archive-url=https://web.archive.org/web/20140112100938/http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |archive-date=January 12, 2014 |access-date=May 13, 2012 |website=ProFootballTalk.com}}</ref>
After a 4–4 start to de season den a 38–28 loss to de previously winless Buccaneers,<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – November 8th, 2009 |url=https://www.pro-football-reference.com/boxscores/200911080tam.htm |url-status=live |archive-url=https://web.archive.org/web/20171108032603/https://www.pro-football-reference.com/boxscores/200911080tam.htm |archive-date=November 8, 2017 |access-date=November 4, 2017 |website=[[Pro Football Reference]]}}</ref> de team begin to heat up. Rodgers lead de Packers to five straight wins, insyd wich he throw for a total of 1,324 yards, nine touchdowns, den two interceptions.<ref>{{Cite web |title=Aaron Rodgers – Games 9–13 in 2009 |url=http://pfref.com/tiny/3NZjQ |url-status=live |archive-url=https://web.archive.org/web/20211201192346/https://stathead.com/tools/tiny.fcgi?id=3NZjQ |archive-date=December 1, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers win two of dema last three games, finishing de second half of de season plus a 7–1 record den an overall 11–5 record; good enough to secure a wild card playoff berth wey dem clinch de fifth seed insyd de playoffs.<ref>{{Cite web |title=Aaron Rodgers 2009 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180101211154/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2009 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2009.htm |url-status=live |archive-url=https://web.archive.org/web/20171115032207/https://www.pro-football-reference.com/teams/gnb/2009.htm |archive-date=November 15, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers set a new franchise record by scoring 461 total points (third insyd de league), breaking de previous record wey de 1996 Super Bowl team (456) hold.<ref>{{Cite web |title=2009 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180504033136/https://www.pro-football-reference.com/years/2009/ |archive-date=May 4, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=1996 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/1996/ |url-status=live |archive-url=https://web.archive.org/web/20100211094812/http://www.pro-football-reference.com/years/1996/ |archive-date=February 11, 2010 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers cam be de first quarterback insyd NFL history ever to throw for 4,000 yards insyd both of ein first two years as a starter.<ref name="Rodgers Proscout.com">{{Cite web |last=Huber |first=Bill |date=May 9, 2012 |title=Wisconsin Makes 12–12–12 'Aaron Rodgers Day' |url=http://gnb.scout.com/2/1185173.html |url-status=dead |archive-url=https://web.archive.org/web/20130701070113/http://gnb.scout.com/2/1185173.html |archive-date=July 1, 2013 |access-date=May 13, 2012 |work=Fox Sports}}</ref> He fini de season fourth insyd passing yards (4,434), touchdown passes (30), passer rating (103.2), den yards per attempt (8.2) as well as eighth insyd completion percentage (64.7%), while he sanso cam second among quarterbacks insyd rushing yards (316).<ref>{{Cite web |title=Quarterbacks by rushing yards, 2009 season |url=http://pfref.com/tiny/dkEhS |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=dkEhS |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Ein passing yardage make am second all-time insyd Packers history, behind only [[Lynn Dickey]] ein all-time single-season record.<ref>{{Cite web |title=Individual Records – Passing |url=http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |url-status=live |archive-url=https://web.archive.org/web/20210126102232/http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |archive-date=January 26, 2021 |access-date=January 8, 2011 |publisher=Packers.com}}</ref> Na ein passer rating of 103.2 sanso be third-highest insyd team history at de time, behind only [[Bart Starr]] ein 105.0 rating insyd 1966 den 104.3 rating insyd 1968 (minimum 150 attempts).<ref>{{Cite web |title=Green Bay Packers, 1950–2009, highest passer rating. |url=http://pfref.com/tiny/a4QtT |url-status=live |archive-url=https://web.archive.org/web/20211201192343/https://stathead.com/tools/tiny.fcgi?id=a4QtT |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref>
[[File:Aaron_Rodgers_-_December_27,_2009_2.jpg|thumb|Rodgers insyd 2009, before a snap]]
Insyd de Wild Card Round, de Packers play de Arizona Cardinals, de same team wey na dem previously beat de week before, 33–7.<ref>{{Cite web |last=Baum |first=Bob |date=January 4, 2010 |title=Rodgers shreds Cardinals backups in 33–7 rout |url=https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208022718/https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Rodgers den Cardinals quarterback [[Kurt Warner]] put on a show wey dem later rank second on NFL Network ein ''Top 10 Quarterback Duels''.<ref>{{Cite web |title=Top Ten Quarterback Duels |url=http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |url-status=live |archive-url=https://web.archive.org/web/20180101135801/http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |archive-date=January 1, 2018 |access-date=January 1, 2018 |publisher=National Football League}}</ref> Na Rodgers ein first pass be intercepted by [[Dominique Rodgers-Cromartie]].<ref>{{Cite web |title=Wild Card – Green Bay Packers at Arizona Cardinals – January 10th, 2010 |url=https://www.pro-football-reference.com/boxscores/201001100crd.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003908/https://www.pro-football-reference.com/boxscores/201001100crd.htm |archive-date=August 21, 2017 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Rodgers settle down after dat miscue, however, wey he fini de game completing 28 of 42 passes for 423 yards, plus four touchdown passes all insyd a second-half comeback. Ein 423 passing yards be de most by any quarterback insyd ein first playoff game as well as ein four touchdown passes den five total touchdowns.<ref>{{Cite book |last=Cohen |first=Robert W. |url=https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |title=The 50 Greatest Players in Green Bay Packers History |date=September 1, 2018 |publisher=Rowman & Littlefield |isbn=9781493031894 |language=en |access-date=September 13, 2019 |archive-url=https://web.archive.org/web/20210203205326/https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |archive-date=February 3, 2021 |url-status=live}}</ref> Warner shred de Packers dema second-ranked defense, completing 29 of 33 passes for 379 yards, five touchdowns, no interceptions, den a passer rating of 154.1. Despite Rodgers ein offensive efforts, de Packers loose de game wen he fumble on a controversial play insyd overtime. Na dem return de ball by [[Karlos Dansby]] for de winning touchdown insyd de 51–45 Cardinals victory.<ref>{{Cite news|last=Crouse|first=Karen|date=January 10, 2010|title=Cardinals' Defense Ends Shootout With Packers in Overtime|work=The New York Times|url=https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20190824010502/https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|archive-date=August 24, 2019}}</ref> Na e be de highest scoring playoff game insyd NFL history.<ref>{{Cite web |date=January 10, 2015 |title=Remembering The Day of the Highest Scoring Playoff Game in NFL History |url=http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |url-status=live |archive-url=https://web.archive.org/web/20191208022939/http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=ThePostGame.com}}</ref>
Secof ein regular season performance, Rodgers earn a trip to ein first Pro Bowl as de NFC ein third quarterback, behind [[Drew Brees]] den Brett Favre. However, after Favre drop out secof injury wey Brees replace am secof ein participation insyd Super Bowl XLIV, Rodgers cam be de NFC ein starter.<ref>{{Cite web |title=2009 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2009/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180821031640/https://www.pro-football-reference.com/years/2009/probowl.htm |archive-date=August 21, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2010: Super Bowl XLV season ====
Insyd 2010, Rodgers lead de Packers to a 2–0 start, buh then dem loose three of dema next four games, wey dey include back-to-back overtime losses. De two overtime defeats bring Rodgers ein record insyd overtime games to 0–5.<ref>{{Cite web |title=2010 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2010.htm |url-status=live |archive-url=https://web.archive.org/web/20180313175307/https://www.pro-football-reference.com/teams/gnb/2010.htm |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
At midseason, Rodgers already throw nine interceptions dem compare to only throwing seven all of de previous season, wey na he be 16th insyd de league plus an 85.3 passer rating.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 1–8 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Over de remainder of de regular season, however, ein play improve as he throw 16 touchdowns to only two interceptions, he plete 71.4% of ein passes, wey he get a passer rating of 122.0.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 9–16 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref>
Insyd {{nowrap|Week 13}}, insyd a 34–16 victory over de San Francisco 49ers, Rodgers get 298 passing yards den three touchdowns to earn ein first career NFC Offensive Player of de Week honor.<ref>{{Cite web |title=AP Game Story: Packers Topple 49ers, 34–16 |url=https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |url-status=live |archive-url=https://web.archive.org/web/20191208221408/https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=packers.com}}</ref><ref>{{Cite web |title=2010 NFL Week 13 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_13.htm |url-status=live |archive-url=https://web.archive.org/web/20180319084545/https://www.pro-football-reference.com/years/2010/week_13.htm |archive-date=March 19, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd {{nowrap|Week 14}}, he sustain ein second concussion of de season. Na dem put backup [[Matt Flynn (American football)|Matt Flynn]] into de game as Rodgers ein replacement. De Packers loose de game 7–3 to de Lions.<ref>{{Cite web |last=Lage |first=Larry |date=December 12, 2010 |title=Rodgers suffers concussion in Packers' 7–3 loss to Lions |url=https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |url-status=live |archive-url=https://web.archive.org/web/20191208023253/https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The Journal Times |agency=Associated Press}}</ref> Against de Patriots, Rodgers miss de next week ein regular season start, ending ein streak of consecutive starts at 45, wich be tied for de second longest insyd team history.<ref name="Green Bay Packers QB Matt Flynn has fine 1st road start">{{Cite web |author=<!-- not stated --> |date=June 16, 2015 |title=Matt Flynn has plenty to learn at minicamp as new Patriots backup QB |url=https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |url-status=live |archive-url=https://web.archive.org/web/20211206085002/https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |archive-date=December 6, 2021 |access-date=March 3, 2026 |website=Fox Sports |publisher= |location=}}</ref>
After dema road loss to de Patriots, de Packers find demaselves at 8–6 wey dem for win dema final two regular season games to qualify for de playoffs. Rodgers turn around de team ein performance; dem win dema final two regular season games, one of dem against de New York Giants, wer Rodgers plete 25 of 37 passes for 404 yards, plus four touchdown passes, den plus a passer rating of 139.9.<ref>{{Cite news|date=December 26, 2010|title=NFL: Rodgers, Packers hammer Giants|url=https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|url-status=live|archive-url=https://web.archive.org/web/20191208023159/https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|archive-date=December 8, 2019|access-date=December 8, 2019|website=New Haven Register|agency=Associated Press}}</ref> Na e be ein first regular season 400-yard passing game. For ein effort against de Giants, he earn ein second NFC Offensive Player of de Week honor for de 2010 season.<ref>{{Cite web |title=2010 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002511/https://www.pro-football-reference.com/years/2010/week_16.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de next game, dem defeat de Bears by a score of 10–3 insyd de regular season finale.<ref name="Packers 10, Bears 3: Nothing Comes Easy">{{Cite web |last=Wilde |first=Jason |date=January 2, 2011 |title=Packers 10, Bears 3: Nothing Comes Easy |url=http://www.channel3000.com/sports/26347682/detail.html |url-status=dead |archive-url=https://web.archive.org/web/20110208054239/http://www.channel3000.com/sports/26347682/detail.html |archive-date=February 8, 2011 |access-date=January 24, 2011 |website=Channel3000.com}}</ref>
Na dem name Rodgers de FedEx Air NFL Player of de Year for ein passing performance insyd de 2010 season.<ref>{{Cite web |title=Aaron Rodgers voted FedEx Air NFL Player of the Year |url=http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |url-status=dead |archive-url=https://web.archive.org/web/20110225154931/http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |archive-date=February 25, 2011 |access-date=February 2, 2011 |publisher=Packers.com}}</ref>
[[File:Aaron_Rodgers_-_January_2,_2011_4.jpg|right|thumb|Rodgers dey greet de fans insyd Lambeau Field during de 2010 season ein finale against de Bears]]
Plus a 10–6 record, de Packers enter de playoffs as a Wild Card den de {{nowrap|No. 6}} seed. Insyd de Wild Card Round, dem defeat de {{nowrap|No. 3}} seeded Eagles 21–16.<ref>{{Cite web |date=January 9, 2011 |title=Rodgers, Packers Beat Eagles 21–16 |url=https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |url-status=live |archive-url=https://web.archive.org/web/20191208023430/https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=CBS – New York}}</ref> Insyd de Divisional Round, Rodgers plete 31 of 36 pass attempts for 366 yards den four touchdowns insyd a 48–21 blowout victory over de {{nowrap|No. 1}} seeded Atlanta Falcons.<ref>{{Cite news|last=Newberry|first=Paul|date=January 16, 2011|title=Rodgers stars in Green Bay's 48–21 rout of Falcons|publisher=AP via Yahoo Sports|url=https://sports.yahoo.com/nfl/recap?gid=20110115001|url-status=live|access-date=January 24, 2011|archive-url=https://web.archive.org/web/20110119180042/https://sports.yahoo.com/nfl/recap?gid=20110115001|archive-date=January 19, 2011}}</ref> Na e be de most points dem score insyd Packers postseason history.<ref>{{Cite web |title=Green Bay Packers Playoff History |url=https://www.pro-football-reference.com/teams/gnb/playoffs.htm |url-status=live |archive-url=https://web.archive.org/web/20161220082023/http://www.pro-football-reference.com/teams/gnb/playoffs.htm |archive-date=December 20, 2016 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> During de contest, Rodgers tie an NFL record for consecutive playoff games plus at least three touchdown passes (3 games). Rodgers sanso set an NFL record by becoming de only quarterback to pass for ten touchdowns dem combine thru three consecutive playoff games. On {{nowrap|January 23, 2011,}} Rodgers get a 55.4 passer rating as de Packers beat de {{nowrap|No. 2}} seed Chicago Bears 21–14 win insyd de NFC Championship.<ref>{{Cite news|date=January 23, 2011|title=NFC championship: Aaron Rodgers leads Packers past Bears 21–14|work=East Bay Times|agency=Associated Press|url=https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20200724211418/https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|archive-date=July 24, 2020}}</ref>
After winning de NFC Championship, de Packers earn a trip to Super Bowl XLV against de Pittsburgh Steelers. Insyd de game, Rodgers plete 24 of 39 pass attempts for 304 yards den three touchdowns insyd de 31–25 win, wey na dem name am Super Bowl MVP for ein performance.<ref name="Layden2011">{{Cite magazine|last=Layden|first=Tim|date=February 14, 2011|title=Green And Golden: Behind the poise and precision of quarterback Aaron Rodgers and the gutsy contributions of a host of role players, the Packers burnished their championship legacy with a memorable 31—25 victory over Pittsburgh in Super Bowl XLV|url=http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|url-status=dead|archive-url=https://web.archive.org/web/20131029203436/http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|archive-date=October 29, 2013|access-date=February 11, 2011|magazine=Sports Illustrated}}</ref><ref>{{Cite web |date=February 6, 2011 |title=Aaron Rodgers tosses 3 TD passes as Packers drop Steelers to win Super Bowl XLV |url=http://espn.go.com/nfl/recap?gameId=310206009 |url-status=dead |archive-url=https://web.archive.org/web/20110225151826/http://espn.go.com/nfl/recap?gameId=310206009 |archive-date=February 25, 2011 |access-date=February 7, 2011 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Dis ultimately go be ein only Super Bowl appearance plus de Packers.
From ein playoff performance, Rodgers cam be only se third player insyd NFL history to pass for over 1,000 yards insyd a single postseason wey he sanso cam be one of only four quarterbacks to record over 300 yards passing, plus at least three touchdown passes, den no interceptions insyd a Super Bowl.<ref>{{Cite web |title=Super Bowl, 300+ pass yds, 3+ TD, 0 Int |url=http://pfref.com/tiny/1posa |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=1posa |archive-date=December 1, 2021 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> He fini plus 1,094 passing yards, nine touchdown passes, two rushing touchdowns, den two interceptions, while completing 68.2% of ein passes for a passer rating of 109.8.<ref>{{Cite web |title=Aaron Rodgers Career Playoff Stats |url=https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |url-status=live |archive-url=https://web.archive.org/web/20220427191344/https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |archive-date=April 27, 2022 |access-date=April 27, 2022 |website=StatMuse |language=en}}</ref> From dis postseason, Rodgers sanso cam be de only player to pass for at least 900 yards den rush for at least two touchdowns insyd a single postseason.<ref>{{Cite web |title=Playoffs, 900+ pass yds, 2 rush TDs |url=https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |url-status=live |archive-url=https://web.archive.org/web/20200728195759/https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |archive-date=July 28, 2020 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Na dem rank am 11th by ein fellow players on de ''NFL Top 100'' Players of 2011.<ref>{{Cite web |title=2011 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20210308170627/https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |archive-date=March 8, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2011: First MVP ====
[[File:Aaron_Rodgers_drops_back_(cropped).jpg|thumb|Rodgers dey drop back for a pass insyd 2011.]]
Secof de 2011 NFL lockout, de Packers den Rodgers no schedule unofficial off-season workouts, despite chaw teams doing so.<ref name="allgbp">{{Cite web |last=Burke |first=Kris |date=July 2, 2011 |title=No Workouts? No Problem for the Packers |url=http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-url=https://web.archive.org/web/20161229101517/http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=All Green Bay Packers}}</ref> Rodgers den de Packers quickly quel any concerns over dema readiness by defeating de Saints, wey schedule off-season workouts, 42–34. He get 312 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 8, 2011 |title=Rodgers throws 3 TDs, Packers outlast Saints 42–34 |url=https://www.dailyherald.com/article/20110908/sports/709089632/ |url-status=live |archive-url=https://web.archive.org/web/20191208023757/https://www.dailyherald.com/article/20110908/sports/709089632/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Daily Herald |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 1 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_1.htm |url-status=live |archive-url=https://web.archive.org/web/20180830192658/https://www.pro-football-reference.com/years/2011/week_1.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> After de game, Rodgers say insyd de press conference, ''"I was going to ask myself, what would have happened if we had offseason workouts? I mean, could we have started any faster and scored more points tonight?"''<ref>{{Cite web |last=Darlington |first=Jeff |date=May 25, 2016 |title=Drew Brees' absence no big deal, but July 16 deadline looms |url=https://www.nfl.com/news/drew-brees-absence-no-big-deal-but-july-16-deadline-looms-09000d5d82956d8b |url-status=live |archive-url=https://web.archive.org/web/20161208145630/http://www.nfl.com/news/story/09000d5d82956d8b/article/drew-brees-absence-no-big-deal-but-july-16-deadline-looms |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref>
Insyd Week 4, a 49–23 victory over de Denver Broncos, Rodgers get 408 passing yards, four touchdowns, den one interception wey he run for two touchdowns to earn anoda NFC Offensive Player of de Week honor.<ref>{{Cite web |date=October 2, 2011 |title=Rodgers' big day helps Packers beat Broncos 49–23 |url=https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |url-status=live |archive-url=https://web.archive.org/web/20191208025355/https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Duluth News Tribune}}</ref><ref>{{Cite web |title=2011 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180401100045/https://www.pro-football-reference.com/years/2011/week_4.htm |archive-date=April 1, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, a 24–3 victory over de St. Louis Rams, Rodgers convert on a career-high 93-yard touchdown pass to [[Jordy Nelson]].<ref>{{Cite web |last=Jenkins |first=Chris |date=October 16, 2011 |title=Packers stay perfect at 6–0, beat Rams 24–3 |url=http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |url-status=live |archive-url=https://web.archive.org/web/20181211010230/http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |archive-date=December 11, 2018 |access-date=December 10, 2018 |website=The Salt Lake Tribune}}</ref> Insyd Week 9, a 45–38 victory over de Chargers, he get 247 passing yards den four touchdowns to earn ein third NFC Offensive Player of de Week honor for de 2011 season.<ref>{{Cite web |date=November 6, 2011 |title=Packers survive Chargers' late push as Aaron Rodgers delivers again |url=https://www.espn.com/nfl/game?gameId=311106024 |url-status=live |archive-url=https://web.archive.org/web/20191210232803/https://www.espn.com/nfl/game?gameId=311106024 |archive-date=December 10, 2019 |access-date=December 8, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 9 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_9.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231451/https://www.pro-football-reference.com/years/2011/week_9.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers get off to a 13–0 start insyd 2011, tying de NFC record for most consecutive wins to start a season, buh na dem be upset by de Kansas City Chiefs 19–14 insyd week 15, ending dema winning streak at 19 games, de second-longest winning streak insyd NFL history.<ref>{{Cite web |title=Green Bay Packers at Kansas City Chiefs – December 18th, 2011 |url=https://www.pro-football-reference.com/boxscores/201112180kan.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211142/https://www.pro-football-reference.com/boxscores/201112180kan.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2011.htm |url-status=live |archive-url=https://web.archive.org/web/20171115033715/https://www.pro-football-reference.com/teams/gnb/2011.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de season plus 4,643 passing yards, 45 touchdown passes, den six interceptions, good for a passer rating of 122.5, wich as of 2024 be de highest single-season passer rating insyd NFL history.<ref>{{Cite web |title=Aaron Rodgers 2011 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |url-status=live |archive-url=https://web.archive.org/web/20180101135748/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Ein passing yards, touchdown passes, den passer rating set single-season franchise records.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to passer rating, Rodgers lead de league insyd touchdown to interception ratio (7.5, fourth-best all-time), touchdowns passing % (9.0%, second highest all-time), den yards per attempt (9.2, fourth-highest all-time since becoming an official stat insyd 1970), while finishing second insyd both touchdown passes (45, sixth-highest all-time) den completion percentage (68.3%), as well as fifth insyd passing yards. He earn NFC Offensive Player of de Month awards for September, October, den November, den FedEx Air Player of de Week six times (Weeks 4, 5, 6, 7, 9, den 13). Insyd week four, against de Denver Broncos, Rodgers cam be de only quarterback insyd NFL history to record over 400 passing yards plus four touchdown passes, while sanso dey rush for two touchdowns insyd de same game.<ref>{{Cite web |title=List of players with at least 400 passing yards, four passing touchdowns, and two rushing touchdowns in a single game. NFL history |url=http://pfref.com/tiny/Io0Od |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=Io0Od |archive-date=December 1, 2021 |access-date=December 6, 2016 |website=[[Pro Football Reference]]}}</ref> Na he de winner of de 2011 Galloping gobbler as MVP of de Thanksgiving game between de Packers den de Lions, a 27–15 Green Bay victory, wey he tie an NFL record for consecutive games plus at least two touchdown passes (13).
De Packers cam be de fifth team insyd NFL history to finish de regular season plus a 15–1 record.<ref>{{Cite web |last=Kruse |first=Zach |date=January 2, 2012 |title=Green Bay Packers Are 5th 15–1 Team in NFL History: How Did the First 4 Finish? |url=https://bleacherreport.com/articles/1007036-green-bay-packers-are-5th-15-1-team-in-nfl-history-how-did-the-first-4-finish |access-date=May 30, 2024 |website=Bleacher Report |language=en}}</ref> Rodgers play insyd 15 of de 16 games, plus de only exception be Week 17 against de Lions, a game insyd wich Rodgers be rested after de club clinched home-field advantage for de playoffs de previous week. Insyd de game, Rodgers assist backup quarterback Matt Flynn insyd ein stellar 480-yard, six-touchdown performance by helping call some plays.<ref>{{Cite web |last=Samano |first=Simon |date=January 1, 2012 |title=Rodgers preps Flynn, calls plays during backup QB's big day |url=https://www.nfl.com/news/rodgers-preps-flynn-calls-plays-during-backup-qb-s-big-day-09000d5d825a02db |url-status=live |archive-url=https://web.archive.org/web/20190829082359/http://www.nfl.com/news/story/09000d5d825a02db/article/rodgers-preps-flynn-calls-plays-during-backup-qbs-big-day |archive-date=August 29, 2019 |access-date=September 13, 2019 |publisher=National Football League}}</ref> De Packers dema offense set franchise record for points scored insyd a season plus 560, wich as of 2016 be de third-most ever behind only de 2007 Patriots den 2013 Broncos.<ref>{{Cite web |title=All Time Most Points Scored by an NFL Team in a Season |url=https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-url=https://web.archive.org/web/20130802114230/https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-date=August 2, 2013 |access-date=December 6, 2016 |website=Sporting Charts}}</ref>
Rodgers set numerous NFL records insyd 2011. He record a passer rating of over 100.0 insyd thirteen games during de season, wey dey include twelve games in a row (both records), den a passer rating of 110.0 anaa higher insyd twelve games, wey dey include eleven in a row (sanso be records). Rodgers sanso win de league ein MVP award, receiving 48 of de 50 votes (de oda two dey go to [[Drew Brees]]). He sanso fini second, behind Brees, for de AP Offensive Player of de Year award.<ref>{{Cite web |date=February 4, 2012 |title=Saints' Brees wins AP Offensive Player of the Year award |url=https://www.nfl.com/news/saints-brees-wins-ap-offensive-player-of-the-year-award-09000d5d8269e4fe |url-status=live |archive-url=https://web.archive.org/web/20161208145625/http://www.nfl.com/news/story/09000d5d8269e4fe/article/saints-brees-wins-ap-offensive-player-of-the-year-award |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League |agency=Associated Press}}</ref> Rodgers ein 2011 season later be ranked as de third greatest passing season of all time by ESPN insyd 2013, wey na he be regarded as de most efficient.<ref name="Efficient QBS">{{Cite web |last=Seifert |first=Kevin |date=October 3, 2013 |title=Top 10 greatest quarterback seasons |url=https://www.espn.com/blog/nflnation/post/_/id/90974/ |url-status=live |archive-url=https://web.archive.org/web/20141103072453/http://espn.go.com/blog/nflnation/post/_/id/90974/ |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref>
Na de Packers be upset by de eventual Super Bowl champion New York Giants insyd de Divisional Round by de score of 37–20. De Packers dema receiving corps drop six passes insyd de loss wey Rodgers fini de game plus 264 passing yards, two touchdown passes, den an interception on ein last pass attempt.<ref>{{Cite news|last=Wang|first=Gene|date=January 15, 2012|title=NFL playoffs 2012: New York Giants stun Green Bay Packers, 37–20|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|url-status=live|access-date=December 8, 2019|archive-url=https://web.archive.org/web/20180906090329/https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|archive-date=September 6, 2018}}</ref> De 2011 Packers cam be de only team insyd NFL history to go 15–1 wey dem no win a playoff game, as well as dem be de fourth consecutive team to win at least 15 games wey dem no win de Super Bowl.<ref>{{Cite web |last=Emery |first=Mark |date=January 26, 2016 |title=As Carolina Panthers prepare for Super Bowl 50, a look at the fates of six previous teams that won at least 15 in regular season |url=http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |url-status=live |archive-url=https://web.archive.org/web/20161214152104/http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |archive-date=December 14, 2016 |access-date=December 12, 2016 |website=Daily News |location=New York}}</ref> Na dem name Rodgers to de Pro Bowl for ein 2011 season to go along plus a First-team All-Pro honor.<ref>{{Cite web |title=2011 NFL All-Pros |url=https://www.pro-football-reference.com/years/2011/allpro.htm |url-status=live |archive-url=https://web.archive.org/web/20180830185703/https://www.pro-football-reference.com/years/2011/allpro.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2011/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180830174119/https://www.pro-football-reference.com/years/2011/probowl.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> He be voted by ein fellow players as de best player insyd de league on de ''NFL Top 100'' Players of 2012.<ref>{{Cite web |title=2012 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190322201849/https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |archive-date=March 22, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2012 ====
Rodgers den de Packers start off de 2012 season plus a 30–22 loss to de 49ers.<ref>{{Cite web |last=Jenkins |first=Chris |date=September 10, 2012 |title=49ers stop Rodgers' rally, beat Packers 30–22 |url=https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025344/https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Plus de loss, Rodgers loose ein bet plus de music group Boyz II Men, wey he for wear an Alex Smith jersey during de next week of practice.<ref name="boyz">{{Cite web |last=Hanzus |first=Dan |date=September 8, 2012 |title=Aaron Rodgers' head-scratching bet with Boyz II Men |url=https://www.nfl.com/news/aaron-rodgers-head-scratching-bet-with-boyz-ii-men-0ap1000000059772 |url-status=live |archive-url=https://web.archive.org/web/20161220224204/http://www.nfl.com/news/story/0ap1000000059772/article/aaron-rodgers-headscratching-bet-with-boyz-ii-men |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Had de Packers win de game, Boyz II Men go sing de national anthem during dema next home game at Lambeau.<ref name="boyz" />
Insyd Week 4, a 28–27 victory over de Saints, Rodgers get 319 passing yards, four touchdowns, den one interception to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 28, 2012 |title=Rodgers throws late TD, Packers beat Saints 28–27 |url=https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |url-status=live |archive-url=https://web.archive.org/web/20191208025349/https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Twin Cities Pioneer Press}}</ref><ref>{{Cite web |title=2012 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020203/https://www.pro-football-reference.com/years/2012/week_4.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de undefeated Houston Texans, he tie de franchise record by throwing six touchdown passes, insyd a 42–24 victory, to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Houston Texans – October 14th, 2012 |url=https://www.pro-football-reference.com/boxscores/201210140htx.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081312/https://www.pro-football-reference.com/boxscores/201210140htx.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2012 NFL Week 6 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_6.htm |url-status=live |archive-url=https://web.archive.org/web/20210308120125/https://www.pro-football-reference.com/years/2012/week_6.htm |archive-date=March 8, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> De Texans allow only six total touchdown passes during de season up to dat point.<ref>{{Cite web |title=2012 Houston Texans, opponent TD log |url=https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |url-status=live |archive-url=https://web.archive.org/web/20180724093239/https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |archive-date=July 24, 2018 |access-date=December 31, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dis spark a five-game winning streak wich Rodgers plete 65.7% of ein passes for 1,320 yards, 17 touchdowns, two interceptions, den a passer rating of 119.1.<ref>{{Cite web |title=Rodgers, 2012, games 6–10 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227055845/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> During dat stretch, na dem name Rodgers NFC Offensive Player of de Month for October.<ref>{{Cite web |date=March 27, 2015 |title=Packers QB Rodgers leads group of NFC's best for October |url=https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |url-status=live |archive-url=https://web.archive.org/web/20200724202413/https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |archive-date=July 24, 2020 |access-date=September 13, 2019 |publisher=Fox News}}</ref> Insyd Week 15, Rodgers throw for 291 yards den three touchdowns to lead de Packers past de Bears, 21–13, making dem NFC North champions for de second consecutive year.<ref>{{Cite web |date=December 16, 2012 |title=Packers bounce Bears to clinch NFC North |url=https://www.wtsp.com/article/sports/nfl/packers-bounce-bears-to-clinch-nfc-north/67-376020825 |access-date=December 8, 2019 |publisher=WTSP}}</ref> Insyd de season finale, despite Rodgers go 28 of 40 for 365 yards, four touchdowns, no interceptions den a passer rating of 131.8, de Packers loose 37–34 against de Vikings.<ref>{{Cite web |date=December 30, 2012 |title=Vikings beat Packers 37–34, earn playoff berth |url=https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |url-status=live |archive-url=https://web.archive.org/web/20191208025350/https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=HeraldNet.com |agency=Associated Press}}</ref> Dis end de Packers dema twelve-game winning streak against NFC North opponents.
De Packers fini plus an 11–5 record, first insyd de NFC North, wey dem clinch de #3-seed insyd de NFC playoffs.<ref>{{Cite web |title=2012 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2012 |url-status=live |archive-url=https://web.archive.org/web/20180127072019/https://www.pro-football-reference.com/years/2012/ |archive-date=January 27, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers lead de league for de second straight year insyd passer rating (108.0) touchdowns passing % (7.1%), den touchdown-to-interception ratio (4.875), while finishing second insyd touchdown passes (39), third insyd completion percentage (67.2%), fifth insyd yards per attempt (7.78), den eighth insyd passing yards (4,295).<ref>{{Cite web |title=Aaron Rodgers 2012 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |url-status=live |archive-url=https://web.archive.org/web/20180101135930/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd de playoffs, de Packers defeat de Minnesota Vikings 24–10 insyd de Wild Card Round. Rodgers plete 23 of 33 passes to ten different players for 274 yards den a touchdown.<ref>{{Cite web |date=January 5, 2013 |title=Ponder-less Vikings fall to Packers in wild-card game |url=https://www.nfl.com/news/ponder-less-vikings-fall-to-packers-in-wild-card-game-0ap1000000122612 |url-status=live |archive-url=https://web.archive.org/web/20191208025349/http://www.nfl.com/news/story/0ap1000000122612/printable/ponderless-vikings-fall-to-packers-in-wildcard-game |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=NFL.com}}</ref> De 49ers beat dema 45–31 insyd de Divisional Round.<ref>{{Cite web |last=Farmer |first=Sam |date=January 13, 2013 |title=NFC playoffs: 49ers topple Packers 45–31 |url=https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025348/https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Chicago Tribune}}</ref> Rodgers plete 26 of 39 passes for 257 yards, two touchdowns, den an interception, while sanso dey rush for 28 yards, insyd de losing effort. He earn ein third career Pro Bowl nomination for ein performance insyd de 2012 season.<ref>{{Cite web |title=2012 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2012/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180316023449/https://www.pro-football-reference.com/years/2012/probowl.htm |archive-date=March 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2013.<ref>{{Cite web |title=2013 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200406154219/https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |archive-date=April 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2013 ====
On April 26, 2013, de Packers den Rodgers agree to a 5-year, $110 million contract extension wey dey make am de highest paid player insyd NFL history.<ref>{{Cite web |last1=Schefter |first1=Adam |last2=Mortensen |first2=Chris |date=April 26, 2013 |title=Source: Rodgers agrees to $110M extension |url=https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |url-status=live |archive-url=https://web.archive.org/web/20210414204446/https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |archive-date=April 14, 2021 |access-date=April 14, 2021 |website=[[ESPN.com]] |agency=Associated Press}}</ref> De Packers begin dema 2013 season against de reigning NFC champions, de 49ers, de team wey sanso end dema playoff run de previous season. Rodgers go 21 for 37 insyd completions, 333 yards, three touchdowns den an interception insyd de 34–28 loss.<ref>{{Cite web |title=Green Bay Packers at San Francisco 49ers – September 8th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309080sfo.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080800/https://www.pro-football-reference.com/boxscores/201309080sfo.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers get a career-high 480 passing yards to tie de franchise record insyd de 38–20 home-opener win against de Washington Redskins. He earn NFC Offensive Player of de Week for ein effort against de Redskins.<ref>{{Cite web |title=Washington Redskins at Green Bay Packers – September 15th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309150gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081525/https://www.pro-football-reference.com/boxscores/201309150gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2013 NFL Week 2 Leaders & Scores |url=https://www.pro-football-reference.com/years/2013/week_2.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020211/https://www.pro-football-reference.com/years/2013/week_2.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 335 passing yards insyd de first half set a club record.<ref name="w930">{{cite web |last=Huber |first=Bill |date=September 15, 2013 |title=Monster Half Propels Rodgers to Record Day |url=https://247sports.com/nfl/green-bay-packers/Article/monster-half-propels-rodgers-to-record-day-105030089/ |access-date=October 23, 2024 |website=247Sports}}</ref> He sanso cam be de first quarterback since [[Y. A. Tittle]] insyd 1962 to throw for at least 480 yards, four touchdowns den no interceptions insyd a game.<ref>{{Cite web |title=480+ passing yards, 4+ passing touchdowns, no interceptions, NFL history |url=http://pfref.com/tiny/rQ3Cc |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=rQ3Cc |archive-date=December 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers see ein NFL record of 41 consecutive games widout throwing multiple interceptions come to an end insyd a loss to de Cincinnati Bengals by de score of 34–30.<ref>{{Cite web |last=White |first=Scott |date=September 22, 2013 |title=Aaron Rodgers doesn't play usual mistake-free football |url=https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |url-status=live |archive-url=https://web.archive.org/web/20201025173245/https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |archive-date=October 25, 2020 |access-date=September 13, 2019 |website=CBS Sports}}</ref><ref>{{Cite web |title=Green Bay Packers at Cincinnati Bengals – September 22nd, 2013 |url=https://www.pro-football-reference.com/boxscores/201309220cin.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081320/https://www.pro-football-reference.com/boxscores/201309220cin.htm |archive-date=August 29, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
After de loss to de Bengals, de Packers start rolling, winning dema next four games. Against de Ravens, de Packers loose two receivers: [[Randall Cobb (American football)|Randall Cobb]] den [[James Jones (wide receiver)|James Jones]]. Na Cobb be sidelined plus a broken leg den Jones plus a sprained PCL.<ref>{{Cite web |title=Green Bay Packers' Randall Cobb, James Jones injured |url=https://www.nfl.com/news/green-bay-packers-randall-cobb-james-jones-injured-0ap2000000261308 |url-status=live |archive-url=https://web.archive.org/web/20170722195052/http://www.nfl.com/news/story/0ap2000000261308/article/green-bay-packers-randall-cobb-james-jones-injured |archive-date=July 22, 2017 |access-date=September 13, 2019 |publisher=National Football League}}</ref> Against de Cleveland Browns, na dem cart tight end [[Jermichael Finley]] off de field plus a bruised spinal cord, leaving Rodgers widout three of ein top four offensive weapons.<ref>{{Cite web |last=Lee |first=Caroline |date=October 21, 2013 |title=Jermichael Finley, Packers tight end, in ICU with neck injury |url=https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |url-status=live |archive-url=https://web.archive.org/web/20190203150423/https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |archive-date=February 3, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref> De next week against de Vikings, Rodgers plete 24 of 29 passes insyd a 44–31 victory.<ref>{{Cite web |title=Green Bay Packers at Minnesota Vikings – October 27th, 2013 |url=https://www.pro-football-reference.com/boxscores/201310270min.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080251/https://www.pro-football-reference.com/boxscores/201310270min.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
At home against de Bears insyd Week 9, na Rodgers be sacked by [[Shea McClellin]]. He fracture ein left clavicle insyd de process, den de speculation for ein return dem range from a few weeks to an indefinite timetable wey cam be a weekly spectacle of whether anaa wen he fi be cleared to san play.<ref>{{Cite web |date=November 5, 2013 |title=Aaron Rodgers has fractured collarbone, could miss a month |url=http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |url-status=live |archive-url=https://web.archive.org/web/20131111030547/http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |archive-date=November 11, 2013 |access-date=November 6, 2013 |website=[[The Denver Post]] |agency=Associated Press}}</ref><ref name="Aaron Rodgers wasn">{{Cite web |last=Mortensen |first=Chris |author-link=Chris Mortensen |date=December 22, 2013 |title=Aaron Rodgers wasn't close to return |url=https://www.espn.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |url-status=live |archive-url=https://web.archive.org/web/20141103072203/http://espn.go.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref><ref name="Rodgers not ready to play">{{Cite web |last=Dougherty |first=Pete |date=December 19, 2013 |title=Packers' Aaron Rodgers 'looks ready to play' but probably won't |url=https://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |url-status=live |archive-url=https://web.archive.org/web/20150805151227/http://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |archive-date=August 5, 2015 |access-date=November 3, 2014 |website=USA Today}}</ref> Before Rodgers break ein collarbone, de Packers win four straight games to climb to de top of de NFC North division plus a 5–2 record. Plus Rodgers injured den unable to play, de Packers go winless over de next five weeks to fall to 5–6–1 on de season.<ref>{{Cite web |title=Green Bay Packers 2013 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2013/gamelog/ |access-date=October 23, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
After rallying insyd December behind re-acquired backup quarterback Matt Flynn,<ref name="Backup Flynn">{{Cite web |last=Dunne |first=Tyler |date=December 16, 2013 |title=Stoic Matt Flynn delivers Packers win |url=http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |url-status=live |archive-url=https://web.archive.org/web/20141103071905/http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=web |publisher=Milwaukee-Wisconsin Journal Sentinel}}</ref> de Packers fight dema way back to a 7–7–1 record going into de final week of de season. On December 26, Packers head coach Mike McCarthy announce Rodgers go return den start insyd de season-finale showdown against de Chicago Bears at Soldier Field for de NFC North championship.<ref>{{Cite news|last=Breech|first=John|date=December 26, 2013|title=Packers make it official: QB Aaron Rodgers will start vs. Bears|work=CBS Sports|url=http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|url-status=live|access-date=December 27, 2013|archive-url=https://web.archive.org/web/20131227003701/http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|archive-date=December 27, 2013}}</ref> Returning from de injury, Rodgers throw for 318 yards, two touchdowns, den two interceptions insyd de regular season finale against de Bears.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – December 29th, 2013 |url=https://www.pro-football-reference.com/boxscores/201312290chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081317/https://www.pro-football-reference.com/boxscores/201312290chi.htm |archive-date=August 29, 2017 |access-date=May 5, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Trailing 27–28 plus under a minute to go insyd de game den facing de third 4th down of de drive, a 4th & 8 from de 48-yard line, Rodgers connect plus Cobb, wey sanso dey return for ein first game since breaking ein leg insyd Week 6, for a 48-yard game-winning touchdown to clinch de NFC North den earn de right to host a home playoff game against de San Francisco 49ers as de fourth seed.<ref>{{Cite magazine|last=Bedard|first=Greg A.|date=December 30, 2013|title=Answered Prayers|url=https://www.si.com/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|url-status=live|archive-url=https://web.archive.org/web/20211201192432/https://www.si.com/nfl/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|archive-date=December 1, 2021|access-date=September 13, 2019|magazine=Sports Illustrated}}</ref> Rodgers win de 2013 GMC Never Say Never Award for de come-from-behind, division-winning touchdown pass. Rodgers fini fifth insyd de league insyd passer rating (104.9), completion percentage (66.6%), den yards per game (282) while he sanso fini second insyd yards per attempt (8.75).<ref>{{Cite web |title=2013 NFL Passing |url=https://www.pro-football-reference.com/years/2013/passing.htm |access-date=July 17, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
Rodgers san lead de Packers to de playoffs, dis time plus an 8–7–1 record wey na dem be up against de team wey eliminate dem last year insyd de Divisional Round of de playoffs, de 49ers.<ref>{{Cite web |title=2013 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2013.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030637/https://www.pro-football-reference.com/teams/gnb/2013.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de 49ers for de fourth consecutive time, 23–20 on a last second field goal at Lambeau Field, insyd de Wild Card Round. Rodgers record only 177 yards passing, ein lowest insyd a playoff game, den one touchdown pass.<ref>{{Cite web |title=Wild Card – San Francisco 49ers at Green Bay Packers – January 5th, 2014 |url=https://www.pro-football-reference.com/boxscores/201401050gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170821043340/https://www.pro-football-reference.com/boxscores/201401050gnb.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> He sanso be ranked No. 11 by ein fellow players on de ''NFL Top 100'' Players of 2014.<ref>{{Cite web |title=2014 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112164602/https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2014: Second MVP ====
[[File:Aaron_rodgers_2014.jpg|right|thumb|Rodgers insyd 2014]]
De Packers dema 2014 regular season debut cam against de defending Super Bowl champion Seahawks—a game insyd wich dem go go on to loose 36–16.<ref>{{Cite web |title=Green Bay Packers at Seattle Seahawks – September 4th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409040sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182750/https://www.pro-football-reference.com/boxscores/201409040sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 2, de team begin de game plus a 21–3 deficit against de Jets, bug dem cam back wey dem win 31–24.<ref>{{Cite web |title=New York Jets at Green Bay Packers – September 14th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409140gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829120234/https://www.pro-football-reference.com/boxscores/201409140gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De 18-point comeback mark de biggest comeback insyd Rodgers ein career.<ref>{{Cite web |last=Imig |first=Paul |date=September 14, 2014 |title=Rodgers overcomes 'nerves' to complete biggest comeback of career |url=http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |url-status=live |archive-url=https://web.archive.org/web/20140918022944/http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |archive-date=September 18, 2014 |access-date=September 13, 2019 |work=Fox Sports}}</ref> Insyd de third week of de season, de Packers offense be shut down by de Lions dema defense, 19–7.<ref>{{Cite web |title=Green Bay Packers at Detroit Lions – September 21st, 2014 |url=https://www.pro-football-reference.com/boxscores/201409210det.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211151/https://www.pro-football-reference.com/boxscores/201409210det.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Na de Packers dema 7 points be de fewest points dem allow insyd a game Rodgers fini; na de 223 yards of total Packer offense be de lowest since Rodgers take over at quarterback den ein 162 passing yards sanso be a career low. For de third consecutive season, na de Packers be off to a 1–2 start. Insyd those three games, Rodgers throw five touchdowns den one interception combined, plus a passer rating of 95.1. Amid widespread concern, Rodgers telll de fans den de media, "''R-E-L-A-X. Relax. We're going to be OK."''<ref>{{Cite web |last=Wilde |first=Jason |date=September 23, 2014 |title=R-E-L-A-X (ESPN Wisconsin) |url=http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |url-status=dead |archive-url=https://web.archive.org/web/20151101051643/http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |archive-date=2015-11-01 |access-date=December 7, 2014}}</ref>
After dema loss to de Lions, de Packers go on a four-game win streak, during wich, Rodgers throw 13 touchdowns plus no interceptions.<ref>{{Cite web |title=Aaron Rodgers 2014 Game Log (Weeks 4–7) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231025726/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |archive-date=December 31, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> Insyd Week 4, a 38–17 victory over de Bears, he get 302 passing yards den four touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – September 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409280chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081419/https://www.pro-football-reference.com/boxscores/201409280chi.htm |archive-date=August 29, 2017 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180321130559/https://www.pro-football-reference.com/years/2014/week_4.htm |archive-date=March 21, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de Miami Dolphins, Rodgers lead de Packers to a game-winning drive plus less dan two minutes remaining. He plete a 4th & 10 pass to wide receiver Jordy Nelson wey he mimick [[Dan Marino]] ein famous fake spike play by completing a pass to wide receiver [[Davante Adams]] to get to within four yards of de endzone later insyd de drive.<ref>{{Cite web |last=Sherman |first=Rodger |date=October 12, 2014 |title=Packers use fake spike to beat Dolphins |url=https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |archive-date=March 30, 2019 |access-date=March 7, 2019 |website=SBNation.com}}</ref> Rodgers then plete a touchdown pass to tight end [[Andrew Quarless]] to win de game 27–24.<ref name="gmc">{{Cite web |title=2014 GMC Never Say Never Moment |url=http://www.nfl.com/voting/never-say-never/2014/REG/6 |url-status=live |archive-url=https://web.archive.org/web/20161220230141/http://www.nfl.com/voting/never-say-never/2014/REG/6 |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Dis play go later win Rodgers de GMC Never Say Never Moment of de Year Award.<ref name="gmc" /> Insyd Week 7, a 38–17 victory over de Carolina Panthers, na he be 19-of-22 for 255 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Carolina Panthers at Green Bay Packers – October 19th, 2014 |url=https://www.pro-football-reference.com/boxscores/201410190gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002513/https://www.pro-football-reference.com/boxscores/201410190gnb.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 7 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_7.htm |url-status=live |archive-url=https://web.archive.org/web/20210928154945/https://www.pro-football-reference.com/years/2014/week_7.htm |archive-date=September 28, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd a Week 8 loss against de Saints, Rodgers fini 28 of 39 for 418 yards, plus one touchdown pass den two interceptions, ending ein 212 consecutive attempts widout an interception streak<ref name="packsaintsoct">{{Cite web |last=Imig |first=Paul |date=October 27, 2014 |title=5 things we learned: Packers at Saints |url=http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |url-status=live |archive-url=https://web.archive.org/web/20170105180746/http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |archive-date=January 5, 2017 |access-date=January 5, 2017 |work=Fox Sports}}</ref>—de second longest insyd team history. Insyd de game, Rodgers injure ein hamstring wich appear to get an effect on ein play for de remainder of de game.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 27, 2014 |title=Aaron Rodgers of Green Bay Packers injures hamstring in loss |url=https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |url-status=live |archive-url=https://web.archive.org/web/20200818134022/https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |archive-date=August 18, 2020 |access-date=September 13, 2019 |website=[[ESPN.com]]}}</ref>
[[File:Rodgers_handing_off_2014.jpg|left|thumb|Rodgers handing de ball off to running back [[Eddie Lacy]] insyd 2014]]
Insyd Week 10, against de Chicago Bears, Rodgers cam be de second player insyd NFL history den de first since [[Daryle Lamonica]] insyd 1969 to throw six touchdown passes insyd de first half.<ref>{{Cite news|last=Armas|first=Genaro C.|date=November 10, 2014|title=Aaron Rodgers Throws 6 TD Passes in 1st Half As Packers Crush Bears 55–14|work=[[HuffPost]]|url=http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|url-status=live|access-date=November 27, 2014|archive-url=https://web.archive.org/web/20141112143148/http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|archive-date=November 12, 2014}}</ref> Rodgers fini 18 of 27 for 315 yards den six touchdowns despite only playing one drive insyd de second half to earn NFC Offensive Player of de Week.<ref name="nbcchi" /><ref>{{Cite web |title=2014 NFL Week 10 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_10.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020149/https://www.pro-football-reference.com/years/2014/week_10.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers set multiple records during de game: most touchdown passes of 70 anaa more yards plus 16—breaking de record dem wey Brett Favre den [[Peyton Manning]] hold, most consecutive touchdown passes widout an interception at home—he sanso break de record wey Favre den Manning, wey he cam be de first quarterback to ever have 10 touchdown passes against de same team insyd a season.<ref name="nbcchi">{{Cite web |last=Neveau |first=James |date=November 12, 2014 |title=Aaron Rodgers Suffered Back Injury vs. Bears |url=http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |url-status=live |archive-url=https://web.archive.org/web/20170105180011/http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=NBC Chicago}}</ref> De 55–14 victory tie de Packers dema 55–7 win vs. De Titans insyd 2009 for de most points wey a Rodgers-led offense score.
Insyd a Week 11 game against de 7–2 Eagles, Rodgers set a record for most consecutive attempts at home widout an interception, breaking [[Tom Brady]] ein record of 288 consecutive attempts.<ref>{{Cite web |last=Massey |first=Evan |date=November 16, 2014 |title=Packers' Aaron Rodgers Breaks Tom Brady's Record |url=https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |url-status=live |archive-url=https://web.archive.org/web/20200724201538/https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |archive-date=July 24, 2020 |access-date=September 12, 2019 |website=FanSided}}</ref> Insyd de 53–20 victory, he fini dey go 22 of 36, plus 341 passing yards, three touchdown passes den no interceptions.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – November 16th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829074637/https://www.pro-football-reference.com/boxscores/201411160gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De 8–3 Packers meet de 9–2 Patriots insyd Week 13, at [[Lambeau Field]] insyd na wat be Brady den Rodgers' first time playing against each oda as starters.<ref>{{Cite web |last=Imig |first=Paul |date=November 30, 2014 |title=Rodgers outduels Brady for win in first-ever matchup of elite QBs |url=https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |url-status=live |archive-url=https://web.archive.org/web/20190102094626/https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |archive-date=January 2, 2019 |access-date=January 1, 2019 |work=Fox Sports}}</ref> Rodgers fini dey go 24 of 38, plus 368 passing yards den two passing touchdowns insyd de 26–21 Packers victory.<ref>{{Cite web |title=New England Patriots at Green Bay Packers – November 30th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411300gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171228171554/https://www.pro-football-reference.com/boxscores/201411300gnb.htm |archive-date=December 28, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> For ein efforts insyd de month of November, he earn NFC Offensive Player of de Month.<ref>{{Cite web |date=December 4, 2014 |title=Aaron Rodgers among NFC's best for November |url=https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |url-status=live |archive-url=https://web.archive.org/web/20190812115629/https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |archive-date=August 12, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref>
Rodgers suffer a calf injury insyd Week 16, against de Buccaneers, secof severe dehydration he endure from flu-like symptoms he suffer during de week.<ref name="flu">{{Cite web |last=Demovsky |first=Rob |date=December 22, 2014 |title=Aaron Rodgers played with pulled calf |url=https://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |url-status=live |archive-url=https://web.archive.org/web/20170105180655/http://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=[[ESPN.com]]}}</ref>
Insyd de Week 17 game against de Lions, Rodgers re-injure ein left calf while extending a play den throwing a touchdown pass to [[Randall Cobb (American football)|Randall Cobb]], then na e help off de field, wey dem cart am off to de locker room. After missing a series, Rodgers re-enter de game plus de score dem tie 14–14. Despite he be less mobile plus de injury, Rodgers plete 13 of 15 passes for 129 yards den two scores against de league ein second-ranked defense. De Packers win 30–20, winning dema fourth straight NFC North title. Rodgers fini 17 of 22 for 226 yards, two touchdown passes, no interceptions, a 139.6 passer rating, den a rushing touchdown to earn ein fourth NFC Offensive Player of de Week honor for de 2014 season.<ref>{{Cite web |title=Detroit Lions at Green Bay Packers – December 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201412280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20190330032513/https://www.pro-football-reference.com/boxscores/201412280gnb.htm |archive-date=March 30, 2019 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 17 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_17.htm |url-status=live |archive-url=https://web.archive.org/web/20180226175215/https://www.pro-football-reference.com/years/2014/week_17.htm |archive-date=February 26, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers secure de second seed insyd de NFC, rewarding dem plus a playoff bye den a week off wich help Rodgers rest den rehabilitate ein injured left calf.<ref>{{Cite web |title=2014 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2014 |url-status=live |archive-url=https://web.archive.org/web/20211011053552/https://www.pro-football-reference.com/years/2014/ |archive-date=October 11, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round, na de Packers be scheduled to play de 13–4 Cowboys, wich mark de first time insyd NFL playoff history wen a team wich go undefeated at home (Packers) play against a team wich go undefeated away (Cowboys).<ref>{{Cite web |last=Imig |first=Paul |date=January 9, 2015 |title=Something has to give: Packers unbeaten at home; Cowboys 8–0 on road |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |url-status=live |archive-url=https://web.archive.org/web/20170101091540/http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |archive-date=January 1, 2017 |access-date=December 31, 2016 |work=Fox Sports}}</ref> Rodgers help secure a 26–21 victory by finishing 24 of 35 for 316 yards, three touchdowns, no interceptions, den a 125.4 passer rating.<ref>{{Cite web |title=Divisional Round – Dallas Cowboys at Green Bay Packers – January 11th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501110gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171114040923/https://www.pro-football-reference.com/boxscores/201501110gnb.htm |archive-date=November 14, 2017 |access-date=December 15, 2017 |website=[[Pro Football Reference]]}}</ref>
De Packers then travel go Seattle to face de top-seeded Seahawks insyd a rematch of de regular season opener.<ref>{{Cite web |last=Pittman |first=Travis |date=January 11, 2015 |title=Seahawks vs. Packers rematch for NFC Championship |url=https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |archive-date=July 24, 2020 |access-date=September 12, 2019 |publisher=KING}}</ref> Insyd de NFC Championship Game, na de Packers dey lead 19–7 plus just over five minutes to go, buh na de home team ein offense finally wake up den, plus de assistance of a crucial Packers special teams gaffe on an onside kick, de Seahawks lead 22–19, plus 44 seconds remaining. Rodgers quickly drive downfield to set up a tying field goal, only to watch from de sidelines as de Seahawks win de coin toss insyd overtime wey he proceed to score de game-winning touchdown on dema first possession. Rodgers be 19-for-34 for 178 yards den a touchdown, plus two interceptions insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Seattle Seahawks – January 18th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501180sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182804/https://www.pro-football-reference.com/boxscores/201501180sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de regular season first insyd touchdown-to-interception ratio (7.6), lowest interception percentage (1.0%), second insyd passer rating (112.2), yards per attempt (8.4), den touchdown passing percentage (7.1%), third insyd touchdown passes (38), seventh insyd passing yards (4,381), den ninth insyd completion percentage (65.6%).<ref>{{Cite web |title=2014 NFL Leaders and Leaderboards |url=https://www.pro-football-reference.com/years/2014/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20190915221740/https://www.pro-football-reference.com/years/2014/leaders.htm |archive-date=September 15, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> He set an NFL record for most consecutive pass attempts (512) at home widout an interception, den touchdown passes (41).
Na dem vote Rodgers de AP NFL Most Valuable Player for de 2014 season, receiving 31 votes,<ref>{{Cite web |last=Demovsky |first=Rob |date=January 31, 2015 |title=Aaron Rodgers named NFL MVP |url=https://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20161217162150/http://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |archive-date=December 17, 2016 |access-date=December 12, 2016 |publisher=[[ESPN]]}}</ref> wey dem name am NFC Offensive Player of de Year by de Kansas City Committee of 101<ref name="KC101off">{{Cite web |title=Past NFC Offensive Honorees |url=http://www.101awards.com/awards/past_nfc_offensive_honorees |url-status=dead |archive-url=https://web.archive.org/web/20161220130101/http://www.101awards.com/awards/past_nfc_offensive_honorees |archive-date=December 20, 2016 |access-date=December 13, 2016 |website=101awards.com}}</ref> den Fed-Ex Air NFL Player of de Year.<ref>{{Cite web |date=January 31, 2015 |title=2015 'NFL Honors' complete list of winners |url=https://www.nfl.com/news/2015-nfl-honors-complete-list-of-winners-0ap3000000466415 |url-status=live |archive-url=https://web.archive.org/web/20161018132754/http://www.nfl.com/news/story/0ap3000000466415/article/2015-nfl-honors-complete-list-of-winners |archive-date=October 18, 2016 |access-date=December 12, 2016 |publisher=National Football League}}</ref> He sanso be named to de AP All-Pro team as de first quarterback, receiving 44 votes while runner-up [[Tony Romo]] receive three.<ref>{{Cite web |last=Wesseling |first=Chris |date=January 2, 2015 |title=2014 All-Pro Teams: Analysis of the full rosters |url=https://www.nfl.com/news/2014-all-pro-teams-analysis-of-the-full-rosters-0ap3000000452986 |url-status=live |archive-url=https://web.archive.org/web/20140104005331/http://pro32.ap.org/article/2013-all-pro-team |archive-date=January 4, 2014 |access-date=February 4, 2015 |publisher=National Football League}}</ref> Na dem name am to de Pro Bowl for de 2014 season.<ref>{{Cite web |title=2014 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2014/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180816061701/https://www.pro-football-reference.com/years/2014/probowl.htm |archive-date=August 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am as de second best player insyd de league among ein fellow players on de ''NFL Top 100'' Players of 2015.<ref>{{Cite web |title=2015 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200508061426/https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |archive-date=May 8, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2015 ====
Insyd 2015, Rodgers get a down year by ein standards. He throw for a career low 3,821 yards insyd wich he play for at least 15 games, although he get 31 touchdowns to just eight interceptions.<ref>{{Cite web |last=Hirschhorn |first=Jason B. |date=July 6, 2016 |title=NFL Top 100: Packers' Aaron Rodgers lands at No. 6 in 2016 |url=https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |url-status=live |archive-url=https://web.archive.org/web/20211115204818/https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=ACME Packing Company |language=en}}</ref> Rodgers plete 60.7 of ein passes per, averaged only 6.7 yards per attempt wey he fini plus a passer rating of 92.7, all career lows. Na Pro Bowl wide receiver Jordy Nelson ein absence secof injury for de season be considered a contributing factor insyd Rodgers ein statistical drop dem compare to previous seasons.<ref>{{Cite web |last=Kelly |first=Danny |date=November 15, 2015 |title=Aaron Rodgers and the Packers miss Jordy Nelson more than we thought they would |url=https://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |url-status=live |archive-url=https://web.archive.org/web/20161226145804/http://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=sbnation.com}}</ref><ref>{{Cite web |date=January 19, 2016 |title=Packers hope Nelson's return will revitalize offense |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |url-status=live |archive-url=https://web.archive.org/web/20161226145654/http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |archive-date=December 26, 2016 |access-date=December 25, 2016 |work=Fox Sports}}</ref><ref>{{Cite web |last=Spofford |first=Mike |date=December 30, 2015 |title=Stats don't matter to Aaron Rodgers |url=http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |url-status=dead |archive-url=https://web.archive.org/web/20161226145201/http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=packers.com}}</ref>
Insyd Week 3, a 38–28 victory over de Chiefs, Rodgers get 333 passing yards den five touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Kansas City Chiefs at Green Bay Packers – September 28th, 2015 |url=https://www.pro-football-reference.com/boxscores/201509280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20220218210924/https://www.pro-football-reference.com/boxscores/201509280gnb.htm |archive-date=February 18, 2022 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2015 NFL Week 3 Leaders & Scores |url=https://www.pro-football-reference.com/years/2015/week_3.htm |url-status=live |archive-url=https://web.archive.org/web/20180330172357/https://www.pro-football-reference.com/years/2015/week_3.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> During Week 9 against de Panthers, he fini plus 369 passing yards, four touchdowns, den one interception. De interception cam plus only 1:47 left insyd de fourth quarter, den following de interception, Rodgers express frustration by throwing down a Microsoft Surface tablet.<ref>{{Cite web |last=Davis |first=Scott |date=November 9, 2015 |title=Aaron Rodgers angrily threw a Microsoft Surface tablet after throwing a crucial interception |url=https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |archive-date=March 30, 2019 |access-date=September 13, 2019 |website=Business Insider}}</ref> De Packers end up losing de game 29–37.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – November 8th, 2015 |url=https://www.pro-football-reference.com/boxscores/201511080car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211145/https://www.pro-football-reference.com/boxscores/201511080car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
On December 3, 2015, insyd a Week 13 match-up against de Lions, Rodgers throw a Hail Mary pass wey [[Richard Rodgers (tight end)|Richard Rodgers]] catch for 61 yards plus 0:00 left to beat de Lions 27–23, after dem extend de game secof a facemask penalty dem call on Detroit.<ref name="2015mary">{{Cite web |last=Rosenthal |first=Gregg |date=December 3, 2015 |title=Packers stun Lions on Aaron Rodgers' Hail Mary TD |url=https://www.nfl.com/news/packers-stun-lions-on-aaron-rodgers-hail-mary-td-0ap3000000593884 |url-status=live |archive-url=https://web.archive.org/web/20180408144543/http://www.nfl.com/news/story/0ap3000000593884/article/packers-stun-lions-on-miracle-td-throw-by-rodgers |archive-date=April 8, 2018 |access-date=December 25, 2016 |publisher=National Football League}}</ref> Na de play quickly be dubbed as "The Miracle in Motown."<ref>{{Cite news|last=Bennett|first=Colin|date=December 9, 2015|title=Getaway winner witnesses Motown Miracle|publisher=WTMJ|url=https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|url-status=dead|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20180312083608/https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|archive-date=March 12, 2018}}</ref><ref>{{Cite book |last=Aretha |first=David |url=https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |title=Aaron Rodgers: Champion Football Star |date=July 15, 2017 |publisher=Enslow Publishing, LLC |isbn=9780766087170 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203181206/https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |archive-date=February 3, 2021 |url-status=live}}</ref>
De Packers make de playoffs as de fifth seed insyd de NFC plus a 10–6 record.<ref>{{Cite web |title=2015 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2015.htm |url-status=live |archive-url=https://web.archive.org/web/20171010004706/https://www.pro-football-reference.com/teams/gnb/2015.htm |archive-date=October 10, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Dem defeat de Redskins 35–18 on de road insyd de Wild Card Round of de playoffs. Rodgers fini de game plus 210 yards den two passing touchdowns.<ref>{{Cite web |title=Wild Card – Green Bay Packers at Washington Redskins – January 10th, 2016 |url=https://www.pro-football-reference.com/boxscores/201601100was.htm |url-status=live |archive-url=https://web.archive.org/web/20180308042317/https://www.pro-football-reference.com/boxscores/201601100was.htm |archive-date=March 8, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round against de Cardinals, Rodgers throw a 41-yard Hail Mary touchdown pass to [[Jeff Janis]] as time expire to send de game into overtime. However, de Packers loos3 26–20 insyd overtime. Rodgers fini de game 24 for 44 for 261 yards plus two touchdowns den an interception.<ref>{{Cite web |last=Wilde |first=Jason |date=January 17, 2016 |title=Jeff Janis forces OT with Hail Mary catch, but celebration short-lived |url=https://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |url-status=live |archive-url=https://web.archive.org/web/20161213200125/http://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=[[ESPN.com]]}}</ref> Dem name am to ein fifth Pro Bowl wey na dem rank am as de sixth best player by ein peers on de ''NFL Top 100'' Players of 2016.<ref>{{Cite web |title=2015 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2015/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180308103829/https://www.pro-football-reference.com/years/2015/probowl.htm |archive-date=March 8, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2016 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190404010429/https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |archive-date=April 4, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2016 ====
[[File:Aaron_Rodgers,_Redskins_v_Packers,_Jan_2016.jpg|right|thumb|Rodgers insyd 2016]]
Thru out de first five games of de 2016 season, Rodgers ein struggles from de 2015 season appear to continue.<ref name="pff2016" /> Thru those games, he plete 60.2% of ein passes, dem average 6.5 yards per attempt, wey he post a passer rating of 88.4—all of wich na be similar to ein 2015 numbers.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log (Games 1–5) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/#127-131-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227180403/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016#127-131-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]]}}</ref> He sanso fumble five times, wey he loose two. Ein lackluster performance thru those games cause much speculation about de causes of ein problems.<ref>{{Cite web |last=Florio |first=Mike |author-link=Mike Florio |date=October 20, 2016 |title=What's wrong with Aaron Rodgers? |url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/whats-wrong-with-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20161226215024/http://profootballtalk.nbcsports.com/2016/10/20/whats-wrong-with-aaron-rodgers/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=NBC Sports |language=en-US}}</ref><ref name="pff2016">{{Cite web |last=Monson |first=Sam |date=October 17, 2016 |title=What's wrong with Aaron Rodgers and the Packers' offense? |url=https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |url-status=live |archive-url=https://web.archive.org/web/20161226214838/https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=profootballfocus.com}}</ref><ref>{{Cite web |last=Gonzalez |first=Jason |date=October 17, 2016 |title=What's wrong with the Packers? All signs point to Aaron Rodgers |url=http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |url-status=live |archive-url=https://web.archive.org/web/20161226145502/http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=Star Tribune}}</ref><ref>{{Cite web |last=Demovsky |first=Rob |date=October 20, 2016 |title=Experts weigh in on Aaron Rodgers: 'No easy fix' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |url-status=live |archive-url=https://web.archive.org/web/20161226150119/http://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=[[ESPN.com]]}}</ref>
[[File:Pro_Football_Hall_of_Fame_(23945585187).jpg|thumb|Rodgers ein uniform dem exhibit at de Pro Football Hall of Fame]]
Insyd a Week 7 ''Thursday Night Football'' game against de Bears, Rodgers rebound by recording a franchise record den career-high 39 completions, breaking Brett Favre ein previous record of 36 insyd 1993, sanso be against de Bears.<ref>{{Cite web |date=October 21, 2016 |title=Aaron Rodgers sets Green Bay Packers completion record in win over Chicago Bears |url=http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |url-status=live |archive-url=https://web.archive.org/web/20161213015800/http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=United Press International}}</ref> Rodgers record 326 passing yards for ein first 300-yard passing game since Week 10 of de 2015 season insyd de 26–10 win.<ref name="pfr gamelog" /> De following week against de Atlanta Falcons, Rodgers record a career regular season high of 60 rushing yards,<ref name="pfr gamelog">{{Cite web |title=Aaron Rodgers Career Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/ |url-status=dead |archive-url=https://web.archive.org/web/20111219211828/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog |archive-date=December 19, 2011 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> wey he fini plus four touchdown passes den a 125.5 passer rating.<ref>{{Cite web |last=Dubin |first=Jared |date=October 30, 2016 |title=Packers vs. Falcons highlights, score: Matt Ryan Aaron Rodgers trade lasers all day |url=http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |url-status=live |archive-url=https://web.archive.org/web/20161226215154/http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=CBS Sports}}</ref>
After a Week 11 loss to de Redskins—de Packers dema fourth in a row, putting dem at 4–6—Rodgers be optimistic about de remainder of de season, saying, "I feel like we fi run de table, I really do."<ref name="runtable1">{{Cite web |last=Demovsky |first=Rob |date=November 23, 2016 |title=Aaron Rodgers: Packers, at 4–6, can close with 6 straight wins |url=https://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |url-status=live |archive-url=https://web.archive.org/web/20170105180337/http://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref> Despite widespread doubt over de likelihood of such a run,<ref name="runtable2">{{Cite web |last=Demovsky |first=Rob |date=January 2, 2016 |title=Aaron Rodgers' magic carries Packers into playoffs on a run-the-table roll |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |url-status=live |archive-url=https://web.archive.org/web/20170103184508/http://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |archive-date=January 3, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Sipple |first=George |date=January 2, 2017 |title=Packers QB Aaron Rodgers makes good on 'run the table' prediction |url=http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |url-status=live |archive-url=https://web.archive.org/web/20170105175931/http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=Detroit Free Press}}</ref><ref>{{Cite web |last=Gantt |first=Darin |date=November 24, 2016 |title=Aaron Rodgers: "I feel we can run the table" |url=http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |url-status=live |archive-url=https://web.archive.org/web/20170105180803/http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=profootballtalk.nbcsports.com}}</ref> de Packers go go on to finish de season plus six straight wins—as Rodgers say dem go fi.
Insyd a Week 12 ''Monday Night Football'' game Rodgers appeare to injure ein hamstring on a scrambling play against de Eagles.<ref name="packnews">{{Cite web |last=Silverstein |first=Tom |date=November 29, 2016 |title=Hamstring injury sends Rodgers to tent |url=http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |url-status=live |archive-url=https://web.archive.org/web/20161129161247/http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |archive-date=November 29, 2016 |access-date=December 13, 2016 |website=Milwaukee Journal Sentinel}}</ref> After de play, Rodgers go into an injury tent on de sideline to get ein leg taped up.<ref name="packnews" /> Na Rodgers, however, no miss any snaps insyd de game wey he fini 30 out of 39 for 313 yards plus no sacks anaa interceptions.<ref name="2016eagles" /> Ein 300-yard performance be ein fourth of de season den de first wey de Eagles dema defense allow all season.<ref name="2016eagles">{{Cite web |last=Jackson |first=Zac |date=November 28, 2016 |title=Rodgers, defense step up as Packers snap losing streak |url=http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |url-status=live |archive-url=https://web.archive.org/web/20161213165321/http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |archive-date=December 13, 2016 |access-date=December 13, 2016}}</ref> De Packers win, 27–13, snapping dema four-game losing streak.
Insyd a 38–10 victory over de Seahawks insyd a Week 14 game, Rodgers den de Packers continue dema recent offensive den defensive success.<ref name="38-10" /><ref name="38-102">{{Cite web |last=Pelissero |first=Tom |date=December 12, 2016 |title=After rout of Seattle, Packers re-emerge as team no one wants to see in January |url=https://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |url-status=live |archive-url=https://web.archive.org/web/20161213014329/http://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=USA Today Sports}}</ref> Rodgers fini plus 246 passing yards, three touchdown passes den a 150.8 passer rating. De 150.8 passer rating be de best recorded against Seattle ein defense since head coach [[Pete Carroll]] take over insyd 2010.<ref name="38-10">{{Cite web |last=Wesseling |first=Chris |date=December 11, 2016 |title=Aaron Rodgers, Packers dismantle Seahawks |url=https://www.nfl.com/news/aaron-rodgers-packers-dismantle-seahawks-0ap3000000755388 |url-status=live |archive-url=https://web.archive.org/web/20161213001101/http://www.nfl.com/news/story/0ap3000000755388/article/mvp-candidate-rodgers-packers-dismantle-seahawks |archive-date=December 13, 2016 |access-date=December 13, 2016 |publisher=National Football League}}</ref> Rodgers do dis despite suffering a calf injury early insyd de game.<ref name="38-10" /> Na dem name am NFC Offensive Player of de Week for ein performance against de Seahawks.<ref>{{Cite web |last=Lam |first=Quang M. |date=December 14, 2016 |title=Le'Veon Bell, Rodgers among NFL Players of the Week |url=http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |url-status=dead |archive-url=https://web.archive.org/web/20190330021109/http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |archive-date=March 30, 2019 |access-date=November 12, 2019 |publisher=National Football League}}</ref>
On December 20, 2016, na Rodgers be selected to ein third consecutive Pro Bowl den ein sixth overall insyd ein career.<ref name="probowl2016">{{Cite web |date=December 20, 2016 |title=NFL announces 2017 Pro Bowl rosters |url=https://www.nfl.com/news/nfl-announces-2017-pro-bowl-rosters-0ap3000000760503 |url-status=live |archive-url=https://web.archive.org/web/20181117075658/http://www.nfl.com/news/story/0ap3000000760503/article/nfl-announces-2017-pro-bowl-rosters |archive-date=November 17, 2018 |access-date=December 24, 2016 |publisher=National Football League}}</ref>
During Week 16, Rodgers den [[Drew Brees]] tie de NFL record for most seasons plus at least 35 touchdown passes plus four—a record he share plus Peyton Manning den Tom Brady.<ref name="35tdpass">{{Cite web |title=Most seasons with at least 35 passing touchdowns, career |url=http://pfref.com/tiny/ww1Iz |url-status=live |archive-url=https://web.archive.org/web/20220209214231/https://stathead.com/tools/tiny.fcgi?id=ww1Iz |archive-date=February 9, 2022 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref><ref name="mosttdpass">{{Cite web |title=NFL Single-Season Passing Touchdowns Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20210201232241/https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |archive-date=February 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> Insyd de game against de Vikings, Rodgers fini 28 of 38 for 347 yards, four touchdown passes den a rushing touchdown to earn NFC Offensive Player of de Week.<ref name="espnvik2016">{{Cite web |last=Demovsky |first=Rob |date=December 24, 2016 |title=Aaron Rodgers for MVP: Packers QB makes case in win over Vikings |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |url-status=live |archive-url=https://web.archive.org/web/20161225084224/http://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |archive-date=December 25, 2016 |access-date=December 25, 2016 |publisher=[[ESPN]]}}</ref><ref>{{Cite web |title=2016 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2016/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231416/https://www.pro-football-reference.com/years/2016/week_16.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 300-yard performance be de first allowed by de Vikings dema defense all season.<ref name="espnvik2016" /> He sanso set Packer regular season records for most 4,000-yard passing seasons (6), most completions insyd a season (374), den—plus Jordy Nelson—most touchdowns by a quarterback/wide receiver combination plus (59).<ref name="espnvik2016" /> Na dem name Rodgers NFC Offensive Player of de Month for December.<ref>{{Cite web |date=January 5, 2017 |title=Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |url-status=live |archive-url=https://web.archive.org/web/20200724202520/https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |archive-date=July 24, 2020 |access-date=September 13, 2019 |website=packers.com}}</ref>
Rodgers help lead de Packers to a NFC North title den a playoff berth insyd 2016.<ref>{{Cite web |title=2016 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2016 |url-status=live |archive-url=https://web.archive.org/web/20180329001215/https://www.pro-football-reference.com/years/2016/ |archive-date=March 29, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers defeat de Giants insyd de Wild Card Round. Rodgers plete 25 of 40 passes for 364 yards den four touchdowns insyd de victory. Dem defeat de #1-seed Cowboys insyd de Divisional Round. Plua de game tied at 31 plus only 18 seconds remaining plus de ball on dema own 32-yard line, Rodgers throw a 36-yard completion to tight end [[Jared Cook]] to put de Packers insyd Mason Crosby ein field goal range. Crosby convert de 51-yard attempt as time expire to win de game.<ref>{{Cite web |last=Steele |first=David |date=January 15, 2017 |title=Aaron Rodgers-to-Jared-Cook joins list of legendary clutch NFL playoff catches |url=https://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |url-status=live |archive-url=https://web.archive.org/web/20190415003703/http://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |archive-date=April 15, 2019 |access-date=September 13, 2019 |website=Sporting News}}</ref> Overall, Rodgers plete 28 of 43 passes for 355 yards, two touchdowns den an interception insyd de victory.<ref>{{Cite web |title=Wild Card – New York Giants at Green Bay Packers – January 8th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701080gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171011073327/https://www.pro-football-reference.com/boxscores/201701080gnb.htm |archive-date=October 11, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=Divisional Round – Green Bay Packers at Dallas Cowboys – January 15th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701150dal.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030639/https://www.pro-football-reference.com/boxscores/201701150dal.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de Falcons insyd de NFC Championship insyd de final game at de Georgia Dome. Rodgers plete 27 of ein 45 passing attempts for 287 yards plus three touchdowns den an interception insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Atlanta Falcons – January 22nd, 2017 |url=https://www.pro-football-reference.com/boxscores/201701220atl.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003240/https://www.pro-football-reference.com/boxscores/201701220atl.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd 2016, Rodgers fini plus 401 completions den 610 attempts (both career highs), a 65.7% completion percentage, 4,428 passing yards, 40 touchdown passes, seven interceptions, a passer rating of 104.2, 369 rushing yards (career-high), den four rushing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |url-status=live |archive-url=https://web.archive.org/web/20211115205043/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Plus ein 40 touchdown passes, he lead de league insyd de statistic for de first time insyd ein career<ref>{{Cite web |last=Borek |first=Jesse |date=January 1, 2017 |title=Packers' Aaron Rodgers leads NFL in TD passes |url=http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |url-status=dead |archive-url=https://web.archive.org/web/20170104172003/http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |archive-date=January 4, 2017 |access-date=January 4, 2017 |website=fanrangsports.com |publisher=Nafstrops Media, LLC}}</ref> wey he cam be one of only four quarterbacks to pass for at least 40 touchdowns insyd multiple seasons.<ref name="40td">{{Cite web |title=Most seasons with at least 40 passing touchdowns, career |url=http://pfref.com/tiny/6BiBx |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=6BiBx |archive-date=December 1, 2021 |access-date=January 5, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Rodgers sanso fini fourth insyd passing yards, completions, attempts, den passer rating.<ref name="2016leaderspfr">{{Cite web |title=2016 NFL Leaders |url=https://www.pro-football-reference.com/years/2016/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20210108041718/https://www.pro-football-reference.com/years/2016/leaders.htm |archive-date=January 8, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Among quarterbacks, he fini third insyd rushing yards den fifth insyd rushing touchdowns.<ref name="2016qbrush">{{Cite web |title=2016 QB rushing leaders |url=http://pfref.com/tiny/698kQ |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=698kQ |archive-date=December 1, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2017.<ref>{{Cite web |title=2017 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201106081444/https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |archive-date=November 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2017 ====
Insyd a Week 1 victory over de Seahawks, Rodgers get ein 50th career game plus at least 300 passing yards. He fini de game plus 311, buh ein streak of 251 consecutive passes widout an interception cam to an end wen defensive tackle [[Nazair Jones]] pick am off insyd de first quarter.<ref>{{Cite news|date=September 10, 2017|title=Rodgers, Packers' defense spark season-opener win over Seahawks|work=Fox Sports|agency=Associated Press|url=http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|url-status=live|access-date=September 10, 2017|archive-url=https://web.archive.org/web/20170912011719/http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|archive-date=September 12, 2017}}</ref> Insyd a Week 2 loss of 34–23 to de Falcons, he get 343 passing yards, two touchdowns, den an interception insyd de first game insyd de new Mercedes-Benz Stadium insyd Atlanta.<ref>{{Cite web |title=Green Bay Packers at Atlanta Falcons – September 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201709170atl.htm |url-status=live |archive-url=https://web.archive.org/web/20171008080102/https://www.pro-football-reference.com/boxscores/201709170atl.htm |archive-date=October 8, 2017 |access-date=October 13, 2017 |website=[[Pro Football Reference]]}}</ref> Insyd Week 5, down by 28–31 against de Cowboys plus less dan two minutes on de clock, Rodgers lead a nine-play, 75-yard touchdown drive insyd de 35–31 victory, earning am NFC Offensive Player of de Week.<ref>{{Cite web |last=Lewis |first=Edward |date=October 11, 2017 |title=Aaron Rodgers, Earl Thomas among Players of Week |url=https://www.nfl.com/news/aaron-rodgers-earl-thomas-among-players-of-week-0ap3000000859999 |url-status=live |archive-url=https://web.archive.org/web/20190504022932/http://www.nfl.com/news/story/0ap3000000859999/article/aaron-rodgers-earl-thomas-among-players-of-week |archive-date=May 4, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref>
During Week 6 against de Vikings, na dem take Rodgers off de field by ein coaches den medical personnel after suffering a shoulder injury on a hit from [[Anthony Barr (American football)|Anthony Barr]]. Shortly thereafter, na dem reveal say Rodgers suffer a fractured right collarbone.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 15, 2017 |title=Aaron Rodgers has broken collarbone, could miss season |url=https://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |url-status=live |archive-url=https://web.archive.org/web/20190504114010/http://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |archive-date=May 4, 2019 |access-date=October 15, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Wesseling |first=Chris |date=October 15, 2017 |title=Aaron Rodgers suffers broken collarbone vs. Vikings |url=https://www.nfl.com/news/aaron-rodgers-suffers-broken-collarbone-vs-vikings-0ap3000000861006 |url-status=live |archive-url=https://web.archive.org/web/20171015222153/http://www.nfl.com/news/story/0ap3000000861006/article/aaron-rodgers-suffers-broken-collarbone-vs-vikings |archive-date=October 15, 2017 |access-date=October 15, 2017 |website=NFL.com |publisher=National Football League}}</ref> De next day, on October 16, na dem announce say Rodgers go get surgery on ein broken collarbone.<ref>{{Cite web |last=Patra |first=Kevin |date=October 16, 2017 |title=Aaron Rodgers will have surgery on broken collarbone |url=https://www.nfl.com/news/aaron-rodgers-will-have-surgery-on-broken-collarbone-0ap3000000862438 |url-status=live |archive-url=https://web.archive.org/web/20171016214737/http://www.nfl.com/news/story/0ap3000000862438/article/aaron-rodgers-will-have-surgery-on-broken-collarbone |archive-date=October 16, 2017 |access-date=October 16, 2017 |website=NFL.com |publisher=National Football League}}</ref> On October 19, he undergo surgery on ein collarbone, wey na he be officially placed on injured reserve de next day.<ref>{{Cite web |date=October 19, 2017 |title=Aaron Rodgers has surgery on collarbone |url=https://www.nfl.com/news/packers-aaron-rodgers-has-surgery-on-collarbone-0ap3000000864021 |url-status=live |archive-url=https://web.archive.org/web/20171020135141/http://www.nfl.com/news/story/0ap3000000864021/article/packers-aaron-rodgers-has-surgery-on-collarbone |archive-date=October 20, 2017 |access-date=October 19, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |date=October 20, 2017 |title=Packers place QB Rodgers on injured reserve |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |url-status=dead |archive-url=https://web.archive.org/web/20171021061030/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |archive-date=October 21, 2017 |access-date=October 20, 2017 |website=Packers.com}}</ref> Na dem insert a total of 13 screws to stabilize ein collarbone.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 26, 2017 |title=Injury roundup: Rodgers has '13 screws' in collarbone |url=https://www.nfl.com/news/injuries-aaron-rodgers-has-13-screws-in-collarbone-0ap3000000867422 |url-status=live |archive-url=https://web.archive.org/web/20171026222152/http://www.nfl.com/news/story/0ap3000000867422/article/injury-roundup-rodgers-has-13-screws-in-collarbone |archive-date=October 26, 2017 |access-date=October 26, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Knoblauch |first=Austin |date=November 3, 2017 |title=Aaron Rodgers focusing on his health, not return date |url=https://www.nfl.com/news/aaron-rodgers-focusing-on-his-health-not-return-date-0ap3000000871634 |url-status=live |archive-url=https://web.archive.org/web/20171104033909/http://www.nfl.com/news/story/0ap3000000871634/article/aaron-rodgers-focusing-on-his-health-not-return-date |archive-date=November 4, 2017 |access-date=November 3, 2017 |website=NFL.com |publisher=National Football League}}</ref>
Rodgers return to practice on December 2, wey dey make am eligible to play insyd de upcoming Week 15 game.<ref>{{Cite web |last=Bergman |first=Jeremy |date=December 2, 2017 |title=Aaron Rodgers returns to Packers practice Saturday |url=https://www.nfl.com/news/aaron-rodgers-returns-to-packers-practice-saturday-0ap3000000885977 |url-status=live |archive-url=https://web.archive.org/web/20191202121449/http://www.nfl.com/news/story/0ap3000000885977/article/aaron-rodgers-returns-to-packers-practice-saturday |archive-date=December 2, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> On December 12, na dem announce say Rodgers be medically cleared by doctors wey he be set to start de next game against de Panthers.<ref>{{Cite web |last=Lewis |first=Edward |date=December 12, 2017 |title=Aaron Rodgers cleared to return, to start vs. Panthers |url=http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |url-status=dead |archive-url=https://web.archive.org/web/20191109071351/http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |archive-date=November 9, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> He be officially activated on December 16.<ref>{{Cite web |date=December 16, 2017 |title=Aaron Rodgers activated from injured reserve |url=https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |url-status=live |archive-url=https://web.archive.org/web/20190413105005/https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |archive-date=April 13, 2019 |access-date=September 12, 2019 |website=Packers.com}}</ref> As dem plan, Rodgers return insyd Week 15 against de Panthers, wer he fini plus 290 passing yards, three touchdowns, den three interceptions as de Packers loose 24–31.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – December 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201712170car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101135719/https://www.pro-football-reference.com/boxscores/201712170car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> However, on December 19, na dem place Rodgers back on injured reserve after de Packers be eliminated from playoff contention.<ref>{{Cite web |date=December 19, 2017 |title=Packers place QB Aaron Rodgers on IR |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |url-status=dead |archive-url=https://web.archive.org/web/20180326030719/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |archive-date=March 26, 2018 |website=Packers.com}}</ref><ref>{{Cite web |last=Patra |first=Kevin |date=December 19, 2017 |title=Packers place Aaron Rodgers back on injured reserve |url=https://www.nfl.com/news/packers-place-aaron-rodgers-back-on-injured-reserve-0ap3000000895650 |url-status=live |archive-url=https://web.archive.org/web/20190920235723/http://www.nfl.com/news/story/0ap3000000895650/article/packers-place-aaron-rodgers-back-on-injured-reserve |archive-date=September 20, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Rapoport |first=Ian |author-link=Ian Rapoport |date=December 17, 2017 |title=Aaron Rodgers' collarbone still not completely healed |url=https://www.nfl.com/news/aaron-rodgers-collarbone-still-not-completely-healed-0ap3000000893627 |url-status=live |archive-url=https://web.archive.org/web/20171223065547/http://www.nfl.com/news/story/0ap3000000893627/article/aaron-rodgers-collarbone-still-not-completely-healed |archive-date=December 23, 2017 |access-date=December 23, 2017 |website=NFL.com |publisher=National Football League}}</ref> He be ranked No. 10 by ein fellow players on de ''NFL Top 100'' Players of 2018.<ref>{{Cite web |title=2018 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201104205316/https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |archive-date=November 4, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2018 ====
[[File:Rodgersthrowing2018redskins.jpg|thumb|Rodgers dey throw a pass insyd 2018]]
On August 29, 2018, Rodgers sign a four-year extension plus de Packers worth $134 million featuring a $57.5 million signing bonus.<ref>{{Cite web |last=Siegle |first=Evan |date=August 29, 2018 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |url-status=live |archive-url=https://web.archive.org/web/20180830044455/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |archive-date=August 30, 2018 |access-date=August 29, 2018 |website=packers.com}}</ref><ref>{{Cite web |last=Teope |first=Herbie |date=August 29, 2018 |title=Aaron Rodgers agrees to 4-year, $134M extension |url=http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |url-status=dead |archive-url=https://web.archive.org/web/20180830005310/http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |archive-date=August 30, 2018 |access-date=August 29, 2018 |publisher=National Football League}}</ref>
During ''Sunday Night Football'' against de Bears insyd Week 1, Rodgers lef de game plus a knee injury buh he return insyd de third quarter. Down by 20 points, Rodgers fini plus 286 passing yards den three touchdowns, leading de Packers rally to a 24–23 win.<ref>{{Cite web |last=Bergman |first=Jeremy |date=September 9, 2018 |title=Rodgers helps Packers rally against Bears |url=https://www.nfl.com/news/aaron-rodgers-rallies-packers-to-improbable-win-0ap3000000960283 |url-status=live |archive-url=https://web.archive.org/web/20180910164829/http://www.nfl.com/news/story/0ap3000000960283/article/aaron-rodgers-rallies-packers-to-improbable-win |archive-date=September 10, 2018 |access-date=September 10, 2018 |publisher=National Football League}}</ref> Despite a nagging knee injury, Rodgers get at least 40 pass attempts insyd each of de next three games. Insyd de last of these, he throw ein first interception insyd 150 attempts.<ref>{{Cite web |date=September 30, 2018 |title=GAME RECAP: Bills fall on the road in Green Bay |url=https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |url-status=live |archive-url=https://web.archive.org/web/20181008214257/https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |archive-date=October 8, 2018 |access-date=December 17, 2018 |website=buffalobills.com}}</ref> Insyd Week 5, Rodgers pass for 442 yards (de second-best of ein career) den three touchdowns, buh sanso two fumbles, insyd a 31–23 loss to de Lions.<ref>{{Cite web |last=Owczarski |first=Jim |date=October 7, 2018 |title=Packers doomed by slow start, Mason Crosby's misses in loss to Lions |url=https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |url-status=live |archive-url=https://web.archive.org/web/20201109032148/https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |archive-date=November 9, 2020 |access-date=December 17, 2018 |website=USA Today}}</ref> Insyd de following game, a 33–30 victory over de 49ers, he get 425 passing yards den two passing touchdowns.<ref>{{Cite web |date=October 16, 2018 |title=Bloodied Aaron Rodgers leads Packers and Crosby to redemption over 49ers |url=https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |url-status=live |archive-url=https://web.archive.org/web/20181030035759/https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |archive-date=October 30, 2018 |access-date=October 29, 2018 |website=The Guardian |agency=Associated Press}}</ref>
Following de bye-week, despite a continuing knee injury,<ref>{{Cite news|last=Maske|first=Mark|date=October 16, 2018|title=Aaron Rodgers's knee isn't quite right. But he's still good enough to carry the Packers|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|url-status=live|access-date=December 6, 2019|archive-url=https://web.archive.org/web/20191207093807/https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|archive-date=December 7, 2019}}</ref> Rodgers get ein third consecutive week plus a 100+ quarterback rating,<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log (Games 5, 6, and 8) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231012655/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |archive-date=December 31, 2019 |access-date=December 5, 2019 |website=[[Pro Football Reference]]}}</ref> wich include 286 yards passing, no interceptions, den a go-ahead 40-yard touchdown pass to [[Marquez Valdes-Scantling]] insyd a 29–27 loss to de Los Angeles Rams.<ref>{{Cite web |last=Beacham |first=Greg |date=October 29, 2018 |title=Late fumble keeps Rams unbeaten with 29–27 win over Packers |url=https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |url-status=live |archive-url=https://web.archive.org/web/20181217202249/https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref>
Insyd Week 14, against de Falcons, Rodgers set an NFL record by converting ein 359th consecutive pass widout an interception, breaking Tom Brady ein previous record.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 9, 2018 |title=No picks for Packer: Rodgers sets no-INT mark |url=https://www.espn.com/nfl/story/_/id/25491996 |url-status=live |archive-url=https://web.archive.org/web/20181210123157/http://www.espn.com/nfl/story/_/id/25491996 |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=[[ESPN.com]]}}</ref> Insyd Week 15, against de Chicago Bears, Rodgers throw for 274 yards den an interception insyd a 24–17 loss. Rodgers ein record streak widout an interception end plus 402 pass attempts after he be intercepted by free safety [[Eddie Jackson (safety)|Eddie Jackson]].<ref>{{Cite web |last=Cohen |first=Jay |date=December 16, 2018 |title=Rodgers throws interception as Packers lose 24–17 to Bears |url=https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |url-status=live |archive-url=https://web.archive.org/web/20181217145036/https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref> During Week 16 against de Jets, Rodgers fini plus 442 passing yards, two passing touchdowns, den two rushing touchdowns. Trailing at one point by 15 points, Rodgers den de Packers win 44–38 insyd overtime.<ref>{{Cite web |date=December 23, 2018 |title=Rodgers leads Packers to wild 44–38 overtime win over Jets |url=https://www.espn.com/nfl/recap?gameId=401030870 |url-status=live |archive-url=https://web.archive.org/web/20190101002910/http://www.espn.com/nfl/recap?gameId=401030870 |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> He match ein own feat of achieving at least 400 passing yards, two passing touchdowns, deb two rushing touchdowns insyd a single game. De only oda time insyd NFL history wey na e occur be wen Rodgers accomplish am insyd 2011 against de Denver Broncos.<ref>{{Cite web |last=Kruse |first=Zach |date=December 24, 2018 |title=Packers QB Aaron Rodgers matches his own rare feat vs. Jets |url=https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |url-status=live |archive-url=https://web.archive.org/web/20190123071358/https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Packers Wire}}</ref>
On December 18, 2018, na dem name Rodgers to ein seventh Pro Bowl.<ref>{{Cite web |date=December 18, 2018 |title=NFL reveals rosters for 2019 Pro Bowl in Orlando |url=https://www.nfl.com/news/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando-0ap3000001001792 |url-status=live |archive-url=https://web.archive.org/web/20190108220211/http://www.nfl.com/news/story/0ap3000001001792/article/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando |archive-date=January 8, 2019 |access-date=January 1, 2019 |publisher=National Football League}}</ref> He decline de appearance secof injury wey na he be replaced by [[Russell Wilson]].<ref>{{Cite web |last=Fentress |first=Aaron |date=January 9, 2019 |title=Russell Wilson replaces Aaron Rodgers on NFC Pro Bowl team |url=https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |url-status=live |archive-url=https://web.archive.org/web/20190626144630/https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |archive-date=June 26, 2019 |access-date=June 26, 2019 |website=NBC Sports Northwest}}</ref>
Insyd de regular season finale against de Detroit Lions, Rodgers suffer a concussion early insyd de game wey he no go return.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 30, 2018 |title=Aaron Rodgers suffers concussion in Packers' regular season finale |url=https://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |url-status=live |archive-url=https://web.archive.org/web/20190101005826/http://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]]}}</ref> Na den then send am to de hospital to test for concussion symptoms.<ref name="2018conc">{{Cite web |last=Jones |first=Brian |date=December 31, 2018 |title=Aaron Rodgers sent to hospital after suffering concussion |url=https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |url-status=live |archive-url=https://web.archive.org/web/20220427185549/https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |archive-date=April 27, 2022 |access-date=January 1, 2019 |website=247 SPORTS}}</ref> Secof na de Packers already be eliminated from playoff contention, Rodgers answer questions about whether he for be playing, for fear of injury, by saying: "''That's just not the way I lead, and I'm super-competitive, and I want to be out there with the guys and I look forward to being out there."''<ref name="2018conc" /> Na dem later spot Rodgers at de Packers dema facility after de game.<ref name="2018conc" />
Rodgers fini de season plus 372 completions, 597 attempts, 4,442 passing yards, 25 passing touchdowns, two interceptions den a passer rating of 97.6.<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/ |access-date=January 8, 2026 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to setting de record for consecutive passes widout an interception during de season, Rodgers set NFL records for interception percentage for a season, plus only 0.335% of ein passes be intercepted, den for de amount of thrown away passes.<ref name="passintpfr">{{Cite web |title=NFL Pass Interception % Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20190102050903/https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |archive-date=January 2, 2019 |access-date=January 1, 2019 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |last=Smith |first=Michael David |date=December 3, 2018 |title=Aaron Rodgers avoids interceptions by throwing the ball away at a record rate |url=https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |url-status=live |archive-url=https://web.archive.org/web/20190807024232/https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |archive-date=August 7, 2019 |access-date=November 12, 2019 |website=ProFootballTalk}}</ref> Na dem rank am eighth by ein fellow players on de ''NFL Top 100'' Players of 2019.<ref>{{Cite web |title=2019 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112140727/https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2019 ====
[[File:Aaron_Rodgers_2019.jpg|right|thumb|Rodgers insyd a game against de Washington Redskins ]]
Rodgers start de 2019 season plus a new head coach insyd [[Matt LaFleur]] following de departure of Mike McCarthy.<ref>{{Cite web |last=Wilde |first=Jason |date=September 17, 2019 |title=Believing offensive success is 'close,' Matt LaFleur and Aaron Rodgers focus on making more plays |url=https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |url-status=live |archive-url=https://web.archive.org/web/20190927192039/https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=madison.com}}</ref> De Packers offense rely less on Rodgers ein trademark passes den more on heavy formations den play-action throws to take advantage of running back [[Aaron Jones (running back)|Aaron Jones]].<ref>{{Cite web |last=Mays |first=Robert |date=January 17, 2020 |title=The Incalculable Legacy of Aaron Rodgers |url=https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |url-status=live |archive-url=https://web.archive.org/web/20200409091343/https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |archive-date=April 9, 2020 |access-date=April 7, 2020 |website=The Ringer |language=en}}</ref>
Rodgers help lead de Packers to a 3–0 start plus victories over de Bears, Vikings, den Broncos.<ref>{{Cite web |last=Wilner |first=Barry |date=September 6, 2019 |title=Packers' D, Aaron Rodgers beat Bears 10–3 in opener |url=https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |url-status=live |archive-url=https://web.archive.org/web/20190927192201/https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref><ref>{{Cite web |date=September 15, 2019 |title=Packers ride Rodgers' hot start to 21–16 win over Vikings |url=https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |url-status=dead |archive-url=https://web.archive.org/web/20190927192237/https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |publisher=WBAY |agency=Associated Press}}</ref><ref>{{Cite web |last=Jenkins |first=Keith |date=September 22, 2019 |title=Packers remain unbeaten with 27–16 win over Broncos |url=https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |url-status=live |archive-url=https://web.archive.org/web/20190927193720/https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref> Insyd Week 4, against de Eagles on ''Thursday Night Football'', he get 422 passing yards den two passing touchdowns, buh he sanso throw de game-ending interception as de Packers be handed dema first loss of de season by a score of 34–27.<ref>{{Cite web |date=September 27, 2019 |title=Eagles pick off Aaron Rodgers' late pass to beat Packers |url=https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |url-status=live |archive-url=https://web.archive.org/web/20190927063930/https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=Los Angeles Times |agency=Associated Press}}</ref> Insyd Week 7, against de Raiders, Rodgers post ein first-ever game plus a perfect passer rating of 158.3, de first quarterback insyd team history to do so.<ref>{{Cite web |last=Joseph |first=Andrew |date=October 20, 2019 |title=The Packers players were so pumped to find out Aaron Rodgers had a perfect passer rating |url=https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |url-status=live |archive-url=https://web.archive.org/web/20191021004107/https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |archive-date=October 21, 2019 |access-date=October 20, 2019 |website=USA Today}}</ref> He plete 25-of-31 passes for 429 yards den five touchdowns insyd de 42–24 victory.<ref>{{Cite web |last=Kruse |first=Zach |date=October 20, 2019 |title=Perfection: Aaron Rodgers finishes with perfect passer rating vs. Raiders |url=https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |url-status=live |archive-url=https://web.archive.org/web/20191020214833/https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |archive-date=October 20, 2019 |access-date=October 20, 2019 |website=PackersWire}}</ref> Na dem name am de NFC Offensive Player of de Week for ein performance.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 23, 2019 |title=Aaron Rodgers, Jacoby Brissett among Players of the Week |url=https://www.nfl.com/news/aaron-rodgers-jacoby-brissett-among-players-of-the-week-0ap3000001068643 |url-status=live |archive-url=https://web.archive.org/web/20191023124430/http://www.nfl.com/news/story/0ap3000001068643/article/aaron-rodgers-jacoby-brissett-among-players-of-the-week |archive-date=October 23, 2019 |access-date=October 23, 2019 |publisher=National Football League}}</ref> Insyd Week 17, against de Lions, Rodgers help lead de team to a 23–20 comeback win. As a result of de victory, de Packers secure a first round bye insyd de playoffs.<ref>{{Cite web |date=December 29, 2019 |title=Packers barely beat Lions 23–20 to earn first-round bye |url=https://www.espn.com/nfl/recap?gameId=401127983 |url-status=live |archive-url=https://web.archive.org/web/20220415135127/https://www.espn.com/nfl/recap?gameId=401127983 |archive-date=April 15, 2022 |access-date=December 29, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers fini de 2019 season plus 4,002 passing yards, 26 passing touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2019 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |url-status=live |archive-url=https://web.archive.org/web/20191231012649/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |archive-date=December 31, 2019 |access-date=December 31, 2019 |website=[[Pro Football Reference]]}}</ref>
Insyd de Divisional Round of de playoffs against de Seahawks, Rodgers plete 16 passes on 27 attempts wey he throw for 243 yards den two touchdowns during de 28–23 win.<ref>{{Cite web |date=January 12, 2020 |title=Packers hold off Seahawks 28–23 to reach NFC title game |url=https://www.espn.com/nfl/recap?gameId=401131042 |url-status=live |archive-url=https://web.archive.org/web/20200417042143/https://www.espn.com/nfl/recap?gameId=401131042 |archive-date=April 17, 2020 |access-date=January 13, 2020 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd de NFC Championship Game against de 49ers, Rodgers plete 31 passes on 39 attempts wey he throw for 326 yards den two touchdowns, buh he sanso throw two interceptions, wey dey include one to [[Richard Sherman (American football)|Richard Sherman]] insyd de final two minutes of de game as de Packers loose 37–20.<ref>{{Cite web |last=Wagner-McGough |first=Sean |date=January 19, 2020 |title=Packers suffer system-wide failure in ugly NFC Championship loss as clock ticks on the Aaron Rodgers era |url=https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |url-status=live |archive-url=https://web.archive.org/web/20200121163627/https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |archive-date=January 21, 2020 |access-date=January 20, 2020 |website=CBS Sports}}</ref> De loss mark Rodgers ein third consecutive NFC Championship loss (a streak wey go extend to four de following season).<ref name="Clunker">{{Cite web |last=Reischel |first=Rob |date=January 19, 2020 |title=Green Bay Packers' Aaron Rodgers Has Another NFC Championship Game Clunker |url=https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |url-status=live |archive-url=https://web.archive.org/web/20200120124354/https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |archive-date=January 20, 2020 |access-date=January 22, 2020 |website=Forbes}}</ref> Na dem rank am 16th by ein fellow players on de ''NFL Top 100'' Players of 2020.<ref>{{Cite web |title=2020 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200015/https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2020: Third MVP ====
Prior to a Week 5 bye, Rodgers help lead de Packers to a four-game winning streak to start de 2020 season.<ref>{{Cite web |date=October 7, 2020 |title=Packers head into their Week 5 bye |url=https://www.packers.com/news/packers-head-into-their-week-5-bye |url-status=live |archive-url=https://web.archive.org/web/20211115190601/https://www.packers.com/news/packers-head-into-their-week-5-bye |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=packers.com |language=en-US}}</ref> That winning streak go end insyd Week 6 against de Buccaneers, insyd wich Rodgers throw for 160 yards den two interceptions, wey dey include a pick-six (de third of ein professional career), during de 38–10 loss.<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – October 18th, 2020 |url=https://www.pro-football-reference.com/boxscores/202010180tam.htm |url-status=live |archive-url=https://web.archive.org/web/20201019130703/https://www.pro-football-reference.com/boxscores/202010180tam.htm |archive-date=October 19, 2020 |access-date=October 22, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> After a 3–2 stretch give de team, Rodgers throw for 211 yards den four touchdowns insyd a 41–25 victory over de Bears insyd Week 12. During de game, he cam be de 11th player insyd NFL history to eclipse 50,000 career passing yards, achieving de milestone on a 39-yard touchdown pass to tight end [[Robert Tonyan]] midway thru de third quarter.<ref>{{Cite magazine|last=Huber|first=Bill|date=November 29, 2020|title=Rodgers Makes History with 50,000-Yard Milestone|url=https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|url-status=live|archive-url=https://web.archive.org/web/20201130035319/https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|archive-date=November 30, 2020|access-date=November 30, 2020|magazine=Sports Illustrated}}</ref> In Week 13 against de Eagles, Rodgers throw for 295 yards den three touchdowns during de 30–16 win. Rodgers ein third touchdown pass of de game be to wide receiver [[Davante Adams]] wey na e be ein 400th career touchdown pass.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – December 6th, 2020 |url=https://www.pro-football-reference.com/boxscores/202012060gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20201125163729/https://www.pro-football-reference.com/boxscores/202012060gnb.htm |archive-date=November 25, 2020 |access-date=December 8, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Na dem name Rodgers de NFC Offensive Player of de Week for ein performance insyd Week 13.<ref>{{Cite web |last=Gordon |first=Grant |date=December 9, 2020 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |url-status=live |archive-url=https://web.archive.org/web/20201209165050/https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |archive-date=December 9, 2020 |access-date=December 10, 2020 |publisher=National Football League |language=en-US}}</ref> On December 21, 2020, na dem select am for de 2021 Pro Bowl.<ref>{{Cite web |date=December 21, 2020 |title=NFL reveals complete AFC, NFC rosters for 2021 Pro Bowl |url=https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |url-status=live |archive-url=https://web.archive.org/web/20201222000525/https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |archive-date=December 22, 2020 |access-date=December 21, 2020 |publisher=National Football League}}</ref> N dem name Rodgers de NFC Offensive Player of de Month for ein performance insyd December after passing for 15 touchdowns den one interception insyd five victories for de Packers.<ref>{{Cite web |last=Gordon |first=Grant |date=January 7, 2021 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen among Players of the Month |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20210107133506/https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |archive-date=January 7, 2021 |access-date=January 7, 2021 |publisher=National Football League}}</ref>
Overall, Rodgers fini de 2020 regular season plus 4,299 passing yards, 48 passing touchdowns, den five interceptions. Ein passing touchdowns total set a new franchise record.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> He get seven total games plus four passing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2020 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |url-status=live |archive-url=https://web.archive.org/web/20210109144744/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |archive-date=January 9, 2021 |access-date=January 7, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> He lead de league insyd numerous statistical categories, wey dey include completion percentage, touchdown passes, den passer rating.<ref>{{Cite web |last=Kruse |first=Zach |date=January 4, 2021 |title=Packers QB Aaron Rodgers led NFL in all these statistical categories in 2020 |url=https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |url-status=live |archive-url=https://web.archive.org/web/20210104150141/https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |archive-date=January 4, 2021 |access-date=January 7, 2021 |website=Packers Wire |language=en-US}}</ref> On January 8, 2021, he make de 2020 All-Pro Team first-team.<ref>{{Cite web |date=January 8, 2021 |title=2020 NFL All-Pro Team Roster |url=https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |url-status=live |archive-url=https://web.archive.org/web/20210108171953/https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |archive-date=January 8, 2021 |access-date=January 8, 2021 |work=Associated Press News}}</ref> De Pro Football Writers of America name am de NFL MVP.<ref>{{Cite web |last=Werner |first=Barry |date=January 21, 2021 |title=Aaron Rodgers earns PFWA NFL MVP honors |url=https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |url-status=live |archive-url=https://web.archive.org/web/20210131171403/https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |archive-date=January 31, 2021 |access-date=January 24, 2021 |website=Yahoo! Sports}}</ref>
De Packers fini plus a 13–3 record, dem win de NFC North, wey dem earn a first-round bye for de NFC playoffs.<ref>{{Cite web |title=2020 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2020/index.htm |url-status=live |archive-url=https://web.archive.org/web/20211115190600/https://www.pro-football-reference.com/years/2020/index.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de Divisional Round of de playoffs against de Rams, Rodgers throw for 296 yards den two touchdowns wey he sanso rush for anoda touchdown during de 32–18 win.<ref>{{Cite web |title=Divisional Round – Los Angeles Rams at Green Bay Packers – January 16th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210118220025/https://www.pro-football-reference.com/boxscores/202101160gnb.htm |archive-date=January 18, 2021 |access-date=January 20, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de NFC Championship against de Buccaneers, Rodgers throw for 346 yards den three touchdowns, buh he sanso throw an interception wey na he be sacked five times while he be constantly pressured during de 31–26 loss.<ref name="mcatee_01242021">{{Cite news|last=McAtee|first=Riley|date=January 24, 2021|title=The Packers' Championship-Game Curse Continues. Will It Cost Them Aaron Rodgers?|work=The Ringer|url=https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125040540/https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|archive-date=January 25, 2021}}</ref><ref>{{Cite news|last=Hoffman|first=Benjamin|date=January 24, 2021|title=What We Learned From the N.F.L.'s Conference Championships|work=The New York Times|url=https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125041821/https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|archive-date=January 25, 2021}}</ref><ref name="demovsky_01242021">{{Cite web |last=Demovsky |first=Rob |date=January 24, 2021 |title=Aaron Rodgers uncertain about future with Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20210125195535/https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |archive-date=January 25, 2021 |access-date=January 25, 2021 |website=[[ESPN.com]]}}</ref> Rodgers fall to 1–4 insyd conference championship games, becoming de first quarterback insyd NFL history to loose four in a row.<ref name="mcatee_01242021" /><ref name="demovsky_01242021" /><ref>{{Cite web |title=NFC Championship – Tampa Bay Buccaneers at Green Bay Packers – January 24th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101240gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210129001224/https://www.pro-football-reference.com/boxscores/202101240gnb.htm |archive-date=January 29, 2021 |access-date=January 31, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> After de season, he win de AP Most Valuable Player Award<ref>{{Cite web |last=Shook |first=Nick |date=February 6, 2021 |title=Packers QB Aaron Rodgers named 2020 AP NFL Most Valuable Player |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |url-status=live |archive-url=https://web.archive.org/web/20210207034518/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |archive-date=February 7, 2021 |access-date=February 6, 2021 |publisher=National Football League}}</ref> as well as de FedEx Air Player of de Year.<ref>{{Cite web |title=FedEx Air and Ground Players of the Year |url=https://www.nfl.com/voting/air-and-ground/player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20210125192004/https://www.nfl.com/voting/air-and-ground/player-of-the-year |archive-date=January 25, 2021 |access-date=January 25, 2021 |publisher=National Football League}}</ref> Na dem rank am 3rd by ein fellow players on de ''NFL Top 100'' Players of 2021.<ref>{{Cite web |title=2021 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200023/https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2021: Fourth MVP ====
[[File:Aaron_Rodgers_Packers_OCT2021_(cropped).jpg|right|thumb|Rodgers insyd 2021]]
Rodgers ein 2021 season get a rough start, as he plete 15 of 28 passes for 133 yards den two interceptions as Green Bay loose 38–3 to de Saints at TIAA Bank Field.<ref>{{Cite web |last=Benjamin |first=Cody |date=September 12, 2021 |title=Packers bench Aaron Rodgers for Jordan Love as Jameis Winston torches Green Bay in Week 1 |url=https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |url-status=live |archive-url=https://web.archive.org/web/20210913012242/https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |archive-date=September 13, 2021 |access-date=September 13, 2021 |website=CBS Sports |language=en}}</ref> Na dem pull am insyd de fourth quarter for [[Jordan Love]] as na ein chance of a comeback be all buh eliminated.<ref>{{Cite web |last=Polacek |first=Scott |date=September 12, 2021 |title=Packers' Aaron Rodgers Pulled for Jordan Love amid Blowout by Jameis Winston, Saints |url=https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |url-status=live |archive-url=https://web.archive.org/web/20211021021121/https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |archive-date=October 21, 2021 |access-date=October 21, 2021 |website=Bleacher Report |language=en}}</ref> However, Rodgers dem de Packers recover, going on a seven-game winning streak following de loss to New Orleans.<ref>{{Cite web |last1=Hodkiewicz |first1=Wes |last2=Spofford |first2=Mike |date=October 28, 2021 |title=Late interception wins it for Packers, 24–21 over Cardinals |url=https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |url-status=live |archive-url=https://web.archive.org/web/20211030160810/https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |archive-date=October 30, 2021 |access-date=October 30, 2021 |website=packers.com |language=en-US}}</ref>
Insyd Week 6, Rodgers seal a 24–14 victory against de Bears plus a six-yard touchdown run with 4:34 to go insyd de fourth quarter. During ein celebration, he yell at de Chicago crowd, "''All my f***ing life I own you! I still own you!"''<ref>{{cite web |last1=Demovsky |first1=Rob |date=October 17, 2021 |title=Packers QB Aaron Rodgers taunts jeering Bears fans after game-clinching TD run: 'I still own you' |url=https://www.espn.com/nfl/story/_/id/32419669/packers-qb-aaron-rodgers-taunts-jeering-bears-fans-game-clinching-td-run-own-you |access-date=September 3, 2025 |website=ESPN.com |publisher=ESPN}}</ref> Na de utterance be heavily discussed insyd ein aftermath, den two months later- wen Rodgers play de second game against Chicago- he state say na he get no regrets for making de comment.<ref>{{cite web |last1=Goodbread |first1=Chase |date=December 9, 2021 |title=Packers QB Aaron Rodgers has no regrets for saying 'I own you' to Bears fan |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-has-no-regrets-for-saying-i-own-you-to-bears-fan |access-date=September 3, 2025 |website=NFL.com |publisher=NFL}}</ref>
Following a positive test for [[COVID-19]], na dem place Rodgers on de COVID-19 reserve list on November 3.<ref>{{Cite web |date=November 3, 2021 |title=Packers place QB Aaron Rodgers on reserve/COVID-19 list |url=https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211107032353/https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |archive-date=November 7, 2021 |access-date=November 15, 2021 |website=Packers.com}}</ref> He miss 10 days per de league ein COVID-19 policies for unvaccinated players, wey dey include a game against de Chiefs.<ref>{{Cite web |last=Shook |first=Nick |date=November 3, 2021 |title=Packers QB Aaron Rodgers tests positive for COVID-19, will not play in Week 9 versus Chiefs |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |url-status=live |archive-url=https://web.archive.org/web/20211103152721/https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |archive-date=November 3, 2021 |access-date=November 3, 2021 |publisher=National Football League}}</ref> Despite answering "''Yeah, I'm immunized''" wen dem biz am during de preseason if na he be vaccinated against COVID-19, na he no actually receive a vaccination. Instead, he receive homeopathic treatment from ein personal doctor. While unvaccinated, he commit multiple violations of NFL COVID-19 protocols for unvaccinated players, wey dey include attending parties plus teammates while he no dey use PPE den dey appear unmasked at multiple postgame press conferences.<ref>{{Cite news|last=Jenkins|first=Sally|date=November 4, 2021|title=Aaron Rodgers is entitled to stay unvaccinated. He's not entitled to lie about it|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211105053620/https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|archive-date=November 5, 2021}}</ref><ref>{{Cite web |last=Shpigel |first=Ben |date=November 3, 2021 |title=Aaron Rodgers Out After Positive Coronavirus Test |url=https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |url-status=live |archive-url=https://web.archive.org/web/20211105230713/https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |archive-date=November 5, 2021 |access-date=November 6, 2021 |website=[[The New York Times]]}}</ref><ref>{{Cite news|last=Maske|first=Mark|date=November 3, 2021|title=Aaron Rodgers tests positive for coronavirus, is considered unvaccinated under NFL rules|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211103182339/https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|archive-date=November 3, 2021}}</ref><ref name="Paras">{{Cite web |last=Paras |first=Matthew |date=November 8, 2021 |title=State Farm backs Rodgers despite vaccine controversy |url=https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |url-status=live |archive-url=https://web.archive.org/web/20211110054603/https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=The Washington Times |language=en-US}}</ref><ref>{{Cite web |last=Florio |first=Mike |date=November 6, 2021 |title=Aaron Rodgers consulted with Joe Rogan, has taken Ivermectin |url=https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |url-status=live |archive-url=https://web.archive.org/web/20211110054606/https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=ProFootballTalk |language=en-US}}</ref> After a review, na dem fine am $14,650 for violations of de agreed protocols wey na ein team be fined $300,000.<ref name="demosky1">{{Cite web |last=Demovsky |first=Rob |date=November 10, 2021 |title=Green Bay Packers, Aaron Rodgers, Allen Lazard fined for COVID-19 protocol violations, source says |url=https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |url-status=live |archive-url=https://web.archive.org/web/20220417022230/https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |archive-date=April 17, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]]}}</ref><ref name="gordon1">{{Cite web |last=Gordon |first=Grant |date=November 9, 2021 |title=Packers fined $300K, Aaron Rodgers, Allen Lazard fined $14K for violation of COVID protocols |url=https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |url-status=live |archive-url=https://web.archive.org/web/20220415084129/https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |archive-date=April 15, 2022 |access-date=January 23, 2022 |publisher=National Football League}}</ref>
Na Rodgers be activated off de reserve/COVID-19 list on November 13, wey he return to play de next day against de Seahawks, a game de Packers win 17–0.<ref>{{Cite web |date=November 13, 2021 |title=Packers activate QB Aaron Rodgers off reserve/COVID-19 list |url=https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211113210134/https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |archive-date=November 13, 2021 |access-date=November 13, 2021 |website=Packers.com}}</ref> Insyd Week 15, Rodgers throw for 268 yards den three touchdowns insyd a 31–30 win over de Ravens, wich clinch de NFC North title give de Packers for a third consecutive season wey e earn am NFC Offensive Player of de Week honors.<ref>{{Cite web |last=Gordon |first=Grant |date=December 22, 2021 |title=Packers QB Aaron Rodgers, Chiefs TE Travis Kelce lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |url-status=live |archive-url=https://web.archive.org/web/20220113012121/https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |archive-date=January 13, 2022 |access-date=January 17, 2022 |publisher=National Football League}}</ref> On December 23, 2021, na dem name Rodgers to ein tenth Pro Bowl.<ref>{{Cite web |date=December 22, 2021 |title=2022 NFL Pro Bowl rosters for AFC, NFC: Bucs' Tom Brady gets record 15th selection |url=https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |url-status=live |archive-url=https://web.archive.org/web/20211228200849/https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |archive-date=December 28, 2021 |access-date=December 24, 2021 |website=[[ESPN.com]]}}</ref>
Insyd a Week 16 victory over de Browns, Rodgers throw ein 443rd career touchdown pass, passing Brett Favre for de most all-time career touchdown passes insyd Packers history.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 25, 2021 |title=Rodgers tops Favre's Pack record for TD passes |url=https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |url-status=live |archive-url=https://web.archive.org/web/20211227221346/https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |archive-date=December 27, 2021 |access-date=January 17, 2022 |website=[[ESPN.com]] |language=en}}</ref> For ein play insyd de month of December, Rodgers earn NFC Offensive Player of de Month honors.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=December 30, 2021 |title=For 10th time, Packers QB Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20220104191144/https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month#:~:text=GREEN%2520BAY%2520%25E2%2580%2593%2520Following%2520a%2520dominant,10th%2520time%2520in%2520his%2520career |archive-date=January 4, 2022 |access-date=January 17, 2022 |website=Packers.com |language=en-US}}</ref> He fini de 2021 season plus 4,115 passing yards, 37 touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2021 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2021/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> On January 14, 2022, Rodgers earn ein fourth career first-team All-Pro selection.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=January 14, 2022 |title=Three Packers players named first-team All-Pro |url=https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |url-status=live |archive-url=https://web.archive.org/web/20220116105423/https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |archive-date=January 16, 2022 |access-date=January 14, 2022 |website=packers.com}}</ref>
Insyd de Divisional Round against de 49ers, Rodgers throw for 225 yards, buh a poor performance by de special teams unit haunt de Packers, dem loose 13–10. Na e be Rodgers ein fourth loss insyd as many games to de 49ers insyd de postseason den Rodgers ein second home divisional loss.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> He sanso fail to notice a wide–open Allen Lazard (den [[Equanimeous St. Brown]]) on ein last throw of de game, instead targeting Davante Adams insyd double coverage for a Hail Mary attempt.<ref>{{Cite web |last=Farrar |first=Doug |title=What Aaron Rodgers missed on the play that could have saved the Packers' season |url=https://touchdownwire.usatoday.com/story/sports/nfl/touchdown/2022/01/23/aaron-rodgers-davante-adams-allen-lazard-2021-nfl-playoffs/80662791007/ |access-date=2026-08-06 |website=Touchdown Wire |language=en-US}}</ref> After de season, Rodgers win de AP NFL Most Valuable Player Award for de second consecutive season den de fourth time overall.<ref>{{Cite web |last=Shook |first=Nick |date=February 10, 2022 |title=Packers QB Aaron Rodgers named 2021 AP NFL MVP |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20220425153314/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |archive-date=April 25, 2022 |access-date=February 11, 2022 |publisher=National Football League}}</ref> Rodgers cam be de fifth player to win consecutive MVPs den first since Peyton Manning between 2008 den 2009.<ref>{{Cite web |last=Sutelan |first=Edward |date=February 10, 2022 |title=NFL MVP back-to-back winners: Aaron Rodgers set to join rare company in NFL history |url=https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |url-status=live |archive-url=https://web.archive.org/web/20220413074439/https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |archive-date=April 13, 2022 |access-date=February 20, 2022 |website=sportingnews.com |language=en}}</ref> Rodgers join Manning as de only players insyd NFL history to win at least four MVPs.<ref>{{Cite web |last=Spofford |first=Mike |date=February 10, 2022 |title=Packers QB Aaron Rodgers wins fourth NFL MVP award |url=https://www.packers.com/news/packers-qb-aaron-rodgers-wins-fourth-nfl-mvp-award |access-date=January 19, 2023 |website=packers.com |language=en-US}}</ref> Na dem rank am third by ein fellow players on de ''NFL Top 100'' Players of 2022.<ref>{{Cite web |title=2022 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2022-nfl-top-100.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2022 ====
[[File:Aaron_Rodgers_OCT2022_(cropped).jpg|thumb|Rodgers insyd 2022]]
[[File:Aaron_Rodgers_Packers_vs_Commanders_OCT2022.jpg|left|thumb|Rodgers dey play against de Washington Commanders insyd 2022]]
On March 8, Rodgers confirm say he go return den play give de Packers for de 2022 season after speculations dat Rodgers go fi retire anaa demand a trade to anoda team.<ref>{{Cite web |last=Demovsky |first=Rob |date=March 8, 2021 |title=QB Aaron Rodgers returning to play for Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220411070329/https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |archive-date=April 11, 2022 |access-date=March 9, 2021 |website=[[ESPN.com]]}}</ref> Na der be reports say Rodgers den de Packers agree to terms on a 4-year, $200 million contract extension wey go make am de highest-paid player insyd NFL history, buh Rodgers deny those reports on Twitter, wey he state say de numbers on de proposed contract be inaccurate, den dat he be yet to sign such a contract. He confirm, however, say he go return to play ein 18th NFL season plus de Packers.<ref>{{Cite web |date=March 15, 2022 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |url-status=live |archive-url=https://web.archive.org/web/20220404205504/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |archive-date=April 4, 2022 |access-date=April 27, 2022 |website=Packers.com}}</ref>
On March 16, he officially sign ein contract extension. Na de final terms of de contract be a 3-year contract (wich replace de final year of ein existing contract) worth $150.8 million, plus $101.5 million guaranteed. De new contract make am de highest paid player insyd North American sports history on an annual basis, surpassing de NBA ein [[Damian Lillard]] ein $49 million per annum contract.<ref>{{Cite web |last=Roscher |first=Liz |date=March 15, 2022 |title=Aaron Rodgers' Packers contract is reportedly official, and the numbers are staggering |url=https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |url-status=live |archive-url=https://web.archive.org/web/20220427025539/https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |archive-date=April 27, 2022 |access-date=March 17, 2022 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd de season opener against de Vikings, Rodgers throw for 195 yards den an interception insyd de 23–7 loss.<ref>{{Cite web |last=Demovsky |first=Rob |date=September 12, 2022 |title=Following loss to Minnesota Vikings, QB Aaron Rodgers says Green Bay Packers 'hurting ourselves' with 'too many mental mistakes' |url=https://www.espn.com/nfl/story/_/id/34575984/following-loss-minnesota-vikings-qb-aaron-rodgers-says-green-bay-packers-hurting-ourselves-too-many-mental-mistakes |access-date=September 12, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{cite web |last=Huber |first=Bill |date=September 12, 2022 |title=Mental Mistakes Frustrate Rodgers in Packers' Loss at Vikings |url=https://www.si.com/nfl/packers/gameday/mental-mistakes-frustrate-rodgers-in-packers-loss-at-vikings |access-date=July 1, 2025 |website=SI.com}}</ref> Insyd Week 4 against de Patriots, Rodgers throw for 251 yards den two touchdowns, buh he sanso throw ein fourth career pick-six to [[Jack Jones (American football)|Jack Jones]] insyd de 27–24 overtime win.<ref>{{Cite web |last=Patra |first=Kevin |date=October 3, 2022 |title=Aaron Rodgers on Packers' OT win over Patriots: 'This way of winning, I don't think, is sustainable' |url=https://www.nfl.com/news/aaron-rodgers-packers-patriots-this-way-of-winning-not-sustainable |access-date=October 13, 2022 |publisher=National Football League}}</ref> Insyd Week 5 at London, Rodgers throw for 222 yards den two touchdowns insyd an upset loss against de Giants.<ref>{{Cite news|last=Larrison|first=Ryan|date=October 9, 2022|title=Aaron Rodgers threw two touchdowns in a loss at London|url=https://www.rotoballer.com/player-news/aaron-rodgers-throws-two-touchdowns-during-loss-in-london/1079701|access-date=October 10, 2022|website=rotoballer.com}}</ref> Insyd Week 8 against de Buffalo Bills on Sunday Night Football, Rodgers throw for 203 yards, two touchdowns den one interception as de Packers loose dema fourth consecutive game insyd de 27–17 defeat.<ref>{{Cite web |last=Patra |first=Kevin |date=October 31, 2022 |title=Aaron Rodgers on the Packers' 3–5 start |url=https://www.nfl.com/news/aaron-rodgers-packers-3-5-start-nobody-feels-sorry-for-us-bills |access-date=November 5, 2022 |publisher=National Football League |language=en-US}}</ref> De next week against de Lions, Rodgers throw for 291 yards, a touchdown, den three interceptions insyd de 15–9 loss. Na e be de first time since Week 15 of de 2017 season wey Rodgers throw three interceptions insyd a game.<ref>{{Cite web |date=November 6, 2022 |title=Aaron Rodgers throws 3 INTs, lets Lions beat Packers 15–9 |url=https://www.cbssports.com/nfl/news/aaron-rodgers-throws-3-ints-lets-lions-beat-packers-15-9/ |access-date=November 6, 2022 |website=CBSSports.com |language=en |agency=Associated Press}}</ref> Rodgers bounce back de following week against de Cowboys, completing 14-of-20 passes for 224 yards den three touchdowns insyd 31–28 overtime victory.<ref>{{Cite web |last=Bubel |first=Jennifer |date=November 13, 2022 |title=Dallas Cowboys vs. Green Bay Packers: Stats, Scores, Highlights |url=https://en.as.com/nfl/dallas-cowboys-vs-green-bay-packers-live-online-stats-scores-and-highlights-nfl-week-10-n/ |access-date=November 15, 2022 |website=AS USA |language=en-us}}</ref><ref>{{Cite web |date=November 13, 2022 |title=Rodgers rallies Packers past McCarthy's Cowboys 31–28 in OT |url=https://www.espn.com/nfl/recap/_/gameId/401437131 |access-date=November 15, 2022 |website=[[ESPN.com]] |language=en-us |agency=Associated Press}}</ref> Following a Week 11 loss to de Titans, Rodgers confirm na he dey play plus a broken thumb on ein throwing hand he suffer insyd Week 5.<ref>{{Cite web |last=Alper |first=Josh |date=November 23, 2022 |title=Aaron Rodgers says he's been playing with a broken thumb |url=https://profootballtalk.nbcsports.com/2022/11/23/aaron-rodgers-says-hes-been-playing-with-a-broken-thumb/ |access-date=December 2, 2022 |website=ProFootballTalk |language=en-US}}</ref><ref>{{Cite web |last=Thompson |first=Scott |date=November 23, 2022 |title=Packers' Aaron Rodgers admits playing through broken thumb since Week 5 |url=https://www.foxnews.com/sports/packers-aaron-rodgers-admits-playing-through-broken-thumb-since-week-5 |access-date=November 24, 2022 |publisher=Fox News}}</ref> A Week 12 loss to de Eagles lef de Packers plus a 4–8 record, buh na de team rally off four consecutive wins to get to 8–8 before de regular season finale.<ref>{{Cite web |title=Green Bay Packers 2022 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2022/gamelog/ |access-date=January 20, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> De Packers fini plus an 8–9 record wey he miss de postseason following a Week 18 loss to de Detroit Lions insyd a win-and-in scenario for Green Bay.<ref>{{Cite web |title=2022 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2022/index.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |date=January 9, 2023 |title=How the Lions beat the Packers: Detroit eliminates rival Green Bay from playoff contention, Seahawks clinch final spot |url=https://www.nytimes.com/athletic/live-blogs/lions-packers-playoff-picture-seeding/Vj6r382oO6N1/ |access-date=January 20, 2023 |website=The Athletic |language=en}}</ref> After de game, Rodgers put ein arm around long-time teammate Cobb, wey he look solemnly around Lambeau Field before de two walked down de tunnel togeda. Sam suspected say dis indicate say Rodgers play ein last game give de Packers.<ref>{{Cite web |last=McKenna |first=Henry |date=January 9, 2023 |title=Has Packers legend Aaron Rodgers walked off Lambeau Field for the last time? |url=https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |url-status=live |archive-url=https://web.archive.org/web/20230109203158/https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |archive-date=January 9, 2023 |access-date=April 5, 2026 |website=[[Fox Sports]] |publisher=[[Fox Corporation]]}}</ref>
Rodgers fini de 2022 season plus 3,695 passing yards, 26 touchdowns, den 12 interceptions, wich mark de most for Rodgers insyd a single season since 2008.<ref>{{Cite web |title=Aaron Rodgers 2022 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2022/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |last=Kruse |first=Zach |date=January 9, 2023 |title=Aaron Rodgers throws interception on final pass of disappointing 2022 season |url=https://news.yahoo.com/aaron-rodgers-throws-interception-final-144926791.html |access-date=January 19, 2023 |publisher=Yahoo! News |language=en-US}}</ref> Na dem rank am 51st by ein fellow players on de ''NFL Top 100'' Players of 2023.<ref>{{Cite web |title=2023 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2023-nfl-top-100.htm |access-date=January 20, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
=== New York Jets ===
==== 2023: Achilles injury ====
[[File:Rodgers_vs_Bills_2.jpg|right|thumb|Rodgers (white, #8) dey take a snap against de Bills, shortly before ein injury.]]
On April 26, 2023, Rodgers be traded to de Jets, along plus de Packers dema first den fifth-round selections insyd de 2023 NFL draft, in exchange for de Jets dema first, second (via Cleveland) den sixth-round selections insyd de 2023 draft den a conditional second-round selection (wich na go convert to a first if Rodgers play 65% of de offensive snaps insyd 2023, buh na e it no happen) insyd de 2024 NFL draft.<ref>{{Cite web |last=Allen |first=Eric |date=April 26, 2023 |title=OFFICIAL Jets Acquire QB Aaron Rodgers From Green Bay Packers |url=https://www.newyorkjets.com/news/jets-acquire-qb-aaron-rodgers-from-green-bay-packers |access-date=July 28, 2023 |website=NewYorkJets.com}}</ref> De move echo de career path of ein predecessor Brett Favre, wey similarly spend over fifteen years as quarterback of de Packers before he be traded to de Jets.<ref>{{Cite web |last=Kerr |first=Jeff |date=April 24, 2023 |title=Aaron Rodgers traded to Jets: Ex-Packers QB taking eerily similar path as Brett Favre in journey to New York |url=https://www.cbssports.com/nfl/news/aaron-rodgers-traded-to-jets-ex-packers-qb-taking-eerily-similar-path-as-brett-favre-in-journey-to-new-york/ |access-date=May 1, 2023 |website=CBS Sports}}</ref> Although [[Joe Namath]] grant Rodgers permission to wear ein retired No. 12 jersey, Rodgers announce say he go return to wearing de No. 8 jersey, wich na he wear thru out ein college career plus de California Golden Bears.<ref>{{Cite web |last=Riccette |first=Billy |date=April 26, 2023 |title=Aaron Rodgers on number change: 'To me, No. 12 is Broadway Joe' |url=https://sports.yahoo.com/aaron-rodgers-number-change-no-185505111.html |access-date=July 19, 2023 |website=Yahoo! Sports}}</ref> On July 26, 2023, Rodgers take a pay cut wey he agree to a rework contract plus de Jets.<ref>{{cite web |last1=Cimini |first1=Rich |date=July 26, 2023 |title=Aaron Rodgers signs reworked contract with Jets |url=https://www.espn.com/nfl/story/_/id/38075863/aaron-rodgers-agrees-reworked-contract-jets |access-date=July 26, 2023 |website=[[ESPN.com]]}}</ref>
Making ein Jets debut insyd Week 1 on ''Monday Night Football'' against de Bills at MetLife Stadium, Rodgers injure ein left ankle on just ein fourth offensive snap after he be sacked by Bills dema defensive end [[Leonard Floyd]]. Na dem help Rodgers off de field wey dem later cart am to de locker room for further evaluation.<ref>{{Cite web |last=Cimini |first=Rich |date=September 12, 2023 |title=Jets fear QB Aaron Rodgers suffered serious Achilles injury |url=https://www.espn.com/nfl/story/_/id/38381823/qb-aaron-rodgers-injures-ankle-opening-drive-new-york-jets-debut |access-date=September 12, 2023 |website=[[ESPN.com]] |language=en}}</ref> Rodgers ein backup [[Zach Wilson]] go on to lead de Jets to a 22–16 win insyd overtime.<ref>{{Cite web |last=Kownack |first=Bobby |date=September 11, 2023 |title=Jets QB Aaron Rodgers exits Monday's overtime win against Bills on first drive; ankle X-rays negative |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-ankle-questionable-to-return-to-monday-s-game-against-bill |access-date=September 12, 2023 |website=NFL.com |language=en-US}}</ref> De next day, na dem diagnose Rodgers plus an Achilles tendon rupture wey na dem later place am on injured reserve.<ref>{{Cite web |last=Dajani |first=Jordan |date=September 12, 2023 |title=Aaron Rodgers injury update: MRI reveals Jets QB suffered a complete tear of Achilles tendon |url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-update-mri-reveals-jets-qb-suffered-a-complete-tear-of-achilles-tendon/ |access-date=September 12, 2023 |website=CBS Sports |language=en}}</ref><ref>{{Cite web |last=Sullivan |first=Phil |date=September 12, 2023 |title=Jets Place Aaron Rodgers on Injured Reserve; Saleh Commits To Zach Wilson |url=https://www.jetnation.com/2023/09/13/jets-place-aaron-rodgers-on-injured-reserve-saleh-commits-to-zach-wilson/ |access-date=September 14, 2023 |website=JetNation.com}}</ref> Rodgers undergo surgery on September 13, plus Dr. [[Neal ElAttrache]] placing an internal brace insyd ein left Achilles plus de goal of a mid-January return at de earliest.<ref>{{Cite web |last1=Rapoport |first1=Ian |author-link1=Ian Rapoport |last2=Pelissero |first2=Tom |author-link2=Tom Pelissero |date=September 16, 2023 |title=Jets QB Aaron Rodgers aims for potential playoff return after innovative surgery on torn Achilles |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-aims-for-potential-playoff-return-after-innovative-surgery |access-date=September 17, 2023 |website=NFL.com}}</ref> On November 29, de New York Jets open de 21-day practice window for Rodgers. Limited insyd practice, na Rodgers be cleared for functional activity buh no contact.<ref>{{Cite web |last=Patra |first=Kevin |date=November 29, 2023 |title=Jets opening QB Aaron Rodgers' 21-day practice window |url=https://www.nfl.com/news/jets-opening-qb-aaron-rodgers-21-day-practice-window |access-date=November 30, 2023 |website=NFL.com |language=en-US}}</ref> He be activated off injured reserve on December 20, buh de Jets announce he no go san play dis season after dema Week 15 loss to de Dolphins dem mathematically eliminate dem from playoff contention.<ref>{{Cite web |last=Shook |first=Nick |date=December 20, 2023 |title=Jets to activate Aaron Rodgers off IR to allow QB to continue to practice with team |url=https://www.nfl.com/news/jets-to-activate-aaron-rodgers-off-ir-to-allow-qb-to-continue-to-practice-with-t |access-date=December 20, 2023 |website=NFL.com}}</ref><ref>{{cite web |last=Reyes |first=Lorenzo |date=December 20, 2023 |title=Aaron Rodgers' season is over, so why are the Jets activating him? |url=https://www.usatoday.com/story/sports/nfl/jets/2023/12/20/aaron-rodgers-comeback-jets-shut-down-achilles-tear/71825680007/ |access-date=July 24, 2024 |website=USA TODAY}}</ref> Despite missing most of de season, he be ranked 92nd by ein fellow players on de NFL Top 100 Players of 2024.<ref>{{cite web |last=Hetherington |first=Krissy |date=July 23, 2024 |title=Top 100 Players of 2024, Nos. 100–91: Aaron Rodgers falls to lowest ranking in his career |url=https://www.nfl.com/news/top-100-players-of-2024-nos-100-91-aaron-rodgers-trevor-lawrence |access-date=July 6, 2025 |website=NFL.com}}</ref>
==== 2024 ====
[[File:Aaron_Rodgers_Jets_vs_Titans_SEPT2024.png|thumb|Rodgers dey play against de Tennessee Titans at Nissan Stadium insyd 2024]]
After playing just four offensive snaps insyd ein first season plus de Jets secof an Achilles injury, Rodgers make ein return on ''Monday Night Football'' insyd Week 1 to kick off de 2024 campaign. Insyd ein highly anticipated return, Rodgers plete 13 of 21 passes for 167 yards, one touchdown den one interception insyd a 32–19 loss to de defending NFC champion San Francisco 49ers.<ref>{{Cite web |last=Patra |first=Kevin |date=September 9, 2024 |title=Aaron Rodgers on Jets' loss to 49ers: 'I can play better' |url=https://www.nfl.com/news/aaron-rodgers-on-jets-loss-to-49ers-i-can-play-better |access-date=September 10, 2024 |website=[[NFL.com]] |language=en}}</ref> Insyd de Jets dema home opener against de New England Patriots, Rodgers plete 27 of 35 passes for 281 yards den two touchdowns as de Jets cruise to a 24–3 victory.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=September 19, 2024 |title='Thursday Night Football' highlights: Aaron Rodgers, Jets dominate Patriots |url=https://www.nbcnews.com/news/sports/live-blog/patriots-vs-jets-live-updates-jacoby-brissett-takes-aaron-rodgers-new-rcna171577 |access-date=September 22, 2024 |website=NBC News}}</ref> Insyd Week 5 insyd London, Rodgers cam be de ninth quarterback insyd NFL history to reach 60,000 passing yards buh he tie ein career-high plus three interceptions, wey dey include a game-sealing pick plus under a minute left as de Jets loose 23–17 to de Vikings.<ref>{{Cite web |last=Cimini |first=Rich |date=October 6, 2024 |title=Aaron Rodgers 9th QB to pass for 60K yards, but 3 INTs doom Jets |url=https://www.espn.com/nfl/story/_/id/41642251/jets-aaron-rodgers-becomes-9th-qb-pass-60000-yards |access-date=October 6, 2024 |website=ESPN.com}}</ref> Jets head coach [[Robert Saleh]] unexpectedly be fired after de London loss, plus sam analysts dey perceive say na he no get along plus Rodgers.<ref>{{Cite web |last1=Li |first1=David K. |last2=Abdelkader |first2=Rima |date=October 8, 2024 |title=New York Jets fire coach Robert Saleh after 2–3 start and apparent tension with Aaron Rodgers |url=https://www.nbcnews.com/sports/nfl/jets-robert-saleh-fired-rcna174473 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref> Wen dem biz am about am on ''The Pat McAfee Show'', de quarterback firmly deny accusations say he get a role insyd Saleh ein termination.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=October 9, 2024 |title=Aaron Rodgers on accusations he wanted Jets coach Robert Saleh fired: 'Patently false' |url=https://www.nbcnews.com/sports/nfl/aaron-rodgers-robert-saleh-fired-rcna174701 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref>
Insyd Week 6, de Jets dema first game after Saleh ein termination, Rodgers throw for 294 yards den two touchdowns, wey dey include a 52-yard Hail Mary pass to [[Allen Lazard]] to close out de first half, ein fourth career such pass completion.<ref>{{Cite news|last=Waszak Jr.|first=Dennis|date=October 14, 2024|title=Jets' Aaron Rodgers throws a 52-yard Hail Mary to Allen Lazard to end the first half vs. Bills|url=https://apnews.com/article/jets-rodgers-hail-mary-lazard-49f7dbe5569749c60e9878cc7ea5d606|access-date=October 20, 2024|work=AP News}}</ref> However, anoda interception on de Jets dema final drive doomed dem as dem loose 23–20 to de Buffalo Bills.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=After 'weird' week, Rodgers and Jets can't overcome mistakes and missed chances in loss to Bills|url=https://apnews.com/article/jets-bills-rodgers-ulbrich-0a14afca36a55c2cbb0f9aa35c3a7855|access-date=October 15, 2024|work=AP News|date=October 14, 2024}}</ref> Following de loss, se Jets trade for [[Davante Adams]], plus whom Rodgers previously combine for over 600 receptions den 68 touchdowns during dema eight seasons togeda insyd Green Bay.<ref>{{Cite news|last1=Cimini|first1=Rich|last2=Fowler|first2=Jeremy|last3=Walder|first3=Seth|last4=Reid|first4=Jordan|last5=Gutierrez|first5=Paul|last6=Karabell|first6=Eric|date=October 15, 2024|title=How Davante Adams affects the Jets, Aaron Rodgers' playoff hopes|url=https://www.espn.com/nfl/story/_/id/41809450/new-york-jets-future-davante-adams-trade-las-vegas-raiders|access-date=October 15, 2024|work=ESPN}}</ref> However, de Jets continue to struggle, as Rodgers throw two interceptions wey he lead de offense to zero points insyd de second half of dema Week 7 matchup against de Steelers, losing dema fourth consecutive game.<ref>{{cite news|last=Cimini|first=Rich|title=Aaron Rodgers, Davante Adams reunion fails to spark Jets|url=https://www.espn.com/nfl/story/_/id/41917779/aaron-rodgers-davante-adams-reunion-fails-spark-jets-drop-4th-straight-vs-steelers|access-date=October 21, 2024|work=ESPN|date=October 21, 2024}}</ref> After a loss to de Patriots, Rodgers help de Jets snap dema five-game losing streak insyd Week 9 against de Houston Texans, throwing for 179 yards den three touchdowns insyd de second half after he be shutout insyd de first half as de Jets win 21–13.<ref>{{cite news|last=Fried|first=Justin|title=Aaron Rodgers saves NY Jets' season with vintage performance amidst fan revolt|url=https://thejetpress.com/aaron-rodgers-saves-ny-jets-season-vintage-performance-fan-revolt-01jbjvhkx6k7|access-date=October 31, 2024|work=The Jet Press|date=October 31, 2024}}</ref>
Insyd Week 11 against de Colts, Rodgers throw two touchdowns wey he lead de Jets to a season-high insyd points, buh na dem fall short insyd a 28–27 loss, dropping to 3–7.<ref>{{Cite web |last=Miller |first=Colin |date=November 19, 2024 |title=Jets' Aaron Rodgers Not a Fan of Reporter's 'Buzzword' After Another Loss |url=https://athlonsports.com/nfl/new-york-jets-aaron-rodgers-familiar-response-loss-indianapolis-colts-recap-shock-buzz-word |access-date=November 26, 2024 |website=Athlon Sports |language=en}}</ref> During dema bye week, na dem reveal say na Rodgers dey play thru hamstring, knee, den ankle injuries buh na he refuse to get scans done in fear of how severe dem go be.<ref>{{Cite web |last=McCarriston |first=Shanna |date=November 24, 2024 |title=Jets' Aaron Rodgers played through multiple injuries this season, resisted getting scans, per report |url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-played-through-multiple-injuries-this-season-resisted-getting-scans-per-report/ |access-date=November 26, 2024 |website=CBSSports.com |language=en}}</ref> Despite dis, he remain de starter following de bye week.<ref>{{cite news|last=Cimini|first=Rich|title=Jeff Ulbrich says Aaron Rodgers to remain Jets' starting QB|url=https://www.espn.com/nfl/story/_/id/42738131/jeff-ulbrich-says-aaron-rodgers-remain-jets-starting-qb|access-date=December 9, 2024|work=ESPN|date=December 2, 2024}}</ref> Entering Week 14, Rodgers hold an NFL-record 34-game drought widout a 300-yard passing performance, wich he break on December 8 against de Dolphins.<ref>{{cite news|last=Benjamin|first=Cody|title=Jets' Aaron Rodgers halts historic drought of 300-yard passing games in Week 14 loss to Dolphins|url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-halts-historic-drought-of-300-yard-passing-games-in-week-14-loss-to-dolphins/|access-date=December 9, 2024|work=CBS Sports|date=December 8, 2024}}</ref> Despite recording ein first 300-yard game insyd three years, de Jets fall 32–26 insyd overtime, eliminating dem from playoff contention.<ref>{{cite news|last=Cimini|first=Rich|title=Jets collapse again, extend postseason drought to 14 seasons|url=https://www.espn.com/nfl/story/_/id/42862200/jets-collapse-again-extend-postseason-drought-14-seasons|access-date=December 9, 2024|work=ESPN|date=December 8, 2024}}</ref> On January 5, 2025, Rodgers plete ein 500th touchdown pass to [[Tyler Conklin]] at MetLife Stadium against de Dolphins, becoming de fifth quarterback insyd NFL history plus 500 touchdown passes.<ref>{{cite news|last=Cimini|first=Rich|title=Jets QB Aaron Rodgers joins prestigious 500 touchdown club|url=https://www.espn.com/nfl/story/_/id/43300286/jets-qb-aaron-rodgers-joins-prestigious-500-touchdown-club|access-date=January 5, 2025|work=ESPN|date=January 5, 2025}}</ref> He fini de final game of de season plus 274 yards, a season-high four touchdowns, den an interception as de Jets win 32–20, finishing plus a record of 5–12.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=Rodgers throws a season-high 4 touchdown passes in possible final game as Jets top Dolphins 32–20|url=https://apnews.com/article/dolphins-jets-score-rodgers-8013b4de0ea591a84d721f5c4dd17111|access-date=January 5, 2025|work=Associated Press|date=January 5, 2025}}</ref> He fini de 2024 season plus 3,897 yards, 28 touchdowns, den 11 interceptions.<ref>{{Cite web |title=Aaron Rodgers 2024 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2024/ |access-date=January 15, 2025 |website=[[Pro Football Reference]] |language=en}}</ref>
On February 13, 2025, na de Jets announce dema intention to part ways plus Rodgers after two seasons.<ref>{{Cite web |last=Allen |first=Eric |date=February 13, 2025 |title=Jets to move on from Aaron Rodgers |url=https://www.newyorkjets.com/news/jets-moving-on-from-aaron-rodgers |access-date=February 13, 2025 |website=NewYorkJets.com |language=en-US}}</ref> Na Rodgers be released as a post-June 1 designation, allowing de Jets to split ein salary cap charges ($49 million) over two years. De Jets therefore keep am on de roster til March 12, de start of de 2025 NFL year, wen na dem officially released am.<ref>{{cite web |last=Cimini |first=Rich |date=February 13, 2025 |title=Jets announce split with Aaron Rodgers, wish him success |url=https://www.espn.com/nfl/story/_/id/43826969/jets-announce-split-aaron-rodgers-wish-success |accessdate=February 25, 2025}}</ref>
=== Pittsburgh Steelers ===
[[File:McCormickRodgersFrazier.jpg|thumb|Rodgers (middle) at Steelers training camp insyd 2025]]
==== 2025 ====
On June 6, 2025, de Pittsburgh Steelers agree to terms plus Rodgers on a one-year deal.<ref>{{Cite web |last=Varley |first=Teresa |date=June 5, 2025 |title=Steelers agree to terms with Rodgers |url=https://www.steelers.com/news/steelers-agree-to-terms-with-rodgers |access-date=June 6, 2025 |website=Steelers.com |language=en-US}}</ref> De following day, he officially sign ein one-year, $13.65 million contract, wich dey include $10 million guaranteed wey fi be worth up to $19.5 million plus incentives.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Sources: QB Rodgers with Steelers, signs one-year, $13.65M deal|url=https://www.espn.com/nfl/story/_/id/45470407/sources-qb-rodgers-steelers-signs-one-year-1365m-deal|access-date=June 7, 2025|work=ESPN|date=June 7, 2025}}</ref> De team subsequently announce say Rodgers go continue to wear ein number 8 from Cal den de Jets, since ein number 12 plus de Packers unofficially be retired for [[Terry Bradshaw]]; neither de Steelers nor Bradshaw sign off on allowing Rodgers to wear number 12.<ref>{{cite web |last1=Goldstein |first1=Jeremy |date=June 7, 2025 |title=Aaron Rodgers suffers early Steelers setback thanks to Terry Bradshaw |url=https://www.themirror.com/sport/american-football/aaron-rodgers-terry-bradshaw-steelers-1194927 |website=[[Daily Mirror]]}}</ref>
Na Rodgers ein months-long courtship den subsequent signing be met plus mixed to negative reaction among Steeler fans as well as ex-Steelers Bradshaw den [[Ryan Clark (American football)|Ryan Clark]] secof ein polarizing attitude,<ref>{{cite web |last=Sayer |first=Ricky |date=June 5, 2025 |title=Aaron Rodgers signing brings mixed reactions from Steelers fans |url=https://www.cbsnews.com/pittsburgh/news/steelers-fans-aaron-rodgers-signing-reaction/ |access-date=June 10, 2025 |work=CBS News}}</ref><ref>{{cite web |last=Gamba-Ellis |first=Thomas |date=June 6, 2025 |title=Aaron Rodgers signing is 'worst-case scenario' for Steelers: Ryan Clark |url=https://nypost.com/2025/06/06/sports/aaron-rodgers-signing-is-worst-case-scenario-for-the-steelers-ryan-clark/ |access-date=June 10, 2025 |work=New York Post}}</ref><ref>{{cite web |last=Baca |first=Michael |date=May 28, 2025 |title=Steelers legend Terry Bradshaw calls Pittsburgh's interest in QB Aaron Rodgers 'a joke' |url=https://www.nfl.com/news/steelers-legend-terry-bradshaw-calls-pittsburgh-interest-aaron-rodgers-a-joke |access-date=September 25, 2025 |website=NFL.com}}</ref> wey sam fans feeling like he no fit Western Pennsylvania dema traditional blue collar base.<ref>{{cite web |last1=Cioppa |first1=Jordan |date=June 5, 2025 |title=Steelers fans react to Aaron Rodgers coming to Pittsburgh |url=https://www.wtae.com/article/steelers-fans-reaction-aaron-rodgers-pittsburgh-quarterback/64985539 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> Sam speculate say Rodgers fi be swayed to sign plus de Steelers by ein friendship plus former Indianapolis Colts punter den Pittsburgh-area native [[Pat McAfee]].<ref>{{cite web |last1=Ciampi |first1=Raquel |date=April 17, 2025 |title=Aaron Rodgers talks sneaking into Pittsburgh for first visit with Steelers on McAfee Show |url=https://www.wtae.com/article/steelers-aaron-rodgers-mcafee-show/64514048 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> On June 23, 2025, Rodgers flow McAfee on ein show say he go likely retire after de 2025 season.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Steelers' Aaron Rodgers 'pretty sure' this will be final season|url=https://www.espn.com/nfl/story/_/id/45575766/steelers-aaron-rodgers-pretty-sure-final-season|access-date=June 29, 2025|work=ESPN|date=June 29, 2025}}</ref>
On September 7, Rodgers make ein Steelers debut against ein former team, de New York Jets. During ein first outing plus Pittsburgh, he plete 22 of 30 pass attempts for 244 yards den four touchdowns while committing no turnovers. De game end plus a 34–32 Steelers victory.<ref>{{cite web |last=Maaddi |first=Rob |date=September 9, 2025 |title=Aaron Rodgers showed he has plenty left to help the Steelers |url=https://sports.yahoo.com/article/aaron-rodgers-showed-plenty-left-191014645.html |access-date=September 25, 2025 |website=Yahoo! Sports}}</ref> Later dat month, Rodgers surpasse [[Brett Favre]], ein former Packers teammate, insyd career touchdown passes wen he throw a scoring pass to [[D.K. Metcalf]] insyd a win over de New England Patriots. Dis move Rodgers into fourth place for most career touchdown passes (509), only behind [[Peyton Manning]], [[Drew Brees]] den [[Tom Brady]].<ref name="u989">{{cite web |last=Gordon |first=Grant |date=September 21, 2025 |title=Aaron Rodgers moves past former teammate Brett Favre with 509th career touchdown pass |url=https://www.nfl.com/news/aaron-rodgers-moves-past-brett-favre-509-career-touchdown-pass |access-date=October 14, 2025 |website=NFL.com}}</ref>
During de second quarter of de Steelers dema Week 11 victory over de Cincinnati Bengals, Rodgers suffer a small fracture insyd ein left wrist.<ref>{{cite news|last=DeArdo|first=Bryan|url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-steelers-qb-hand-injury/|title=Aaron Rodgers has small fracture in wrist, Steelers QB reportedly pushing to play this week|website=[[CBSSports.com]]|publisher=[[CBS Sports]]|date=November 17, 2025|access-date=November 30, 2025}}</ref> De injury prevent am from playing de following game against de Bears, wich [[Mason Rudolph (American football)|Mason Rudolph]] start insyd ein place.<ref>{{cite news|last=Cohen|first=Jay|url=https://www.kare11.com/article/syndication/associatedpress/steelers-qb-aaron-rodgers-misses-game-against-bears-because-of-a-broken-left-wrist/616-e94370ae-9cda-4db9-891f-56092ba44dd1|title=With Aaron Rodgers sidelined, Mason Rudolph and the Steelers fall short in Chicago|agency=[[Associated Press|AP]]|publisher=[[KARE (TV)]]|date=November 23, 2025|access-date=November 30, 2025}}</ref> Rodgers return for Week 13 insyd Buffalo.<ref>{{cite news|last=Guise|first=Michael|url=https://www.cbsnews.com/pittsburgh/news/is-aaron-rodgers-playing-steelers-bills-nfl-news/|title=Is Aaron Rodgers playing against the Bills? Steelers give update on starting quarterback.|publisher=[[CBS News]]|date=November 28, 2025|access-date=November 30, 2025}}</ref>
Rodgers lead de Steelers to an AFC North title den a playoff berth following a Week 18 win over de Baltimore Ravens.<ref>{{Cite web |last=Pryor |first=Brooke |date=January 5, 2026 |title=Steelers take AFC North as Ravens FG sails wide |url=https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-url=https://web.archive.org/web/20260105045214/https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-date=January 5, 2026 |access-date=January 5, 2026 |website=ESPN.com |language=en}}</ref> He fini de 2025 season throwing for 3,322 yards, 24 touchdowns, den seven interceptions, den rushing for a touchdown.<ref>{{Cite web |title=Aaron Rodgers 2025 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2025/ |access-date=January 8, 2026 |website=Pro-Football-Reference.com |language=en}}</ref>
Insyd de Steelers dema playoff loss to de Houston Texans, Rodgers play poorly, completing 17 passes out of 33 attempts for 146 yards, getting sacked 4 times for 36 yards, den throwing a pick-six.<ref>{{cite news|last1=Heyen|first1=Billy|title=Texans defense made Steelers' Aaron Rodgers play the worst playoff game by a QB in a dozen years|url=https://sports.yahoo.com/articles/texans-defense-made-steelers-aaron-131529479.html?guccounter=1|access-date=January 13, 2026|work=Yahoo Sports|date=January 13, 2026}}</ref> Rodgers sanso fumble on one of de sacks, wich dem return for a Texans touchdown.<ref>{{cite news|last1=Brinkerhoff|first1=Nick|title=Aaron Rodgers crushed on strip-sack, leads to critical Texans score|url=https://www.usatoday.com/story/sports/nfl/playoffs/2026/01/12/aaron-rodgers-strip-sack-crushed-texans-packers/88153423007/|access-date=January 13, 2026|work=USA Today|date=January 12, 2026}}</ref>
==== 2026 ====
[[File:RodgersandMcCarthy.jpg|thumb|Rodgers plus [[Mike McCarthy]] during training camp insyd 2026]]
On May 16, 2026, Rodgers return to de Steelers for ein 22nd season, signing a one-year deal worth up to $25 million.<ref>{{Cite web |last=Pryor |first=Brooke |date=May 16, 2026 |title=Sources: Aaron Rodgers to sign 1-year deal with Steelers |url=https://www.espn.com/nfl/story/_/id/48791130/aaron-rodgers-sign-1-year-deal-steelers |access-date=May 16, 2026 |website=ESPN}}</ref> De signing reunite am plus head coach Mike McCarthy.<ref>{{Cite web |last=Middlehurst-Schwartz |first=Michael |date=May 16, 2026 |title=Aaron Rodgers to re-sign with Steelers, reunite with coach Mike McCarthy |url=https://www.usatoday.com/story/sports/nfl/steelers/2026/05/16/aaron-rodgers-contract-pittsburgh-steelers-mike-mccarthy/88698339007/ |access-date=May 16, 2026 |website=USA Today}}</ref> Rodgers later announce say de 2026 season go be ein final season insyd de NFL.<ref>{{Cite web |last=Ulrich |first=Logan |date=2026-05-20 |title=Aaron Rodgers Says 2026 Will Be His Final Season |url=https://nfltraderumors.co/aaron-rodgers-says-2026-will-be-his-final-season/ |access-date=2026-05-20 |website=NFLTradeRumors.co |language=en-US}}</ref>
==Career statistics==
{| class="wikitable"
|-
! colspan="2"| Legend
|-
| style="background:#ff0; width:3em;"|
| AP [[NFL MVP]]
|-
| style="background:#f4c842; width:3em;"|
| [[Super Bowl Most Valuable Player Award|Super Bowl MVP]]
|-
| style="background:#afe6ba; width:3em;"|
| Won the [[Super Bowl]]
|-
| style="background:#e0cef2; width:3em;"|
| NFL record
|-
| style="background:#cfecec; width:3em;"|
| Led the league
|-
| style="width:3em;"|'''Bold'''
| Career best
|}
===NFL===
====Regular season====
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|Regular season}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="11"| Passing
! colspan="5"| Rushing
! colspan="2"| Sacked
! colspan="2"| Fumbles
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starting quarterback}} !! {{abbr|Cmp|Passes completed}} !! {{abbr|Att|Passes attempted}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Y/A|Yards per passing attempt}} !! {{abbr|Lng|Longest pass completion}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions thrown}} !! {{abbr|TD%|Passing touchdown percentage}} !! {{abbr|Int%|Interception thrown percentage}} !! {{abbr|Rtg|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Y/A|Yards per rushing attempt}} !! {{abbr|Lng|Longest rushing attempt}} !! {{abbr|TD|Rushing touchdowns}} !! {{abbr|Sck|Sacks}} !! {{abbr|SckY|Yards lost from sacks}} !! {{abbr|Fum|Fumbles}} !! {{abbr|Lost|Fumbles lost}}
|-
! [[2005 NFL season|2005]] !! [[2005 Green Bay Packers season|GB]]
| 3 || 0 || — || 9 || 16 || 56.3 || 65 || 4.1 || 16 || 0 || 1 || 0.0 || 6.3 || 39.8 || 2 || 7 || 3.5 || 8 || 0 || 3 || 28 || 2 || 2
|-
! [[2006 NFL season|2006]] !! [[2006 Green Bay Packers season|GB]]
| 2 || 0 || — || 6 || 15 || 40.0 || 46 || 3.1 || 16 || 0 || 0 || 0.0 || '''0.0'''|| 48.2 || 2 || 11 || 5.5 || 6 || 0 || 3 || 18 || 1 || 1
|-
! [[2007 NFL season|2007]] !! [[2007 Green Bay Packers season|GB]]
| 2 || 0 || — || 20 || 28 || 71.4 || 218 || 7.8 || 43 || 1 || 0 || 3.6 || '''0.0'''|| 106.0 || 7 || 29 || 4.1 || 13 || 0 || 3 || 24 || 0 || 0
|-
! [[2008 NFL season|2008]] !! [[2008 Green Bay Packers season|GB]]
| 16 || 16 || 6–10 || 341 || 536 || 63.6 || 4,038 || 7.5 || 71 || 28 || 13 || 5.2 || 2.4 || 93.8 || 56 || 207 || 3.7 || 21 || 4 || 34 || 231 || 10 || 3
|-
! [[2009 NFL season|2009]] !! [[2009 Green Bay Packers season|GB]]
| 16 || 16 || 11–5 || 350 || 541 || 64.7 || 4,434 || 8.2 || 83 || 30 || 7 || 5.5 || style="background:#cfecec;"| 1.3 || 103.2 || 58 || 316 || 5.4 || '''35''' || '''5''' || style="background:#cfecec;"| 50 || 306 || 10 || 4
|-
! [[2010 NFL season|2010]] !! style="background:#afe6ba;"|[[2010 Green Bay Packers season|GB]]
| 15 || 15 || 10–5 || 312 || 475 || 65.7 || 3,922 || 8.3 || 86 || 28 || 11 || 5.9 || 2.3 || 101.2 || 64 || 356 || 5.6 || 27 || 4 || 31 || 193 || 4 || 1
|-
! style="background:#ff0;"|[[2011 NFL season|2011]] !! [[2011 Green Bay Packers season|GB]]
| 15 || 15 || '''14–1'''|| 343 || 502 || 68.3 || '''4,643''' || style="background:#cfecec;"| '''9.2''' || '''93''' || 45 || 6 || style="background:#cfecec;"| 9.0 || 1.2 || style="background:#e0cef2;"| '''122.5''' || 60 || 257 || 4.3 || 25 || 3 || 36 || 219 || 4 || '''0'''
|-
! [[2012 NFL season|2012]] !! [[2012 Green Bay Packers season|GB]]
| 16 || 16 || 11–5 || 371 || 552 || 67.2 || 4,295 || 7.8 || 73 || 39 || 8 || style="background:#cfecec;"| 7.1 || 1.4 || style="background:#cfecec;"| 108.0 || 54 || 259 || 4.8 || 27 || 2 || style="background:#cfecec;"| 51 || 293 || 5 || 4
|-
! [[2013 NFL season|2013]] !! [[2013 Green Bay Packers season|GB]]
| 9 || 9 || 6–3 || 193 || 290 || 66.6 || 2,536 || 8.7 || 83 || 17 || 6 || 5.9 || 2.1 || 104.9 || 30 || 120 || 4.0 || 18 || 0 || 21 || '''117''' || 4 || '''0'''
|-
! style="background:#ff0;"|[[2014 NFL season|2014]] !! [[2014 Green Bay Packers season|GB]]
| 16 || 16 || 12–4 || 341 || 520 || 65.6 || 4,381 || 8.4 || 80 || 38 || 5 || 7.3 || style="background:#cfecec;"| 0.9 || 112.2 || 43 || 269 || '''6.3''' || 19 || 2 || 28 || 174 || 10 || 2
|-
! [[2015 NFL season|2015]] !! [[2015 Green Bay Packers season|GB]]
| 16 || 16 || 10–6 || 347 || 572 || 60.7 || 3,821 || 6.7 || 65 || 31 || 8 || 5.4 || 1.4 || 92.7 || 58 || 344 || 5.9 || 18 || 1 || 46 || 314 || 8 || 4
|-
! [[2016 NFL season|2016]] !! [[2016 Green Bay Packers season|GB]]
| 16 || 16 || 10–6 || '''401''' || '''610''' || 65.7 || 4,428 || 7.3 || 66 || style="background:#cfecec;"| 40 || 7 || 6.6 || 1.1 || 104.2 || '''67'''|| '''369'''|| 5.5 || 23 || 4 || 35 || 246 || 8 || 4
|-
! [[2017 NFL season|2017]] !! [[2017 Green Bay Packers season|GB]]
| 7 || 7 || 4–3 || 154 || 238 || 64.7 || 1,675 || 7.0 || 72 || 16 || 6 || 6.7 || 2.5 || 97.2 || 24 || 126 || 5.3 || 18 || 0 || 22 || 168 || '''1''' || 1
|-
! [[2018 NFL season|2018]] !! [[2018 Green Bay Packers season|GB]]
| 16 || 16 || 6–9–1 || 372 || 597 || 62.3 || 4,442 || 7.4 || 75 || 25 || '''2''' || 4.2 || style="background:#e0cef2;"| 0.3 || 97.6 || 43 || 269 || '''6.3''' || 23 || 2 || 49 || 353 || 6 || 3
|-
! [[2019 NFL season|2019]] !! [[2019 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 353 || 569 || 62.0 || 4,002 || 7.0 || 74 || 26 || 4 || 4.6 || style="background:#cfecec;"| 0.7 || 95.4 || 46 || 183 || 4.0 || 17 || 1 || 36 || 284 || 4 || 4
|-
! style="background:#ff0;"|[[2020 NFL season|2020]] !! [[2020 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 372 || 526 || style="background:#cfecec;"| '''70.7''' || 4,299 || 8.2 || 78 || style="background:#cfecec;"| '''48'''|| 5 || style="background:#cfecec;"| '''9.1''' || style="background:#cfecec;" | 0.9 || style="background:#cfecec;"| 121.5 || 38 || 149 || 3.9 || 14 || 3 || '''20''' || 182 || 4 || 2
|-
! style="background:#ff0;"|[[2021 NFL season|2021]] !! [[2021 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 366 || 531 || 68.9 || 4,115 || 7.7 || 75 || 37 || 4 || style="background:#cfecec;"| 7.0 || style="background:#cfecec;"| 0.8 || style="background:#cfecec;"| 111.9 || 33 || 101 || 3.1 || 18 || 3 || 30 || 188 || 3 || '''0'''
|-
! [[2022 NFL season|2022]] !! [[2022 Green Bay Packers season|GB]]
| 17 || 17 || 8–9 || 350 || 542 || 64.6 || 3,695 || 6.8 || 58 || 26 || 12 || 4.8 || 2.2 || 91.1 || 34 || 94 || 2.8 || 18 || 1 || 32 || 258 || 8 || 4
|-
! [[2023 NFL season|2023]] !! [[2023 New York Jets season|NYJ]]
| 1 || 1 || 1–0 || 0 || 1 || 0.0 || 0 || 0.0 || 0 || 0 || 0 || 0.0 || '''0.0'''|| 39.6 || 0 || 0 || — || 0 || 0 || 1 || 10 || 0 || 0
|-
! [[2024 NFL season|2024]] !! [[2024 New York Jets season|NYJ]]
| 17 || 17 || 5–12 || 368 || 584 || 63.0 || 3,897 || 6.7 || 71 || 28 || 11 || 4.8 || 1.9 || 90.5 || 22 || 107 || 4.9 || 18 || 0 || 40 || 302 || 5 || 2
|-
! [[2025 NFL season|2025]] !! [[2025 Pittsburgh Steelers season|PIT]]
| 16 || 16 || 10–6 || 327 || 498 || 65.7 || 3,322 || 6.7 || 80 || 24 || 7 || 4.8 || 1.4 || 94.8 || 21 || 61 || 2.9 || 20 || 1 || 29 || 180 || 4 || 1
|-
! colspan="2" | Career<ref>{{cite web | url=https://www.pro-football-reference.com/players/R/RodgAa00.htm | title=Aaron Rodgers Stats, Height, Weight, Position, Draft, College | website=[[Pro-Football-Reference.com]] }}</ref> !! 264 !! 257 !! {{nowrap|163–93–1}}!! 5,696 !! 8,743 !! 65.1 !! 66,274 !! 7.6 !! 93 !! 527 !! 123 !! 6.0 !! style="background:#e0cef2;"|1.4 !! style="background:#e0cef2;"|102.2 !! 762 !! 3,634 !! 4.8 !! 35 !! 36 !! style="background:#e0cef2; " | 600 !! 4,088 !! 101 !! 42
|}
====Postseason====
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|Postseason}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="11"| Passing
! colspan="5"| Rushing
! colspan="2"| Sacked
! colspan="2"| Fumbles
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starting quarterback}} !! {{abbr|Cmp|Passes completed}} !! {{abbr|Att|Passes attempted}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Y/A|Yards per passing attempt}} !! {{abbr|Lng|Longest pass completion}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions thrown}} !! {{abbr|TD%|Passing touchdown percentage}} !! {{abbr|Int%|Interception thrown percentage}} !! {{abbr|Rtg|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Y/A|Yards per rushing attempt}} !! {{abbr|Lng|Longest rushing attempt}} !! {{abbr|TD|Rushing touchdowns}} !! {{abbr|Sck|Sacks}} !! {{abbr|SckY|Yards lost from sacks}} !! {{abbr|Fum|Fumbles}} !! {{abbr|Lost|Fumbles lost}}
|-
! [[2007–08 NFL playoffs|2007]] !! [[2007 Green Bay Packers season|GB]]
| 1 || 0 || — || 0 || 0 || — || 0 || — || 0 || 0 || 0 || — || — || — || 0 || 0 || — || 0 || 0 || 0 || 0 || 0 || 0
|-
! [[2009–10 NFL playoffs|2009]] !! [[2009 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 28 || 42 || 66.7 || 423 || style="background:#cfecec;"|'''10.1''' || 44 || 4 || 1 || style="background:#cfecec;"|'''9.5''' || 2.4 || '''121.4''' || 3 || 13 || 4.3 || 13 || 1 || 5 || 19 || 1 || 1
|-
! style="background:#f4c842;"|[[2010–11 NFL playoffs|2010]] !! style="background:#afe6ba;"|[[2010 Green Bay Packers season|GB]]
| 4 || 4 || '''4–0''' || style="background:#cfecec;"|'''90''' || style="background:#cfecec;"|'''132''' || 68.2 || style="background:#cfecec;"|'''1,094''' || 8.3 || 38 || style="background:#cfecec;"|'''9''' || 2 || 6.8 || 1.5 || style="background:#cfecec;"|109.8 || '''14''' || 54 || 3.9 || 25 || '''2''' || 8 || 53 || 2 || 1
|-
! [[2011–12 NFL playoffs|2011]] !! [[2011 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 26 || 46 || 56.5 || 264 || 5.7 || 21 || 2 || 1 || 4.3 || 2.2 || 78.5 || 7 || '''66''' || style="background:#cfecec;"|'''9.4''' || 16 || 0 || 4 || 23 || 1 || 1
|-
! [[2012–13 NFL playoffs|2012]] !! [[2012 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 49 || 72 || 68.1 || 531 || 7.4 || 44 || 3 || 1 || 4.2 || 1.4 || 97.6 || 5 || 40 || 8.0 || 17 || 0 || 4 || 33 || 1 || '''0'''
|-
! [[2013–14 NFL playoffs|2013]] !! [[2013 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 17 || 26 || 65.4 || 177 || 6.8 || 26 || 1 || '''0''' || 3.8 || style="background:#cfecec;"|'''0.0''' || 97.8 || 2 || 11 || 5.5 || 9 || 0 || 4 || 20 || 1 || '''0'''
|-
! [[2014–15 NFL playoffs|2014]] !! [[2014 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 43 || 69 || 62.3 || 494 || 7.2 || 46 || 4 || 2 || 5.8 || 2.9 || 91.1 || 4 || 8 || 2.0 || 12 || 0 || 3 || 26 || 2 || 1
|-
! [[2015–16 NFL playoffs|2015]] !! [[2015 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 45 || 80 || 56.3 || 471 || 5.9 || 60 || style="background:#cfecec;"|4 || 1 || 5.0 || 1.3 || 84.9 || 3 || 20 || 6.7 || 19 || 0 || '''2''' || '''15''' || '''0''' || '''0'''
|-
! [[2016–17 NFL playoffs|2016]] !! [[2016 Green Bay Packers season|GB]]
| 3 || 3 || 2–1 || 80 || 128 || 62.5 || 1,004 || 7.8 || 42 || style="background:#cfecec;"|'''9''' || 2 || 7.0 || 1.6 || 103.8 || 8 || 62 || 7.8 || '''28''' || 0 || style="background:#cfecec;"|10 || style="background:#cfecec;"|79 || '''0''' || '''0'''
|-
! [[2019–20 NFL playoffs|2019]] !! [[2019 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 47 || 66 || '''71.2''' || 569 || 8.6 || style="background:#cfecec;"|65 || 4 || 2 || 6.1 || 3.0 || 104.9 || 6 || 14 || 2.3 || 14 || 0 || 5 || 38 || 3 || 1
|-
! [[2020–21 NFL playoffs|2020]] !! [[2020 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 56 || 84 || 66.7 || 642 || 7.6 || 58 || 5 || 1 || 6.0 || 1.2 || style="background:#cfecec;"|104.4 || 4 || −3 || −0.8 || 1 || 1 || 5 || 32 || '''0''' || '''0'''
|-
! [[2021–22 NFL playoffs|2021]] !! [[2021 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 20 || 29 || 69.0 || 225 || 7.8 || style="background:#cfecec;"|'''75''' || 0 || '''0''' || 0.0 || style="background:#cfecec;"|'''0.0''' || 91.9 || 0 || 0 || — || 0 || 0 || 5 || 29 || 1 || '''0'''
|-
! [[2025–26 NFL playoffs|2025]] !! [[2025 Pittsburgh Steelers season|PIT]]
| 1 || 1 || 0–1 || 17 || 33 || 51.5 || 146 || 4.4 || 25 || 0 || 1 || 0.0 || 3.0 || 50.8 || 0 || 0 || — || 0 || 0 || 4 || 36 || 2 || 1
|-
! colspan="2"| Career<ref>{{cite web | url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/post/ | title=Aaron Rodgers Career Game Log | website=[[Pro-Football-Reference.com]] }}</ref> !! 23 !! 22 !! 11–11 !! 518 !! 807 !! 64.2 !! 6,040 !! 7.5 !! 75 !! 45 !! 14 !! 5.6 !! 1.7 !! 98.1 !! 56 !! 285 !! 5.1 !! 28 !! 4 !! 59 !! 403 !! 14 !! 6
|}
===College===
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|College statistics}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="8"| Passing
! colspan="4"| Rushing
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starter}} !! {{abbr|Cmp|Pass completions}} !! {{abbr|Att|Pass attempts}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Avg|Average yards per pass attempts}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions}} !! {{abbr|Rate|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Avg|Average yards per rush}} !! {{abbr|TD|Rushing touchdowns}}
|-
! 2002 !! [[Butte College|Butte]]
| 11 || 11 || '''10–1''' || 164 || 265 || 61.9 || 2,408 || 9.1 || 28 || 4 || 170.1 || 101 || 294 || 2.9 || 7
|-
! [[2003 NCAA Division I-A football season|2003]] !! [[2003 California Golden Bears football team|California]]
| 13 || 10 || 7–3 || '''215'''|| '''349'''|| 61.6 || '''2,903'''|| '''8.3'''|| 19 || 5 || 146.6 || '''86'''|| '''210'''|| '''2.4'''|| '''5'''
|-
! [[2004 NCAA Division I-A football season|2004]] !! [[2004 California Golden Bears football team|California]]
| 12 || 12 || 10–2 || 209 || 316 || '''66.1'''|| 2,566 || 8.1 || '''24'''|| '''8'''|| '''154.4'''|| 74 || 126 || 1.7 || 3
|-
! colspan="2"| FBS career<ref>{{cite web | url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1.html | title=Aaron Rodgers College Stats, School, Draft, Gamelog, Splits }}</ref> !! 25 !! 22 !! 17–5 !! 424 !! 665 !! 63.8 !! 5,469 !! 8.2 !! 43 || 13 !! 150.3 !! 160 !! 336 !! 2.1 !! 8
|}
==Career highlights==
===Awards den honors===
;NFL
* [[Super Bowl XLV]] champion
* [[Super Bowl MVP]] (XLV)
* 4× [[NFL Most Valuable Player]] (2011, 2014, 2020, 2021)
* 4× First-team [[All-Pro]] ([[2011 All-Pro Team|2011]], [[2014 All-Pro Team|2014]], [[2020 All-Pro Team|2020]], [[2021 All-Pro Team|2021]])
* Second-team All-Pro ([[2012 All-Pro Team|2012]])
* 10× [[Pro Bowl]] ([[2010 Pro Bowl|2009]], [[2012 Pro Bowl|2011]], [[2013 Pro Bowl|2012]], [[2015 Pro Bowl|2014]]–[[2017 Pro Bowl|2016]], [[2019 Pro Bowl|2018]]–[[2022 Pro Bowl|2021]])<ref>{{Cite web |title=NFL Pro Bowl Selections Career Leaders |url=https://www.pro-football-reference.com/leaders/pro_bowls_career.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
* 4× [[List of National Football League season passer rating leaders|NFL passer rating leader]] (2011, 2012, 2020, 2021)<ref>{{cite web |title=NFL Passer Rating Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_rating_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 2× [[List of National Football League season passing touchdowns leaders|NFL passing touchdowns leader]] (2016, 2020)<ref>{{cite web |title=NFL Passing Touchdowns Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* [[List of National Football League annual pass completion percentage leaders|NFL completion percentage leader]] (2020)<ref>{{cite web |title=NFL Pass Completion % Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_cmp_perc_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 3× [[Total quarterback rating]] leader: [[2011 NFL season|2011]], [[2020 NFL season|2020]], [[2021 NFL season|2021]]
* [[NFL 2010s All-Decade Team]]<ref>{{cite web |last=Battista |first=Judy |author-link=Judy Battista |date=April 6, 2020 |title=NFL 2010s All-Decade Team: Tom Brady, Aaron Donald headliners |url=https://www.nfl.com/news/nfl-2010s-all-decade-team-tom-brady-aaron-donald-headliners-0ap3000001108338 |access-date=June 23, 2023 |website=NFL.com}}</ref>
* [[Bart Starr Award]] (2014)<ref>{{Cite web |date=January 15, 2014 |title=Aaron Rodgers wins 2014 Bart Starr Award |url=https://www.packers.com/news/aaron-rodgers-wins-2014-bart-starr-award-12441847 |access-date=June 23, 2023 |website=Packers.com}}</ref>
* [[Bert Bell Award]] (2011)<ref>{{cite web |title=Bert Bell Award (Player of the Year) Winners |url=https://www.pro-football-reference.com/awards/bert-bell-award.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 4× [[PFWA NFL Most Valuable Player Award|PFWA NFL Most Valuable Player]] (2011, 2014, 2020, 2021)<ref>{{cite web | last=Spofford | first=Mike | title=Packers QB Aaron Rodgers named PFWA Most Valuable Player for 2021 | website=Packers.com| date=January 26, 2022 | url=https://www.packers.com/news/packers-qb-aaron-rodgers-named-pfwa-most-valuable-player-for-2021 | access-date=December 19, 2025}}</ref>
* [[PFWA NFL Offensive Player of the Year Award|PFWA NFL Offensive Player of the Year]]: (2011)<ref>{{Cite web |title=Offensive Player of the Year|url=https://www.profootballwriters.org/on-field-awards/pfwa-nfl-offensive-player-of-the-year/ |access-date=January 19, 2023 |website=PFWA |language=en-US}}</ref>
* [[PFWA Good Guy Award]] (2011)
* [[NFL Moment of the Year]] ([[2015 NFL season|2015]])
* 2× [[Sporting News]] Offensive Player of the Year (2011, 2014)<ref>{{Cite web |last=Treacy |first=Dan |date=February 1, 2023 |title=History of Sporting News' NFL awards: Full list of past winners, voting results from 1954–2023 |url=https://www.sportingnews.com/us/nfl/news/nfl-awards-history-winners-results/qdey5fuegm3zgbeuqlxgoymv |access-date=January 20, 2024 |website=Sporting News}}</ref>
* 2× GMC Never Say Never Award (2013, 2014)<ref name="Never">{{Cite web |last=Demovsky |first=Rob |date=February 2, 2014 |title=Rodgers-to-Cobb TD recognized |url=https://www.espn.com/blog/green-bay-packers/post/_/id/7150/rodgers-to-cobb-td-recognized |url-status=live |archive-url=https://web.archive.org/web/20250701183928/https://www.espn.com/blog/green-bay-packers/post/_/id/7150/rodgers-to-cobb-td-recognized |archive-date=July 1, 2025 |access-date=July 1, 2025 |website=ESPN.com}}</ref>
* 3× [[Kansas City Committee of 101 awards#Offensive Player of the Year Awards|NFC Offensive Player of the Year]] (2011, 2014, 2020)<ref name=KC101off/>
* 3× [[FedEx Air & Ground NFL Players of the Week#FedEx Air & Ground Players of the Year winners|FedEx Air NFL Player of the Year]] (2010, 2014, 2020)<ref>{{Cite web |last=Kasprzak |first=M. J. |date=February 2, 2011 |title=Aaron Rodgers Earns 2010 FedEx Air Player of the Year |url=https://bleacherreport.com/articles/594763-aaron-rodgers-earns-2010-fedex-air-player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20190123010833/https://bleacherreport.com/articles/594763-aaron-rodgers-earns-2010-fedex-air-player-of-the-year |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Bleacher Report}}</ref><ref>{{Cite web |date=February 1, 2015 |title=Aaron Rodgers and Le'Veon Bell Named 2014 FedEx Air & Ground NFL Players of the Year at "4th Annual NFL Honors" |url=https://www.marketwatch.com/press-release/aaron-rodgers-and-leveon-bell-named-2014-fedex-air-ground-nfl-players-of-the-year-at-4th-annual-nfl-honors-2015-02-01 |url-status=dead |archive-url=https://web.archive.org/web/20190123071334/https://www.marketwatch.com/press-release/aaron-rodgers-and-leveon-bell-named-2014-fedex-air-ground-nfl-players-of-the-year-at-4th-annual-nfl-honors-2015-02-01 |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=MarketWatch}}</ref>
* 14× ''[[NFL Top 100]]'' selections (most all-time)
;NCAA
* [[Insight Bowl]] Offensive MVP ([[2003 Insight Bowl|2003]])<ref name="Green Bay Bio" />
* First-team All-[[Pac-10]] (2004)<ref name="calbears1" />
* California Golden Bears Co-Offensive MVP (2004)<ref>{{Cite web |date=December 13, 2004 |title=Arrington, Rodgers and Riddle Named Team MVPs |url=http://www.calbears.com/sports/m-footbl/spec-rel/121304aab.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121453/http://www.calbears.com/sports/m-footbl/spec-rel/121304aab.html |archive-date=June 9, 2012 |website=California Golden Bears Athletics}}</ref>
;NBA
* 2021 [[NBA Championship]] (as minority owner)<ref name="AR NBA1">{{Cite web |last=Baer |first=Jack |date=July 21, 2021 |title=NBA Finals: Aaron Rodgers, Bucks co-owner, set to get another ring amid Packers trade rumors |url=https://sports.yahoo.com/aaron-rodgers-bucks-co-owner-another-ring-packers-trade-rumors-044134828.html |url-status=live |archive-url=https://web.archive.org/web/20210723073539/https://sports.yahoo.com/aaron-rodgers-bucks-co-owner-another-ring-packers-trade-rumors-044134828.html |archive-date=July 23, 2021 |access-date=July 29, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
;Media
* 2011 [[Associated Press Male Athlete of the Year]]
* 2011 [[The Sporting News#Athlete of the Year|''The Sporting News'' Athlete of the Year]]<ref>{{cite web | last=Hille | first=Bob | title=History of The Sporting News' Athlete of the Year awards: Full list of past winners, 1968-2023 | website=Sporting News | date=December 19, 2023 | url=https://www.sportingnews.com/us/archives/news/sporting-news-athlete-year-awards-full-list-past-winners/b5057b347246de26b7015930 | access-date=December 19, 2025}}</ref>
* 4× [[ESPY Award]] winner – [[Best NFL Player ESPY Award|Best NFL Player]] (2011, 2012, 2015, 2017)<ref>{{Cite web |date=July 14, 2011 |title=Aaron Rodgers wins Best NFL Player award at ESPY Awards |url=https://www.sportsnet.ca/football/nfl/aaron-rodgers-wins-best/ |access-date=January 19, 2023 |website=Sportsnet.ca}}</ref><ref>{{Cite web |last=Yuille |first=Sean |date=July 12, 2012 |title=ESPYS 2012: Aaron Rodgers Beats Out Calvin Johnson, Others For Best NFL Player |url=https://www.prideofdetroit.com/2012/7/12/3154707/espys-2012-best-nfl-player-aaron-rodgers-calvin-johnson |access-date=January 19, 2023 |website=Pride Of Detroit|publisher=SB Nation |language=en}}</ref><ref>{{Cite web |last=Mosendz |first=Polly |date=July 16, 2015 |title=Who Won What at the ESPYs |url=https://www.newsweek.com/round-who-won-what-espys-354546 |access-date=January 19, 2023 |website=Newsweek |language=en}}</ref><ref>{{Cite web |last=Wagner-McGough |first=Sean |date=July 12, 2017 |title=Aaron Rodgers beats Tom Brady, Ezekiel Elliott for Best NFL Player at the ESPYs |url=https://www.cbssports.com/nfl/news/aaron-rodgers-beats-tom-brady-ezekiel-elliott-for-best-nfl-player-at-the-espys/ |access-date=January 19, 2023 |website=CBSSports.com |language=en}}</ref>
;State/Local
* De Wisconsin Legislature approve a proposal wey declare December 12, 2012 (stylized as 12/12/12) "Aaron Rodgers Day" in honor of Rodgers, wey ein jersey number plus de Packers be 12.<ref name="12-12-12 proclaimed Aaron Rodgers Day">{{Cite web |last=Peterson |first=Eric |date=May 9, 2012 |title=12–12–12 proclaimed Aaron Rodgers Day |url=http://www.fox11online.com/dpp/sports/packers_and_nfl/12-12-12-proclaimed-aaron-rodgers-day |url-status=dead |archive-url=https://web.archive.org/web/20120518140840/http://www.fox11online.com/dpp/sports/packers_and_nfl/12-12-12-proclaimed-aaron-rodgers-day |archive-date=May 18, 2012 |access-date=May 19, 2012 |publisher=Fox11}}</ref><ref name="USA TODAY Arod Day">{{Cite web |last=Davis |first=Charles |date=May 9, 2012 |title=Wisconsin declares Dec. 12, 2012, Aaron Rodgers Day |url=https://www.usatoday.com/sports/football/nfl/packers/story/2012-05-09/Aaron-Rodgers-Day/54862416/1 |url-status=dead |archive-url=https://web.archive.org/web/20120517044032/http://www.usatoday.com/sports/football/nfl/packers/story/2012-05-09/Aaron-Rodgers-Day/54862416/1 |archive-date=May 17, 2012 |access-date=May 19, 2012 |website=USA Today}}</ref>
;Golf
* 2023 AT&T Pebble Beach Pro Am winner<ref>{{Cite web |last=Porter |first=Kyle |date=February 5, 2023 |title=2023 AT&T Pebble Beach Pro-Am: Packers QB Aaron Rodgers wins amateur portion of event with Ben Silverman |url=https://www.cbssports.com/golf/news/2023-at-t-pebble-beach-pro-am-packers-qb-aaron-rodgers-wins-amateur-portion-of-event-with-ben-silverman/ |access-date=April 5, 2023 |website=CBSSports.com |language=en}}</ref>
===Records===
====NFL records====
;Career
* Career passer rating (minimum 1,500 attempts): 102.5
* Career TD–INT ratio (minimum 1,500 attempts): 4.4–1
* Consecutive attempts without an interception (402)<ref>{{Cite web |date=December 16, 2018 |title=Aaron Rodgers' record streak without interception ends at 402 pass attempts |url=https://abcnews.go.com/Sports/aaron-rodgers-record-streak-interception-ends-402-pass/story?id=59851408 |url-status=live |archive-url=https://web.archive.org/web/20200724202334/https://abcnews.go.com/Sports/aaron-rodgers-record-streak-interception-ends-402-pass/story?id=59851408 |archive-date=July 24, 2020 |access-date=December 6, 2019 |website=ABC News}}</ref>
* Fastest to 400 passing touchdowns (193 games)<ref>{{Cite web |last=Demovsky |first=Rob |date=December 6, 2020 |title=Packers' Rodgers fastest to 400 career TD passes |url=https://www.espn.com/nfl/story/_/id/30465452/green-bay-packers-qb-aaron-rodgers-fastest-400-career-touchdown-passes |url-status=live |archive-url=https://web.archive.org/web/20210217222722/https://www.espn.com/nfl/story/_/id/30465452/green-bay-packers-qb-aaron-rodgers-fastest-400-career-touchdown-passes |archive-date=February 17, 2021 |access-date=May 24, 2022 |website=[[ESPN.com]] |language=en}}</ref>
* Career sacks taken: 600<ref name="f403">{{cite web | last=Alper | first=Josh | title=Aaron Rodgers becomes most-sacked QB in history, gets called for late hit | website=NBC Sports | date=December 29, 2024 | url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/aaron-rodgers-becomes-most-sacked-qb-in-history-gets-called-for-late-hit | access-date=January 15, 2025}}</ref><ref>{{Cite web |title=NFL Sacked Career Leaders (since 1960) |url=https://www.pro-football-reference.com/leaders/pass_sacked_career.htm |access-date=February 20, 2025 |website=Pro Football Reference |ref={{sfnref|PFR}}}}</ref>
;Single season den games
* Passer rating insyd a season: 122.5 (2011)<ref name="Prisco">{{Cite web |last=Prisco |first=Pete |date=January 4, 2012 |title=Postseason awards: It's close, but passer rating makes Rodgers MVP |url=http://www.cbssports.com/nfl/story/16714574/postseason-awards-its-close-but-passer-rating-makes-rodgers-mvp |url-status=dead |archive-url=https://web.archive.org/web/20120311144147/http://www.cbssports.com/nfl/story/16714574/postseason-awards-its-close-but-passer-rating-makes-rodgers-mvp |archive-date=March 11, 2012 |access-date=January 6, 2012 |website=CBS Sports}}</ref><ref name="pro-football-reference1920">{{Cite web |title=NFL Passer Rating Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_rating_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20181225031832/https://www.pro-football-reference.com/leaders/pass_rating_single_season.htm |archive-date=December 25, 2018 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
* Lowest interception percentage insyd a season: 0.3 (2018)<ref name="passintpfr" />
* Consecutive games plus a passer rating over 100.0 insyd a season: 12 (2011)<ref name="sifqy">{{Cite web |title=Most consecutive games with a passer rating over 100.0 in a season |url=http://pfref.com/tiny/sifqy |url-status=dead |archive-url=https://web.archive.org/web/20211201204420/https://stathead.com/tools/tiny.fcgi?id=sifqy |archive-date=December 1, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
* Consecutive games plus a passer rating over 110.0 insyd a season: 11 (2011)<ref>{{Cite web |title=Most consecutive games with a passer rating over 110.0 in a season |url=http://pfref.com/tiny/8BeIw |url-status=live |archive-url=https://web.archive.org/web/20211201203057/https://stathead.com/tools/tiny.fcgi?id=8BeIw |archive-date=December 1, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
====Green Bay Packers records====
* Most passing touchdowns (475)<ref name="careergb">{{Cite web |title=Green Bay Packers Career Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/career-passing.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
* Career completion percentage (65.3)<ref name="careergb" />
== Touchdown celebration ==
Since becoming an NFL starter insyd 2008, Rodgers cam be known for ein unique touchdown celebration, wich he den ein teammates dub de "Championship Belt." After a scoring play, Rodgers dey celebrate by making a motion as if he dey put an invisible championship belt on around ein waist.<ref>{{Cite web |last=Sayler |first=Ryan |date=January 10, 2011 |title=The Evolution of Aaron Rodgers' Weird "Belt Dance" |url=http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120416003749/http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |archive-date=April 16, 2012 |access-date=May 10, 2012 |website=Real Fantasy}}</ref><ref>{{Cite web |date=January 16, 2011 |title=Aaron Rodgers | Championship Belt Celebration |url=http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |url-status=live |archive-url=https://web.archive.org/web/20120322064628/http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |archive-date=March 22, 2012 |access-date=May 10, 2012 |website=SportsGrid}}</ref> Teammate Greg Jennings say of de celebration: "''It's just something fun that he does. We get excited when we see it cause we know that he's made a play or we've made a play as offense."''<ref name="youtube1">{{Cite web |date=January 25, 2011 |title=Aaron Rodgers Championship Belt Special on ESPN |url=https://www.youtube.com/watch?v=mcwa2EvQ61Y |url-status=live |archive-url=https://web.archive.org/web/20111225110056/http://www.youtube.com/watch?v=mcwa2EvQ61Y |archive-date=December 25, 2011 |access-date=May 10, 2012 |publisher=ESPN |via=YouTube}}</ref> De gesture draw de praise of WWE wrestler Triple H wey e cam be common for Green Bay fans to mimic during games.<ref>{{Cite web |last=Anderson |first=Kyle |date=February 7, 2011 |title=Aaron Rodgers Wins Super Bowl MVP, Celebrates With Championship Belt |url=http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |url-status=dead |archive-url=https://web.archive.org/web/20191206042749/http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |archive-date=December 6, 2019 |access-date=December 6, 2019 |publisher=MTV}}</ref> Na he sanso celebrate by doing de shoryuken, a jumping uppercut move from de ''Street Fighter'' series.<ref>{{Cite web |last=Kunnath |first=Avinash |date=February 17, 2011 |title=Aaron Rodgers Best Touchdown Celebration: Championship Belt, Super Mario Jump, Or Shoryuken? |url=https://bayarea.sbnation.com/california-golden-bears/2011/2/17/1998750/aaron-rodgers-best-touchdown-celebration-championship-belt-super-mario-jump-shoryuken |access-date=January 19, 2023 |website=SB Nation Bay Area |language=en}}</ref>
== Alternative medicine advocacy ==
Rodgers be vocal about ein use of alternative medicine,<ref>{{Cite web |last=Mole |first=Beth |date=February 23, 2022 |title=Aaron Rodgers' go-to cleanse could involve oily enemas, bloodletting, vomiting |url=https://arstechnica.com/science/2022/02/everything-you-didnt-need-to-know-about-aaron-rodgers-oily-enema-cleanse/ |access-date=August 8, 2022 |website=[[Ars Technica]] |language=en}}</ref><ref>{{Cite web |last=McLaughlin |first=Kelly |date=November 3, 2021 |title=Aaron Rodgers reportedly petitioned the NFL to have an alternative treatment count as being vaccinated against COVID-19 |url=https://sports.yahoo.com/aaron-rodgers-reportedly-petitioned-nfl-163711629.html |access-date=August 8, 2022 |website=[[Yahoo! Sports]] |language=en}}</ref> wey he be a proponent of de legalization of psychedelic drugs.<ref>{{cite magazine|last=Chavkin|first=Daniel|date=June 23, 2023|title=Aaron Rodgers Touts Legalization of Psychedelics at Conference|url=https://www.si.com/extra-mustard/2023/06/23/new-york-jets-aaron-rodgers-touts-psychedelics-legalization|access-date=June 23, 2023|magazine=[[Sports Illustrated]]|language=en}}</ref> He reveal insyd 2022 say na he previously make offseason trips to Peru, wer he consume ayahuasca.<ref>{{Cite web |last=Demovsky |first=Rob |date=August 8, 2022 |title=NFL says Green Bay Packers QB Aaron Rodgers' use of ayahuasca didn't violate drug policy |url=https://www.espn.com/nfl/story/_/id/34371733/nfl-says-green-bay-packers-qb-aaron-rodgers-use-ayahuasca-violate-drug-policy |access-date=August 8, 2022 |website=[[ESPN.com]] |language=en |agency=[[Associated Press]]}}</ref>
=== Views on COVID-19 ===
Rodgers be one of de most prominent American athletes to choose he no go get vaccinated against de [[COVID-19]] virus,<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref> wey na he be critical of de NFL dema health den safety protocols during de COVID-19 pandemic.<ref>{{Cite web |last=Wood |first=Ryan |date=November 5, 2021 |title=Packers quarterback Aaron Rodgers blasts 'woke mob' over COVID-19 news on Pat McAfee show, rips NFL's 'draconian' protocols |url=https://www.jsonline.com/story/sports/nfl/packers/2021/11/05/packers-quarterback-aaron-rodgers-talks-covid-19-sounds-off-nfl-protocols/6280790001/ |access-date=January 5, 2024 |website=[[Milwaukee Journal Sentinel]] |language=en}}</ref> Ein stances on de COVID-19 vaccine be criticized by scientists, health officials, den sam former players den commentators, secof concerns say na Rodgers dey spread vaccine misinformation wey he dey potentially risk de health of ein teammates.<ref>{{Cite web |last1=Belson |first1=Ken |last2=Anthes |first2=Emily |date=November 8, 2021 |title=Scientists Fight a New Source of Vaccine Misinformation: Aaron Rodgers |url=https://www.nytimes.com/2021/11/08/sports/football/aaron-rodgers-vaccine.html |access-date=January 5, 2024 |work=[[The New York Times]] |language=en}}</ref>
During de NFL season, Rodgers frequently appear on ''The Pat McAfee Show''.<ref>{{Cite magazine|last=Hladik|first=Matt|date=January 26, 2021|title=Aaron Rodgers Explains Why He Appears on the Pat McAfee Show|url=https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|url-status=live|archive-url=https://web.archive.org/web/20210924043905/https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|archive-date=September 24, 2021|access-date=December 1, 2021|magazine=The Spun by [[Sports Illustrated]]}}</ref> One such interview insyd 2021 make headlines after Rodgers make several false den misleading statements about COVID-19,<ref name="Rosenberg">{{Cite magazine|last=Rosenberg|first=Michael|date=November 5, 2021|title=The Problem Is Aaron Rodgers Thinks He Has All the Answers|url=https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|url-status=live|archive-url=https://web.archive.org/web/20211108000052/https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|archive-date=November 8, 2021|access-date=November 8, 2021|magazine=[[Sports Illustrated]]|language=en-us}}</ref><ref>{{Cite news|last=Kornfield|first=Meryl|date=November 5, 2021|title=Aaron Rodgers said he did the research on covid vaccines. Here's how he was wrong, according to experts|url=https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|url-status=live|archive-url=https://web.archive.org/web/20211109160437/https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|archive-date=November 9, 2021|access-date=November 15, 2021|newspaper=[[The Washington Post]]}}</ref> wey dey imply say na unvaccinated people no be de group most affected by de pandemic den dat [[ivermectin]] be beneficial for people plus COVID-19.<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |last=Schad |first=Tom |date=November 5, 2021 |title=Fact check: 6 of Aaron Rodgers' false and misleading claims about COVID-19 vaccine |url=https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |url-status=live |archive-url=https://web.archive.org/web/20211108002751/https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=[[USA Today]] |language=en-US}}</ref><ref>{{Cite web |last=Sutelan |first=Edward |date=November 14, 2021 |title=Fact-checking Aaron Rodgers' bizarre COVID beliefs and 'woke mob' claim made on Pat McAfee Show |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |url-status=live |archive-url=https://web.archive.org/web/20211108035450/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=Sporting News |language=en}}</ref><ref>{{Cite web |last=Reinwald |first=Caroline |date=November 6, 2021 |title=Aaron Rodgers vaccine fact check: Doctor responds to quarterback's concerns |url=https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |url-status=live |archive-url=https://web.archive.org/web/20211108035459/https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |archive-date=November 8, 2021 |access-date=November 8, 2021 |publisher=[[WISN-TV]] |language=en}}</ref> Dese den similar claims lead sam reporters to describe Rodgers as a conspiracy theorist.<ref name="Rosenberg" /><ref>{{Cite web |last=Jones |first=Ja'han |date=November 9, 2021 |title=Aaron Rodgers should keep Martin Luther King Jr. out of his foolish Covid claims |url=https://www.msnbc.com/the-reidout/reidout-blog/aaron-rodgers-martin-luther-king-jr-covid-vaccine-rcna4872 |access-date=November 13, 2021 |publisher=MSNBC |language=en}}</ref>
== Political den social commentary ==
Rodgers voice support give [[Robert F. Kennedy Jr.]] den ein presidential campaign of 2024.<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref> Kennedy reportedly include Rodgers on ein "short list" of possible vice presidential running mates, along plus odas, wey dey include [[Jesse Ventura]] den [[Nicole Shanahan]].<ref name=":0">{{Cite news|last=O’Brien|first=Rebecca Davis|date=March 12, 2024|title=Aaron Rodgers and Jesse Ventura Top R.F.K. Jr.'s List for Running Mate|url=https://www.nytimes.com/2024/03/12/us/politics/rfk-jr-aaron-rodgers-jesse-ventura.html|access-date=March 13, 2024|work=The New York Times|language=en-US|issn=0362-4331}}</ref><ref name="OBrienMar172024">{{Cite news|last=O'Brien|first=Rebecca Davis|date=March 17, 2024|title=Nicole Shanahan Emerges as a Top Candidate to Be R.F.K. Jr.'s Running Mate|url=https://www.nytimes.com/2024/03/17/us/politics/nicole-shanahan-rfk-jr-running-mate.html|access-date=May 30, 2024|work=[[The New York Times]]}}</ref>
On [[Adam Breneman]] ein podcast insyd 2022, former Packers backup quarterback [[DeShone Kizer]] talk say Rodgers express interest insyd 9/11 conspiracy theories at one of de first meetings between de two quarterbacks. Kizer describe dema discussion of conspiracy theories as "a real thought experiment".<ref name="nypost-2022-11-29">{{cite news|last1=Hendricks|first1=Jaclyn|date=November 29, 2022|title=DeShone Kizer: Aaron Rodgers pressed me on 9/11 conspiracies|url=https://nypost.com/2022/11/29/deshone-kizer-aaron-rodgers-pressed-me-on-9-11-conspiracies/|access-date=January 8, 2023|work=[[The New York Post]]}}</ref><ref name="si-2022-11-29">{{cite magazine|last1=Salvador|first1=Joseph|date=November 29, 2022|title=Former Packers QB Says Aaron Rodgers Once Asked Him Whether He Believes in 9/11|url=https://www.si.com/nfl/2022/11/29/packers-deshone-kizer-aaron-rodgers-once-asked-him-if-he-believes-in-9-11-conspiracy-theories|access-date=January 8, 2022|magazine=[[Sports Illustrated]]|language=en-us}}</ref> Rodgers sanso promote de Tartarian architecture conspiracy theory.<ref name="tart">{{Cite web |last=Silverman |first=Robert |date=March 8, 2024 |title=Aaron Rodgers Dabbles in the 'QAnon of Architecture' |url=https://www.yahoo.com/entertainment/aaron-rodgers-dabbles-qanon-architecture-234934271.html |access-date=January 15, 2025 |website=Yahoo! Entertainment}}</ref>
Insyd a January 2024 appearance on ''The Pat McAfee Show'', Rodgers, widout evidence, imply say na comedian [[Jimmy Kimmel]] be an acquaintance of disgraced financier den sex offender [[Jeffrey Epstein]], den dat Kimmel ein name go possibly appear in soon to be released court documents listing Epstein ein associates.<ref>{{Cite web |last=Simonetti |first=Isabella |date=January 9, 2024 |title=ESPN's Pat McAfee Said He Doesn't 'Take Back Anything' After Skewering Colleague |url=https://www.wsj.com/business/media/pat-mcafee-show-espn-aaron-rodgers-ede1d63b |access-date=January 9, 2024 |website=WSJ |language=en-US}}</ref> Kimmel deny de allegations den threatened to sue Rodgers for defamation if he repeat de claim.<ref>{{Cite web |last=Kimmel |first=Jimmy |author-link=Jimmy Kimmel |date=January 2, 2024 |title=X Post |url=https://twitter.com/jimmykimmel/status/1742324477323833546 |access-date=January 9, 2024 |website=X}}</ref> Insyd a follow-up appearance on McAfee ein show de following week, Rodgers state say: "''I'm glad that Jimmy is not on the list. I really am. I don't think he's the P-word [pedophile]."''<ref>{{Cite web |last=France |first=Lisa |date=January 9, 2024 |title=Aaron Rodgers blames media in response to Jimmy Kimmel's comments about him |url=https://www.cnn.com/2024/01/09/entertainment/jimmy-kimmel-aaron-rodgers-monologue/index.html |access-date=January 9, 2024 |website=CNN |language=en}}</ref>
During a February 2024 appearance on de conspiracy-focused ''Look Into It'' podcast wey [[Eddie Bravo]] host, Rodgers espouse numerous conspiracy theories on medicine, immigration, den John F. Kennedy.<ref>{{Cite web |last=Keeley |first=Sean |date=March 14, 2024 |title=Here's all the dumb shit Aaron Rodgers recently said on a conspiracy theory podcast |url=https://awfulannouncing.com/nfl/aaron-rodgers-conspiracy-theory-podcast-tartaria-immigrants-trump-biden.html |access-date=April 17, 2024 |website=Awful Announcing |language=en}}</ref> Na ein claims include say na dem create [[HIV/AIDS|AIDS]] den COVID by de government for de sake of pharmaceutical industry profits (sanso spy discredited HIV/AIDS origins theories den Operation Denver).<ref>{{Cite web |last=Buzinski |first=Jim |date=April 17, 2024 |title=Aaron Rodgers says AIDS was created by the U.S. government in the 1980s |url=https://www.outsports.com/2024/4/17/24091797/aaron-rodgers-says-aids-was-created-by-the-u-s-government-in-the-1980s/ |access-date=April 17, 2024 |website=outsports.com |language=en}}</ref>
Insyd 2024, CNN reporter [[Pamela Brown (journalist)|Pamela Brown]] report say na Rodgers insyd 2013 share false conspiracy theories about de Sandy Hook massacre, wey dey claim say na de attack be an "inside job" perpetrated by de government. Na CNN simultaneously report an allegation by an anonymous source say na Rodgers for several years prior say "''Sandy Hook never happened....All those children never existed. They were all actors.''"<ref name="SandyHook1">{{Cite web |last1=Brown |first1=Pamela |last2=Tapper |first2=Jake |date=March 14, 2024 |title=RFK Jr.'s VP prospect Aaron Rodgers has shared false Sandy Hook conspiracy theories in private conversations |url=https://www.cnn.com/2024/03/13/politics/aaron-rodgers-sandy-hook-conspiracy-theories/index.html |access-date=March 17, 2024 |website=CNN.com |language=en}}</ref> In response, Rodgers say, "''I am not and have never been of the opinion that the events did not take place" but did not say whether he had ever believed the Sandy Hook massacre was an "inside job.''"<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref>
== Personal life ==
=== Family den relationships ===
Rodgers get two bros; de younger, [[Jordan Rodgers|Jordan]], play quarterback at Vanderbilt University wey he get a brief NFL career plus de Jacksonville Jaguars den Tampa Bay Buccaneers.<ref>{{Cite web |title=Jordan Rodgers Vanderbilt Bio |url=http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-url=https://web.archive.org/web/20111126203900/http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-date=November 26, 2011 |access-date=June 19, 2017 |website=VUCommodores.com}}</ref><ref>{{Cite web |last=Imig |first=Paul |date=April 27, 2013 |title=Rodgers' younger brother Jordan signs with Jacksonville |url=http://www.foxsportswisconsin.com/fox-sports-networks/story/Rodgers-brother-Jordan-signs-with-Jackso?blockID=896957 |url-status=live |archive-url=https://web.archive.org/web/20220310191855/https://www.foxsports.com/wisconsin/story/rodgers-younger-brother-jordan-signs-with-jacksonville-042713 |archive-date=March 10, 2022 |access-date=June 19, 2017 |work=Fox Sports}}</ref><ref>{{Cite web |last=Eisenband |first=Jeff |date=October 8, 2018 |title=Jordan Rodgers Remembers His 'Good Little' Football Career |url=http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |url-status=dead |archive-url=https://web.archive.org/web/20190308081753/http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |archive-date=March 8, 2019 |access-date=March 7, 2019 |website=ThePostGame.com}}</ref> Although na dem raise Rodgers den ein bros Christian, insyd an interview insyd 2017 he state say he no longer affiliate einself plus any organized religion.<ref>{{Cite web |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=Aaron Rodgers, unmasked |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |url-status=live |archive-url=https://web.archive.org/web/20211114183324/http://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |archive-date=November 14, 2021 |access-date=March 7, 2019 |website=[[ESPN.com]]}}</ref>
Rodgers be de godfather to Cade Cobb, de second son of ein long-time NFL teammate, [[Randall Cobb (American football)|Randall Cobb]].<ref>{{cite web |last=Demovsky |first=Rob |date=October 28, 2021 |title=The 'beautiful, chaotic mess' that brought Randall Cobb's family back to Green Bay |url=https://www.espn.com/blog/green-bay-packers/post/_/id/51394/the-beautiful-chaotic-mess-that-brought-randall-cobbs-family-back-to-green-bay |accessdate=September 1, 2023 |work=[[ESPN.com]]}}</ref>
Na Rodgers dey insyd a relationship plus actress [[Olivia Munn]] from 2014 to 2017 den plus former professional racing driver [[Danica Patrick]] from 2018 to 2020.<ref name="peoplemag">{{Cite web |last=Mizoguchi |first=Karen |date=April 7, 2017 |title=Olivia Munn and Aaron Rodgers Break Up |url=http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |url-status=live |archive-url=https://web.archive.org/web/20170408081606/http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |archive-date=April 8, 2017 |access-date=April 7, 2017 |website=[[People (magazine)|People]]}}</ref><ref name="AP">{{Cite web |date=January 15, 2018 |title=Danica Patrick finds love away from track with Aaron Rodgers |url=https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |url-status=live |archive-url=https://web.archive.org/web/20180219090141/https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |archive-date=February 19, 2018 |access-date=February 18, 2018 |work=[[Associated Press News]]}}</ref><ref>{{Cite web |date=July 16, 2020 |title=Danica, Rodgers call off two-year relationship |url=https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |url-status=live |archive-url=https://web.archive.org/web/20210203195658/https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |archive-date=February 3, 2021 |access-date=February 7, 2021 |website=[[ESPN.com]]}}</ref> He start dey date actress [[Shailene Woodley]] insyd de second half of 2020.<ref>{{Cite web |last=Weinberg |first=Lindsay |date=February 2, 2021 |title=Inside Shailene Woodley and Aaron Rodgers' "Private and Low Key" Romance |url=https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |url-status=live |archive-url=https://web.archive.org/web/20210207071957/https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |archive-date=February 7, 2021 |access-date=February 7, 2021 |website=[[E!]]}}</ref> Insyd an appearance on ''The Tonight Show Starring Jimmy Fallon'' insyd 2021, Woodley confirm say na she be engaged to Rodgers.<ref>{{Cite web |last=Kubota |first=Samantha |date=February 22, 2021 |title=Shailene Woodley engaged to Aaron Rodgers, says she's 'still learning' about football |url=https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |url-status=live |archive-url=https://web.archive.org/web/20210223055422/https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |archive-date=February 23, 2021 |access-date=February 23, 2021 |website=[[Today.com]]}}</ref> On February 16, 2022, na Rodgers den Woodley call off dema engagement.<ref>{{Cite web |last=Wang |first=Jessica |date=February 16, 2022 |title=Shailene Woodley and Aaron Rodgers split, call off engagement |url=https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |url-status=live |archive-url=https://web.archive.org/web/20220409131033/https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |archive-date=April 9, 2022 |access-date=February 16, 2022 |website=[[Yahoo!]] |language=en-US}}</ref>
Insyd December 2024, na Rodgers state say na he dey date a woman dem name Brittani. Insyd June 2025, Rodgers state say dem marry a few months prior.<ref>{{Cite web |last=Comiter |first=Jordana |date=June 10, 2025 |title=Who Is Aaron Rodgers' Wife, Brittani? All About Her Private Relationship with the NFL Quarterback |url=https://people.com/who-is-brittani-aaron-rodgers-11718036 |access-date=June 22, 2025 |website=People.com |language=en}}</ref><ref>{{cite web |last=Hooks |first=Kalan |date=June 10, 2025 |title=Aaron Rodgers announces marriage at Steelers minicamp |url=https://www.espn.com/nfl/story/_/id/45481936/aaron-rodgers-pittsburgh-steelers-announces-marriage |access-date=June 10, 2025 |website=[[ESPN]]}}</ref>
=== Honorary memberships den business ventures ===
Na dem initiate Rodgers as an honorary member of Tau Kappa Epsilon (TKE) on January 5, 2012, at de Sigma-Xi Chapter at St. Norbert College.<ref>{{Cite web |last=Zegers |first=Dan |date=January 6, 2012 |title=MEET FRATERS AARON RODGERS & GRAHAM HARRELL |url=https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |url-status=live |archive-url=https://web.archive.org/web/20221229085550/https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |archive-date=December 29, 2022 |access-date=December 29, 2022 |publisher=Tau Kappa Epsilon}}</ref>
Insyd April 2018, na dem annouce Rodgers as a limited partner insyd de Milwaukee Bucks ownership group, wey dey make am de first active NFL player plus an ownership stake insyd an NBA franchise.<ref>{{Cite web |last=Demovsky |first=Rob |date=April 20, 2018 |title=Aaron Rodgers buys minority stake in Bucks: 'A dream come true' |url=https://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |url-status=live |archive-url=https://web.archive.org/web/20180422052450/http://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |archive-date=April 22, 2018 |access-date=April 22, 2018 |website=[[ESPN.com]]}}</ref> De team later win de NBA Finals insyd 2021.<ref>{{Cite news|last=Deb|first=Sopan|date=July 21, 2021|title=The Milwaukee Bucks Win the N.B.A. Championship|url=https://www.nytimes.com/2021/07/20/sports/basketball/milwaukee-bucks-nba-finals-championship.html|access-date=February 12, 2026|work=The New York Times|language=en-US|issn=0362-4331}}</ref>
== Media appearances ==
Na Rodgers be a longtime spokesperson for State Farm Insurance wey na he frequently feature insyd dema commercials. Insyd de commercials, Rodgers often dey highlight ein "Championship Belt" touchdown celebration, wich State Farm rename as de "Discount Double Check".<ref>{{Cite web |title=State Farm® State of Imitation (Aaron Rodgers) |url=https://www.youtube.com/watch?v=j9Rv7czl9cU |url-status=live |archive-url=https://web.archive.org/web/20121017234148/http://www.youtube.com/watch?v=j9Rv7czl9cU |archive-date=October 17, 2012 |access-date=May 10, 2012 |publisher=State Farm |via=YouTube}}</ref> Rodgers sanso be featured insyd Pizza Hut advertisements,<ref>{{Cite web |last=Rovell |first=Darren |author-link=Darren Rovell |date=September 4, 2012 |title=Pizza Hut uses Aaron Rodgers in new ads |url=https://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |url-status=live |archive-url=https://web.archive.org/web/20161229100812/http://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=[[ESPN.com]]}}</ref> as well as numerous local Wisconsin-based advertisements.<ref name="milcomm">{{Cite web |last=Kirchen |first=Rich |date=August 20, 2015 |title=Aaron Rodgers' commercial work in Wisconsin appears to be dwindling |url=http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |url-status=live |archive-url=https://web.archive.org/web/20151008232237/http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |archive-date=October 8, 2015 |access-date=December 29, 2016 |website=Milwaukee Business Journal}}</ref>
Insyd May 2015, Rodgers appear as a contestant on ''Celebrity Jeopardy!''; he defeat ''Shark Tank'' investor [[Kevin O'Leary]] den astronaut den future United States Senator [[Mark Kelly]], winning $50,000 for ein charity. Insyd April 2021, Rodgers get a two-week stint as guest host on ''Jeopardy!'' from April 5–16.<ref>{{Cite web |last=Demovsky |first=Rob |date=January 12, 2021 |title=Green Bay Packers QB Aaron Rodgers says he'll be a 'Jeopardy!' guest host |url=https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |url-status=live |archive-url=https://web.archive.org/web/20210116152354/https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |archive-date=January 16, 2021 |access-date=January 16, 2021 |publisher=[[ESPN]]}}</ref><ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers sanso make numerous cameo appearances on television, wey dey include insyd a 2013 episode of ''The Office'', a 2019 episode of ''Game of Thrones'', den a 2015 episode of de sketch comedy television series ''Key & Peele''.<ref>{{Cite web |last=Zaldivar |first=Gabe |date=May 10, 2013 |title=Aaron Rodgers Judges Andy Bernard Breakdown on 'The Office' |url=https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |url-status=live |archive-url=https://web.archive.org/web/20210720173445/https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |archive-date=July 20, 2021 |access-date=July 20, 2021 |website=Bleacher Report}}</ref><ref>{{Cite web |date=May 13, 2019 |title=Video NFL star makes surprise cameo on 'Game of Thrones' |url=https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |url-status=live |archive-url=https://web.archive.org/web/20211018165222/https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |archive-date=October 18, 2021 |access-date=October 18, 2021 |website=ABC News |language=en}}</ref><ref>{{Cite web |last=Dubin |first=Jared |date=January 28, 2015 |title=WATCH: Key & Peele, Aaron Rodgers spoof player introductions |url=https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |url-status=live |archive-url=https://web.archive.org/web/20180831104426/https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |archive-date=August 31, 2018 |access-date=August 30, 2018 |website=CBS Sports}}</ref> He sanso tape a cameo as ''Jeopardy!'' host for an episode of ''The Conners''.<ref>{{Cite web |last=Cwik |first=Chris |date=May 8, 2021 |title=Aaron Rodgers guest starring as 'Jeopardy!' host on 'The Conners,' prompting speculation about future |url=https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |url-status=live |archive-url=https://web.archive.org/web/20210508190417/https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |archive-date=May 8, 2021 |access-date=May 8, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd 2021, Rodgers take part insyd ''The Match IV'', wich be de fourth installment insyd de exhibition match play golf series. Na he be paired plus professional golfer [[Bryson DeChambeau]]. De team go up against [[Phil Mickelson]] den Tom Brady.<ref>{{Cite web |last=Wells |first=Adam |date=May 26, 2021 |title=Mickelson, Tom Brady vs. DeChambeau, Aaron Rodgers Set for Capital One's 'The Match' |url=https://bleacherreport.com/articles/10003839-mickelson-tom-brady-vs-dechambeau-aaron-rodgers-set-for-capital-ones-the-match |access-date=May 26, 2021 |website=BleacherReport |publisher=Turner Broadcasting System, Inc.}}</ref> DeChambeau den Rodgers win de match 3 den 2.<ref>{{Cite web |last=VanHaaren |first=Tom |date=July 6, 2021 |title=Bryson DeChambeau, Aaron Rodgers beat Phil Mickelson, Tom Brady in 'The Match' |url=https://www.espn.co.uk/golf/story/_/id/31773982/bryson-dechambeau-aaron-rodgers-beat-phil-mickelson-tom-brady-match |access-date=May 26, 2022 |website=[[ESPN.com]]}}</ref> Rodgers sanso take part insyd de sixth edition of ''The Match'', wer na he team up plus Brady against fellow quarterbacks [[Josh Allen]] den [[Patrick Mahomes]].<ref>{{Cite web |date=April 18, 2022 |title=Tom Brady and Aaron Rodgers to Play Patrick Mahomes and Josh Allen in 'The Match' on June 1 |url=https://www.si.com/golf/news/tom-brady-aaron-rodgers-to-play-patrick-mahomes-josh-allen-in-the-match-june-1 |access-date=May 26, 2022 |website=Morning Read |language=en}}</ref> Rodgers den Brady defeat Mahomes den Allen 1 up.<ref>{{Cite web |last=Hamel |first=Riley |date=June 1, 2022 |title=Aaron Rodgers buries a birdie at the last, teams with Tom Brady to take down Patrick Mahomes, Josh Allen in Capital One's: The Match VI |url=https://golfweek.usatoday.com/lists/tracker-shot-to-shot-updates-of-the-match-vi-at-wynn-las-vegas/ |access-date=June 28, 2022 |website=Golfweek |language=en-US}}</ref>
== Humanitarian den charitable efforts ==
Rodgers be de founder, den de co-creator, along plus David Gruber, of itsAaron,<ref>{{Cite web |last=Littman |first=Chris |date=December 4, 2014 |title=Aaron Rodgers' surprise visit makes school dean scream with joy |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |url-status=live |archive-url=https://web.archive.org/web/20191017184232/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |archive-date=October 17, 2019 |access-date=October 17, 2019 |website=Sporting News}}</ref> a charity plus a mission of "creating awareness for organizations den people wey dey change de world".<ref name="Rodgers Charity">{{Cite web |title=It's Aaron & Gruber Law |url=https://www.gruber-law.com/itsaaron/ |url-status=live |archive-url=https://web.archive.org/web/20250523173120/https://www.gruber-law.com/itsaaron/ |archive-date=May 23, 2025 |access-date=July 1, 2025 |website=Gruber Law |language=en}}</ref><ref>{{Cite web |date=September 4, 2013 |title=Gruber Law Brings Awareness Through 'Its Aaron' with Aaron Rodgers |url=https://www.gruber-law.com/itsaaron/ |archive-url=https://web.archive.org/web/20190414173233/https://www.gruber-law.com/itsaaron/ |archive-date=April 14, 2019 |access-date=March 7, 2019 |website=Gruber Law Offices}}</ref>
He sanso be a supporter of de MACC Fund,<ref name="Nickel">{{Cite web |last=Nickel |first=Lori |date=May 14, 2013 |title=Aaron Rodgers Shines at MACC Fund Event |url=https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |url-status=live |archive-url=https://web.archive.org/web/20250306103414/https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |archive-date=March 6, 2025 |access-date=February 2, 2014 |website=Milwaukee Journal Sentinel}}</ref><ref name="Demovsky">{{Cite web |last=Demovsky |first=Rob |date=December 31, 2013 |title=Aaron Rodgers address 'crazy rumors' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |url-status=live |archive-url=https://web.archive.org/web/20140204035709/http://espn.go.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |archive-date=February 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> Raise Hope for Congo,<ref name="Garber">{{Cite web |last=Garber |first=Greg |date=January 1, 2014 |title=Aaron Rodgers makes real difference:Packers quarterback uses his clout to bring awareness to Raise Hope For Congo |url=https://www.espn.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |url-status=live |archive-url=https://web.archive.org/web/20140104044126/http://espn.go.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |archive-date=January 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> den oda humanitarian den charitable efforts.<ref>{{Cite web |title=Aaron Rodgers: Charity Work & Causes |url=https://www.looktothestars.org/celebrity/aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20211115164124/https://www.looktothestars.org/celebrity/aaron-rodgers |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=Look to the Stars |language=en}}</ref><ref>{{Cite web |date=March 1, 2021 |title=Aaron Rodgers donates $1 million to aid 80 small businesses in hometown |url=https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |url-status=live |archive-url=https://web.archive.org/web/20211115164225/https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=NFL.com |language=en-US}}</ref>
Rodgers ein ''[[List of Jeopardy! tournaments and events|Celebrity Jeopardy!]]'' win earn $50,000 for de MACC Fund.<ref name="Kaduk2015">{{Cite web |last=Kaduk |first=Kevin |date=May 12, 2015 |title=Aaron Rodgers wins his episode of Celebrity Jeopardy |url=https://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |url-status=live |archive-url=https://web.archive.org/web/20150514165207/http://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=[[Yahoo! Sports]]}}</ref><ref>{{Cite web |last=Hanzus |first=Dan |date=May 12, 2015 |title=Aaron Rodgers comes up clutch on Celebrity Jeopardy |url=https://www.nfl.com/news/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy-0ap3000000492438 |url-status=live |archive-url=https://web.archive.org/web/20150514155518/http://www.nfl.com/news/story/0ap3000000492438/article/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=NFL.com}}</ref> During ein 2021 appearance as ''Jeopardy!'' guest host, de show make a charitable donation equal to de cumulative winnings of de contestants (wey dey include de runners-up) for those ten shows.<ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers be a supporter of ein alma mater, University of California, Berkeley. He donate funds to renovate de athletic facilities<ref>{{Cite web |last=Kercheval |first=Ben |date=June 11, 2019 |title=Aaron Rodgers gives Cal football 'seven-figure gift' for locker room renovations, scholarship |url=https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |url-status=live |archive-url=https://web.archive.org/web/20210709182238/https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=CBS Sports |language=en}}</ref> wey he sanso establish an endowed scholarship give transfer students at de school. Insyd 2021, dem honor am by de school for ein charitable work.<ref>{{Cite web |date=June 1, 2021 |title=2021's Best and Brightest Alumni, Faculty Honored at Berkeley Charter Gala |url=https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |url-status=live |archive-url=https://web.archive.org/web/20210709182728/https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=Cal Alumni Association}}</ref>
Insyd 2021, Rodgers donate $1 million to help small businesses insyd Chico den Butte County, California.<ref>{{Cite web |date=March 1, 2021 |title=Packers QB Aaron Rodgers donates $1 million to help his hometown's small businesses |url=https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |url-status=dead |archive-url=https://web.archive.org/web/20230119205343/https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |archive-date=January 19, 2023 |access-date=January 19, 2023 |website=Packers.com |language=en-US}}</ref>
Insyd 2024, Rodgers raise $3 million for charities plus a flag football tournament.<ref>{{Cite web |last=Williams |first=Randall |date=May 4, 2024 |title=Aaron Rodgers Is Bullish on Flag Football, Uses to Raise Millions for Charity |url=https://www.bloomberg.com/news/articles/2024-05-04/nfl-qb-aaron-rodgers-says-olympic-flag-football-might-be-next-chapter |access-date=May 30, 2024 |website=Bloomberg.com}}</ref>
== References ==
<references />
== External links ==
adjd0fub78gwmooq99554cb714f62tg
111300
111299
2026-08-29T23:10:32Z
DaSupremo
9
/* Read further */ Improve article
111300
wikitext
text/x-wiki
{{Databox}}
'''Aaron Charles Rodgers''' (born December 2, 1983) be an American professional football quarterback give de Pittsburgh Steelers of de National Football League (NFL). He play college football give de California Golden Bears, setting de school ein record for lowest single-season den career interception rates before he be selected by de Green Bay Packers insyd de first round of de 2005 NFL draft.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{cite web |date=April 23, 2005 |title=Aaron Rodgers Selected by Green Bay |url=https://calbears.com/sports/2005/4/23/207736054 |access-date=September 25, 2025 |website=California Golden Bears Athletics}}</ref> He be regarded as one of de greatest den most talented quarterbacks of all time.<ref name="GOAT2">*{{Cite web |date=August 30, 2018|title=Where will Rodgers finish among the greatest QBs of all time?|url=http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|url-status=live|archive-url=https://web.archive.org/web/20181114060238/http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|archive-date=November 14, 2018|access-date=November 13, 2018|publisher=National Football League|type=Television production}}<li>{{Cite web |last=Siegel|first=Alan|date=February 28, 2018|title=The top 25 NFL quarterbacks of all-time|url=https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|url-status=live|archive-url=https://web.archive.org/web/20200724211140/https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|archive-date=July 24, 2020|access-date=November 13, 2018|work=[[USA Today]]|quote=By the time he's done, Rodgers may be No. 1 on this list. At 35, the seven-time Pro Bowler and two-time NFL MVP, who led the Packers to victory in Super Bowl XLV, is still going strong. He holds the NFL record in single-season and career passer rating (122.5, 103.2) and is creeping up on the leaders in nearly every major passing category.}}</li><li>{{Cite web |last=Schein|first=Adam|date=January 18, 2021|title=NFL Divisional Round aftermath: Aaron Rodgers most talented QB ever? Chiefs in trouble?|url=https://www.nfl.com/news/nfl-divisional-round-aftermath-aaron-rodgers-most-talented-qb-ever-chiefs-in-tro|access-date=April 4, 2023|website=[[NFL.com]]}}</li>*{{Cite web |last=Miller|first=Dalton|date=May 27, 2021|title=Ranking the Top Quarterbacks in NFL History from Tom Brady to Warren Moon|url=https://www.profootballnetwork.com/ranking-top-quarterbacks-in-nfl-history/|access-date=April 5, 2023|work=Pro Football Network}}
*{{Cite web |last=Schwab|first=Frank|date=February 1, 2023|title=What is Tom Brady's place among the 5 greatest QBS in NFL history?|url=https://sports.yahoo.com/what-is-tom-bradys-place-among-the-5-greatest-qbs-in-nfl-history-161857912.html|access-date=April 4, 2023|work=[[Yahoo! Sports]]}}</ref>
After backing up [[Brett Favre]] for de first three years of ein NFL career, Rodgers cam be de Packers dema starting quarterback insyd 2008. Insyd de 2010 season, he lead dem to a victory insyd Super Bowl XLV, earning de Super Bowl MVP. Na dem name am Associated Press Athlete of de Year insyd 2011,<ref name="Male Athlete of the year">{{Cite news|date=December 21, 2011|title=Rodgers named Male Athlete of the Year|work=[[Fox Sports]]|agency=[[Associated Press]]|url=http://msn.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|url-status=dead|access-date=May 13, 2011|archive-url=https://web.archive.org/web/20190718082529/https://www.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|archive-date=July 18, 2019}}</ref> wey na dem vote am league MVP by de Associated Press for de 2011, 2014, 2020, den 2021 NFL seasons. Rodgers be de fifth player to win NFL MVP insyd consecutive seasons, joining [[Peyton Manning]], Favre, [[Joe Montana]] den [[Jim Brown]]. Rodgers lead de NFL six times insyd touchdown-to-interception ratio (2011, 2012, 2014, 2018, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Leaders – Passing Touchdown/Interception Ratio |url=https://www.footballdb.com/leaders/yearly-passing-tdintratio |url-status=live |archive-url=https://web.archive.org/web/20190407190912/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=April 7, 2019 |access-date=April 7, 2019 |website=FootballDB.com}}</ref> six times insyd lowest passing interception percentage (2009, 2014, 2018, 2019, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passing Interception Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-intpct |url-status=live |archive-url=https://web.archive.org/web/20200724202503/https://www.footballdb.com/leaders/yearly-passing-intpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> four times insyd passer rating (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passer Rating Leaders |url=https://www.footballdb.com/leaders/yearly-passing-rating |url-status=live |archive-url=https://web.archive.org/web/20200724211550/https://www.footballdb.com/leaders/yearly-passing-rating |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den four times insyd touchdown passing percentage (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Touchdown Pass Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-tdpct |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.footballdb.com/leaders/yearly-passing-tdpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> three times insyd total touchdowns (2011, 2016, 2020); twice insyd touchdown passes (2016, 2020)<ref>{{Cite web |title=NFL Yearly Touchdown Passes Leaders |url=https://www.footballdb.com/leaders/yearly-passing-touchdowns |url-status=live |archive-url=https://web.archive.org/web/20200724202559/https://www.footballdb.com/leaders/yearly-passing-touchdowns |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den once insyd yards per attempt (2011) den completion percentage (2020).<ref>{{Cite web |title=NFL Yearly Passing Yards per Attempt Leaders |url=https://www.footballdb.com/leaders/yearly-passing-ydsattempt |url-status=live |archive-url=https://web.archive.org/web/20200724202800/https://www.footballdb.com/leaders/yearly-passing-ydsattempt |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> Insyd 2023, na dem trade Rodgers to de New York Jets, wer he spend two seasons plus de team. Released by de Jets after de 2024 season, Rodgers sign plus de Steelers, whom he lead to a division title dat season.
Ranking first on de NFL ein all-time regular-season career passer rating list,<ref>{{Cite web |last=Brizuela |first=James |date=September 16, 2025 |title=Ravens' Lamar Jackson Has Surpassed Aaron Rodgers in Major NFL Career Stat |url=https://www.newsweek.com/sports/nfl/ravens-lamar-jackson-has-surpassed-aaron-rodgers-major-nfl-career-stat-2130770 |access-date=September 16, 2025 |website=[[Newsweek]]}}</ref> Rodgers be among de most efficient quarterbacks of all time. Apart from a regular-season career passer rating of over 100 (de first to ever have a career rating over 100), he sanso dey hold de best touchdown-to-interception ratio den de lowest passing interception percentage insyd NFL history while he sanso get de highest passer rating insyd NFL history thru out de entire 2010s decade. Insyd de postseason, he be second in both touchdown passes den touchdown-to-interception ratio, fourth insyd passing yards, den eighth insyd all-time passer rating. Insyd de regular season, he get de best touchdown-to-interception ratio insyd NFL history at 4.34,<ref name="Football DB">{{Cite web |title=NFL Career Leaders – Passing Touchdown/Interception Ratio |url=http://www.footballdb.com/leaders/career-passing-tdintratio |archive-url=https://web.archive.org/web/20200508102359/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=May 8, 2020 |access-date=November 3, 2014 |website=FootballDB.com}}</ref> he dey hold de league ein second lowest career interception percentage at 1.4 percent<ref name="a">{{Cite web |title=NFL Career Pass Interception % Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |url-status=live |archive-url=https://web.archive.org/web/20110815065956/http://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |archive-date=August 15, 2011 |access-date=September 24, 2015 |work=[[Pro Football Reference]]}}</ref> den de highest single-season passer rating record of 122.5.<ref>{{Cite web |last=Mayer |first=Larry |date=September 12, 2012 |title=Bears gearing up to battle Rodgers |url=http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |url-status=dead |archive-url=https://web.archive.org/web/20150925095614/http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |archive-date=September 25, 2015 |access-date=September 24, 2015 |publisher=[[Chicago Bears]]}}</ref> Rodgers sanso be a four-time winner of de Best NFL Player ESPY Award.
== Early life ==
Ba dem born Aaron Charles Rodgers on December 2, 1983, insyd Chico, California,<ref>{{Cite magazine|title=Aaron Rodgers – No. 12 – QB|url=http://sportsillustrated.cnn.com/football/nfl/players/7200|url-status=dead|archive-url=https://web.archive.org/web/20110719095151/http://sportsillustrated.cnn.com/football/nfl/players/7200/|archive-date=July 19, 2011|access-date=February 6, 2011|magazine=[[Sports Illustrated]]}}</ref> de son of Darla Leigh (née Pittman) den Edward Wesley Rodgers. Na ein poppie be a Texas-born chiropractor wey play football as an offensive lineman give de Chico State Wildcats from 1973 to 1976.<ref name="about1">{{Cite web |last=Powell |first=Kimberly |date=October 15, 2018 |title=Ancestry of Aaron Rodgers |url=https://www.thoughtco.com/family-tree-of-aaron-rodgers-1421929 |url-status=live |archive-url=https://web.archive.org/web/20111211212214/http://genealogy.about.com/od/famous_family_trees/ss/aaron-rodgers.htm |archive-date=December 11, 2011 |access-date=May 10, 2012 |website=ThoughtCo.com}}</ref><ref name="Jackel2005">{{Cite web |last=Jackel |first=Pete |date=October 6, 2005 |title=Focus on Football: Rodgers preparing for his moment |url=http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |url-status=live |archive-url=https://web.archive.org/web/20110127115346/http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |archive-date=January 27, 2011 |access-date=March 14, 2012 |website=RacineSportsZone.com |publisher=JournalTimes.com}}</ref> Rodgers be of English, Irish den German ancestry.<ref name="about1" /> De family move go Ukiah, California, wer he attend Oak Manor Elementary School.<ref name="FreeThrows">{{Cite news|date=January 3, 1993|title='Free throws' are his forte|url=https://newspaperarchive.com/ukiah-daily-journal/1993-01-03/|url-status=live|archive-url=https://web.archive.org/web/20211201192340/https://newspaperarchive.com/browse/us/ca/ukiah/ukiah-daily-journal/|archive-date=December 1, 2021|access-date=March 14, 2012|work=Ukiah Daily Journal|via=Newspaper Archive|page=1}}</ref> Edward Rodgers toss a football plus ein sons Luke, Aaron den [[Jordan Rodgers]], wey he flow dem make dem no told drink den no party insyd college anaa dem go limit demaselves insyd sports like he do. Aaron take dis advice to heart.<ref name="Jackel2005" /> At de age of ten, he be featured on de front page of de ''Ukiah Daily Journal'' for ein top performance at a local basketball free throw competition.<ref name="FreeThrows" />
Later, de family move go Beaverton, Oregon, wer Rodgers attend Vose Elementary School den Whitford Middle School, wey he play baseball insyd de Raleigh Hills Little League at shortstop, center field den pitcher.<ref name="Oregonian">{{Cite web |date=February 5, 2011 |title=Green Bay quarterback Aaron Rodgers has strong ties to Beaverton |url=http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |url-status=live |archive-url=https://web.archive.org/web/20110216014347/http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |archive-date=February 16, 2011 |access-date=February 5, 2011 |work=[[The Oregonian]]}}</ref>
De Rodgers family return to Chico insyd 1997, wey Aaron attend Pleasant Valley High School, starting for two years at quarterback den garnering 4,421 passing yards.<ref>{{Cite web |last=Davidson |first=Joe |date=September 5, 2019 |title=Green Bay Packers quarterback Aaron Rodgers donates 354 new helmets to California high schools |url=https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |url-status=live |archive-url=https://web.archive.org/web/20190925105424/https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |archive-date=September 25, 2019 |access-date=September 13, 2019 |work=[[Honolulu Star-Advertiser]]}}</ref> He set single-game records of six touchdowns den 440 all-purpose yards. Rodgers set a single-season school record plus 2,466 total yards insyd 2001.<ref>{{Cite web |last=Carlton |first=Jimmy |date=April 26, 2018 |title=Of brains, Butte and baseball: How a tiny teenager became #Packers MVP Aaron Rodgers |url=https://onmilwaukee.com/articles/packersaaronrodgersjourney |access-date=May 30, 2024 |website=OnMilwaukee}}</ref> He graduate from Pleasant Valley High School insyd spring 2002, after scoring 1310 insyd de SAT den plus an A− average.<ref>{{Cite web |title=#12 Aaron Rodgers |url=http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |url-status=live |archive-url=https://web.archive.org/web/20110716022313/http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |archive-date=July 16, 2011 |access-date=February 6, 2011 |website=Packer Report |publisher=Scout with FoxSports.com}}</ref><ref>{{Cite news|date=November 20, 2002|title=JC Quarterback Commits to Cal, Butte's Rodgers Could Join the Competition to Replace Boller Next Year|url=http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|url-status=live|archive-url=https://web.archive.org/web/20181113165752/http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|archive-date=November 13, 2018|access-date=May 11, 2012|work=Contra Costa Times|location=Walnut Creek, California|via=NewsBank|quote=[He] scored 1310 on the SAT, so Cal's academic reputation was important to him.}}</ref><ref>{{Cite news|last=Crouse|first=Karen|date=January 31, 2011|title=Packers' Rodgers Has Deep Roots in Chico|url=https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|url-status=live|archive-url=https://web.archive.org/web/20190426170034/https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|archive-date=April 26, 2019|access-date=December 5, 2019|work=[[The New York Times]]|page=D1|quote=Despite his athletic prowess, an A-minus average and an SAT score of 1310, Rodgers did not receive an NCAA Division I scholarship offer coming out of high school.}}</ref>
== College career ==
Despite ein impressive high school record, Rodgers attract little interest from Division I programs.<ref>{{Cite web |last=Kalland |first=Robby |date=September 3, 2015 |title=How Aaron Rodgers went from not being recruited to a star at Cal |url=https://www.cbssports.com/college-football/news/how-aaron-rodgers-went-from-not-being-recruited-to-a-star-at-cal/ |access-date=May 30, 2024 |website=CBSSports.com}}</ref> Insyd a 2011 interview plus ''E:60'', he attribute de relative lack of attention insyd de recruiting process to ein unimposing physical stature as a high school player at {{convert|5|ft|10|in|m|abbr=on}} den {{convert|165|lb|kg}}. Na Rodgers want to attend Florida State den play under head coach [[Bobby Bowden]], buh na dem reject am.<ref name="E60 Youtube">{{Cite web |date=October 27, 2011 |title=E:60 – Aaron Rodgers |url=https://www.youtube.com/watch?v=blrmdIfXPwI |url-status=live |archive-url=https://web.archive.org/web/20120302212553/https://www.youtube.com/watch?v=blrmdIfXPwI |archive-date=March 2, 2012 |access-date=May 13, 2012 |publisher=ESPN |via=YouTube}}</ref> Na he only be offered an opportunity to compete for a scholarship as a walk-on from University of Illinois.<ref>{{Cite news|last=McGrath|first=Jim|date=June 29, 2011|title=Green Bay QB Rodgers Visits All-Pro Campers at W&M|work=Williamsburg Yorktown Daily|url=http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|url-status=dead|access-date=August 22, 2013|archive-url=https://web.archive.org/web/20130921054645/http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|archive-date=September 21, 2013}}</ref> He decline de invitation, wey na he consider quitting football to play baseball instead anaa giving up entirely on de idea of playing insyd professional sports den attending law school after completing ein undergraduate degree.<ref name="Babb">{{Cite news|last=Babb|first=Kent|date=December 15, 2015|title=For Aaron Rodgers, road to the NFL started at an apparent dead end|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|url-status=live|access-date=November 30, 2018|archive-url=https://web.archive.org/web/20181130205037/https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|archive-date=November 30, 2018}}</ref>
He then be recruited to play football at Butte College insyd Oroville, a junior college about {{convert|15|mi|km}} southeast of Chico.<ref>{{Cite book |last=Sandler |first=Michael |url=https://archive.org/details/aaronrodgersgree0000sand |title=Aaron Rodgers and the Green Bay Packers: Super Bowl XLV |date=August 1, 2011 |publisher=Bearport Publishing |isbn=9781617723094 |url-access=registration}}</ref>
=== Butte ===
==== 2002 season ====
Rodgers throw 26 touchdowns insyd ein freshman season at Butte,<ref>{{Cite web |title=Aaron Rodgers |url=https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |url-status=live |archive-url=https://web.archive.org/web/20211028170413/https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |archive-date=October 28, 2021 |access-date=October 13, 2021 |website=California Community Colleges Chancellor's Office}}</ref><ref>{{Cite web |title=Stats & Records |url=http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-url=https://web.archive.org/web/20081202112615/http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-date=December 2, 2008 |access-date=November 18, 2011 |website=butte.edu |publisher=[[Butte College]]}}</ref> leading de school to a 10–1 record, de NorCal Conference championship,<ref>{{Cite web |date=November 8, 2008 |title=Title-tilt bound: Butte secures NorCal championship |url=https://www.chicoer.com/20081108/title-tilt-bound-butte-secures-norcal-championship/ |access-date=May 30, 2024 |work=Chico Enterprise-Record}}</ref> den a {{nowrap|No. 2}} national ranking. While der, na he be discovered by de California Golden Bears ein head coach [[Jeff Tedford]], wey na he dey recruite Butte tight end Garrett Cross.<ref>{{Cite web |last=McGrath |first=Dan |date=November 11, 2004 |title=Cal QB Rodgers has the pedigree |url=https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-url=https://web.archive.org/web/20191205183533/https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-date=December 5, 2019 |access-date=September 13, 2019 |work=Chicago Tribune}}</ref> Na Tedford be surprised to learn say Rodgers no be recruited earlier. Secof Rodgers ein good high school scholastic record, he be eligible to transfer to de University of California, Berkeley after one year of junior college instead of de typical two.<ref name="Cal">{{Cite news|last=Adams|first=Bruce|date=August 3, 2003|title=Cal's QB hope: JC transfer Rodgers has what Tedford likes|work=San Francisco Chronicle|url=https://www.sfchronicle.com/sports/article/Cal-s-QB-hope-JC-transfer-Rodgers-has-what-2598626.php|url-status=live|access-date=22 February 2026}}</ref>
=== California ===
==== 2003 season ====
As a junior college transfer, Rodgers get three years of eligibility at Cal. Na dem name am de starting quarterback insyd de fifth game of de 2003 season, beating de only team wey offer am a {{nowrap|Division I}} opportunity out of high school, Illinois.<ref>{{Cite web |date=October 14, 2014 |title=Aaron Rodgers: I wanted to join Illini; they passed |url=https://www.chicagotribune.com/2014/10/14/aaron-rodgers-i-wanted-to-join-illini-they-passed/ |access-date=May 30, 2024 |work=Chicago Tribune}}</ref> As a sophomore, he help lead de Golden Bears to a 7–3 record as a starter.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{Cite web |last=King |first=Randy |date=December 26, 2003 |title=Virginia Tech finishes on wrong foot with Insight Bowl loss to Cal |url=https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |url-status=live |archive-url=https://web.archive.org/web/20191208021513/https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |work=The Roanoke Times}}</ref>
Insyd ein second career start, Rodgers lead de team to a 21–7 halftime lead against #3 USC. Secof injury, na dem replace Rodgers insyd de second half by Reggie Robertson.<ref name="calfans" /><ref>{{Cite web |date=September 27, 2003 |title=Cal-USC Postgame Quotes |url=http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121444/http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |archive-date=June 9, 2012 |website=California Golden Bears |quote=After the interception for the touchdown, I went over to him and said 'Do you want to take a couple of series off?' and he said 'Yes.' We put Reggie (Robertson) in and Reggie did a nice job for us."}}</ref> De Bears win insyd triple overtime, 34–31.<ref name="calfans">{{Cite web |date=September 27, 2003 |title=Cal fans storm field after win |url=http://espn.go.com/ncf/recap?gameId=232700025 |url-status=dead |archive-url=https://web.archive.org/web/20161119182933/https://www.espn.com/college-football/recap?gameId=232700025 |archive-date=November 19, 2016 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |last=Faraudo |first=Jeff |date=September 29, 2009 |title=Cal's triple-overtime thriller against USC in 2003 produced multiple heroes |url=https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |url-status=live |archive-url=https://web.archive.org/web/20191208021406/https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=East Bay Times}}</ref> Rodgers pass for 394 yards wey na dem name am game MVP insyd de Insight Bowl against Virginia Tech.<ref>{{Cite web |title=Insight Bowl – Virginia Tech vs California Box Score, December 26, 2003 |url=https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |url-status=live |archive-url=https://web.archive.org/web/20180312084010/https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |work=[[Sports Reference]]}}</ref><ref>{{Cite book |last=Tsuchiya |first=Anita |url=https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |title=Aaron Rodgers: Biography of a Super Bowl MVP |date=July 30, 2012 |publisher=Hyperink Inc |isbn=9781614646129 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203201742/https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |archive-date=February 3, 2021 |url-status=live}}</ref>
Insyd 2003, Rodgers tie de school season record for 300-yard games plus five wey he set a school record for de lowest percentage of passes dem intercept at 1.43%.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref>
==== 2004 season ====
As a junior, Rodgers lead Cal to a 10–1 record den top-five ranking at de end of de regular season, plus dema only loss a 23–17 loss at {{nowrap|No. 1}} USC.<ref>{{Cite web |title=2004 California Golden Bears Schedule and Results |url=https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |url-status=live |archive-url=https://web.archive.org/web/20180312085053/https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref> Insyd dat game, Rodgers set a school record for consecutive passes dem plete plus 26 wey he tie an NCAA record plus 23 consecutive passes dem plete insyd one game.<ref>{{Cite web |last=Lee |first=Ted |date=October 10, 2004 |title=It was there for the taking |url=https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-url=https://web.archive.org/web/20191205183922/https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-date=December 5, 2019 |access-date=September 13, 2019 |website=BearTerritory.net}}</ref> Na he set a Cal single-game record for passing completion percentage of 85.3.<ref>{{Cite web |last=Lowry |first=Matthew |date=November 15, 2019 |title=Trojans Throwback: 2004 USC vs California |url=https://www.conquestchronicles.com/football/2019/11/15/20966700/trojans-throwback-2004-usc-vs-california |access-date=May 30, 2024 |work=Conquest Chronicles}}</ref><ref>{{Cite web |last=Wharton |first=David |date=October 10, 2004 |title=Rodgers Can't See It Through to Completion |url=https://www.latimes.com/archives/la-xpm-2004-oct-10-sp-uscside10-story.html |access-date=May 30, 2024 |work=Los Angeles Times}}</ref> Rodgers dey hold de Cal career record for lowest percentage of passes dem intercept at 1.95 percent.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref> Rodgers ein performance set up de Golden Bears at first den goal plus 1:47 remaining den a chance for de game-winning touchdown. On de first play of USC ein goal line stand, Rodgers throw an incomplete pass. Na dis be followed by a second-down sack by [[Manuel Wright]].<ref name="Cal Vs USC 2004" /> After a timeout den Rodgers ein incomplete pass on third down, USC stop Cal ein run play to win de game.<ref name="Cal Vs USC 2004" /> Rodgers comment say na e be "frustrating dat we no fi get de job done."<ref name="Cal Vs USC 2004">{{Cite web |date=October 9, 2004 |title=Trojans' defense stymies Cal QB at first-and-goal |url=http://scores.espn.go.com/ncf/recap?gameId=242830030 |url-status=dead |archive-url=https://web.archive.org/web/20170817065913/http://scores.espn.com/ncf/recap?gameId=242830030 |archive-date=August 17, 2017 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Overall, he fini de 2004 season plus 2,566 passing yards, 24 touchdowns, den eight interceptions. Ein 66.1% pass completion percentage lead de Pac-10.<ref>{{Cite web |title=Aaron Rodgers 2004 Game Log |url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |url-status=live |archive-url=https://web.archive.org/web/20180312084136/https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref><ref>{{Cite web |title=2004 Pacific-10 Conference Leaders |url=https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |url-status=live |archive-url=https://web.archive.org/web/20180328231847/https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Sports Reference]]}}</ref> He fini ninth insyd Heisman Trophy voting.<ref>{{Cite web |title=2004 Heisman Trophy Voting |url=https://www.sports-reference.com/cfb/awards/heisman-2004.html |access-date=December 2, 2022 |website=[[Sports Reference]] |language=en}}</ref>
After na dem pick Texas over Cal for a Rose Bowl berth, na dem award de fourth-ranked Bears a spot insyd de Holiday Bowl, wich dem loose to Texas Tech, 45–31.<ref>{{Cite web |date=December 15, 2017 |title=2004 Holiday Bowl: Cal caught in Texas Tech's Air Raid |url=https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208021644/https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> After de season, Rodgers decide to forgo ein senior season to enter de 2005 NFL draft.<ref>{{Cite web |date=January 6, 2005 |title=Who to watch in 2005 |url=http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |url-status=live |archive-url=https://web.archive.org/web/20190426144539/http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |archive-date=April 26, 2019 |access-date=February 15, 2012 |website=Chico News & Review}}</ref>
== Professional career ==
=== 2005 NFL draft ===
Na Rodgers be expected to be selected early insyd de 2005 NFL draft as he post impressive numbers as a junior plus Cal, throwing for 2,320 yards plus a 67.5 completion rate insyd de regular season. He throw for 24 touchdowns den only eight interceptions insyd ein last college season, impressing chaw NFL scouts. Na dem comment say na he be a "talented strong-armed junior"<ref name="Draft Insider">{{Cite web |title=NFL Draft – QB Aaron Rodgers |url=http://www.draftinsiders.com/node/1288 |url-status=dead |archive-url=https://web.archive.org/web/20120111054622/http://www.draftinsiders.com/node/1288 |archive-date=January 11, 2012 |access-date=December 9, 2011 |website=DraftInsiders.com}}</ref> wey dey "combine arm strength, mechanics den delivery to make all de throws", buh dem note say ein stats fi be inflated secof playing insyd a quarterback-friendly system den dat he go need to adjust to de more elaborate defensive schemes of de NFL.<ref name="Draft Insider" />
Before de draft, na Rodgers be confident say he go be drafted to de San Francisco 49ers, de team he support den grow up near,<ref name="Bensiger">{{Cite AV media |url=https://www.youtube.com/watch?v=8_a6O3vdlU0 |title=In Depth with Graham Bensinger: Aaron Rodgers: Thought I'd be a 49er |date=December 21, 2016 |last=Bensinger |first=Graham |type=Television production, YouTube video |access-date=December 26, 2016 |archive-url=https://ghostarchive.org/varchive/youtube/20211212/8_a6O3vdlU0 |archive-date=December 12, 2021 |url-status=live |orig-year=2010}}</ref> wey possess de No. 1 overall pick insyd de draft.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> De 49ers, however, draft quarterback [[Alex Smith]] out of Utah instead, wey Rodgers slid all de way down to de 24th overall pick by de Green Bay Packers. Na Rodgers say he experience much angst den restlessness wen waiting to be selected several hours into de draft, as na he expect einself to be selected much sooner.<ref name="Bensiger" /> Rodgers ein slip to de 24th selection den de Packers choosing to pick [[Brett Favre]] ein future replacement cam be one of de biggest stories of de draft, though na he still be de second quarterback dem select. Na ein drop insyd de draft later be ranked number one on de NFL Network ein Top 10 Draft Day Moments.<ref>{{Cite web |last=Currie |first=David |date=April 27, 2017 |title=NFL Draft: Top 10 Moments – Aaron Rodgers falling to Tim Tebow trade |url=https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |url-status=live |archive-url=https://web.archive.org/web/20200727131640/https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |archive-date=July 27, 2020 |access-date=September 13, 2019 |website=Sky Sports}}</ref> Chaw teams wey dey draft between de second den 23rd positions get positional needs more pressing dan quarterback.<ref name="ESPN Column">{{Cite web |last=Clayton |first=John |date=April 23, 2005 |title=Clayton: Waiting is the hardest part |url=https://www.espn.com/nfl/draft05/columns/story?columnist=clayton_john&id=2044646 |url-status=live |archive-url=https://web.archive.org/web/20160702194839/http://espn.go.com/nfl/draft05/columns/story?id=2044646&columnist=clayton_john |archive-date=July 2, 2016 |access-date=April 27, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |title=2005 NFL Draft Listing |url=https://www.pro-football-reference.com/years/2005/draft.htm |url-status=live |archive-url=https://web.archive.org/web/20170921001516/https://www.pro-football-reference.com/years/2005/draft.htm |archive-date=September 21, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers be one of six quarterbacks wey [[Jeff Tedford]] coach to be drafted insyd de first round of an NFL draft, joining [[Trent Dilfer]], [[Akili Smith]], [[David Carr (American football)|David Carr]], [[Joey Harrington]] den [[Kyle Boller]].<ref>{{Cite news|last=Greenberg|first=Steve|date=November 20, 2012|title=Jeff Tedford developed Aaron Rodgers, but recent QBs struggled|work=Sporting News|url=http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|url-status=live|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20161230042613/http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|archive-date=December 30, 2016}}</ref>
=== Green Bay Packers ===
==== Backup years: 2005–2007 ====
Insyd August 2005, Rodgers agree to a reported five-year, $7.7 million deal wey include $5.4 million in guaranteed money wey e get de potential to pay am as much as $24.5 million if na dem meet all incentives den escalators.<ref name="Sportrac Contract">{{Cite web |title=Aaron Rodgers Contract Breakdown |url=https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |url-status=live |archive-url=https://web.archive.org/web/20210506052810/https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |archive-date=May 6, 2021 |access-date=November 15, 2021 |website=Spotrac.com |language=en-US}}</ref>
Rodgers spend ein rookie season as de Packers dema backup quarterback behind Brett Favre.<ref>{{Cite web |title=2005 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2005.htm |url-status=live |archive-url=https://web.archive.org/web/20211107183417/https://www.pro-football-reference.com/teams/gnb/2005.htm |archive-date=November 7, 2021 |access-date=December 8, 2019 |website=[[Pro Football Reference]]}}</ref> Na de Packers be 4–12 at dis point wey he receive ein first extended look insyd de opening preseason game against de San Diego Chargers after replacing Favre.<ref name="Chargers Vs Packers 2005 Preseason">{{Cite web |date=August 11, 2005 |title=Favre completes nine of 10 passes for 91 yards, TD |url=http://scores.espn.go.com/nfl/recap?gameId=250811009 |archive-url=https://web.archive.org/web/20180127084112/https://www.espn.com/nfl/recap?gameId=250811009 |archive-date=January 27, 2018 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd ein first NFL game, Rodgers plete two out of seven passes wey na dem sack am twice. He continue to struggle thru de preseason, before ending de preseason by converting two third downs den throwing a touchdown pass to tight end [[Ben Steele]] against de Tennessee Titans.<ref name="GB Vs Tennesee">{{Cite web |date=September 1, 2005 |title=Green Bay 21, Tennessee 17 |url=http://scores.espn.go.com/nfl/recap?gameId=250901010 |url-status=dead |archive-url=https://web.archive.org/web/20131105175854/http://scores.espn.go.com/nfl/recap?gameId=250901010 |archive-date=November 5, 2013 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Once de regular season begin, Rodgers see very little action dat year. He play against de New Orleans Saints insyd de fourth quarter of a 52–3 victory, wey he plete ein first career pass to fullback [[Vonta Leach]] for 0 yards.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> On {{nowrap|December 19, 2005,}} Rodgers enter de game against de Baltimore Ravens at de end of de third quarter insyd a 48–3 loss.<ref name="Green Bay Bio" /> He plete eight of 15 passes for 65 yards den an interception.<ref name="Packers Vs. Ravens 2005">{{Cite web |date=December 20, 2005 |title=Boller outplays Favre in Ravens' rout of Packers |url=http://scores.espn.go.com/nfl/recap?gameId=251219033 |url-status=dead |archive-url=https://web.archive.org/web/20121023103816/http://scores.espn.go.com/nfl/recap?gameId=251219033 |archive-date=October 23, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref>
After de Packers dema losing season, na dem fire den replace head coach [[Mike Sherman]] by [[Mike McCarthy]].<ref name="Packers Fire Sherman">{{Cite news|date=January 2, 2006|title=Packers fire coach Mike Sherman|work=Yahoo! Sports|url=https://sports.yahoo.com/nfl/news?slug=packerssherman|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20140426105024/https://sports.yahoo.com/nfl/news?slug=packerssherman|archive-date=April 26, 2014}}</ref><ref name="Packers to hire 49ers">{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=January 12, 2006 |title=Packers to hire 49ers' McCarthy as coach |url=https://www.espn.com/nfl/news/story?id=2288985 |url-status=live |archive-url=https://web.archive.org/web/20121014050433/http://sports.espn.go.com/nfl/news/story?id=2288985 |archive-date=October 14, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]]}}</ref> Rodgers then be placed insyd McCarthy ein "Quarterback school" for six hours a day several times a week.<ref name="Journal Sentinel">{{Cite web |last=Silverstein |first=Tom |date=September 7, 2008 |title=The Education of Aaron Rodgers |url=http://www.jsonline.com/sports/packers/32579374.html |url-status=live |archive-url=https://web.archive.org/web/20101223123643/http://www.jsonline.com/sports/packers/32579374.html |archive-date=December 23, 2010 |access-date=May 11, 2012 |website=Milwaukee Journal Sentinel}}</ref> Dis focus on working on Rodgers ein motor skills such as hand-eye coordination, finger dexterity, den mechanics.<ref name="New York Times QB School">{{Cite news|last=Bishop|first=Greg|date=December 2, 2011|title=The Education of a Quarterback|work=The New York Times|url=https://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|url-status=live|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20120501123445/http://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|archive-date=May 1, 2012}}</ref> McCarthy sanso work on Rodgers ein release point, moving am from right beside de ear hole of ein helmet to further below am, to give am a smoother release.<ref name="Aaron Rodgers Leader of The Pack">{{Cite book |last=Reischel |first=Rob |title=Aaron Rodgers: Leader of the Pack: An Intimate Portrait of a Super Bowl MVP |date=March 1, 2011 |publisher=Triumph Books |isbn=978-1-60078-645-7 |language=English}}</ref> Wen de 2006 preseason begin, Rodgers play as de backup insyd all four games; he plete 22 out 38 passes for 323 yards den three touchdowns.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> Rodgers see very little action during de 2006 season, buh did step insyd briefly on {{nowrap|October 2}} against de Philadelphia Eagles wen Favre lef de game secof injury.<ref name="Green Bay Bio" /> On {{nowrap|November 19, 2006,}} Rodgers break ein left foot while playing against de New England Patriots insyd a 35–0 defeat at home, filling insyd for an injured Favre, wey Rodgers miss de remainder of de 2006 season.<ref name="Journal Sentinel" />
Following de team ein season-ending victory at Chicago, Favre announce say he go stay plus de Packers for de 2007 season, again postponing Rodgers ein hopes of becoming de Packers dema starting quarterback.<ref name="Favre">{{Cite web |last=Silverstein |first=Tom |date=January 7, 2007 |title=Favre leaves lasting impression |url=http://www.jsonline.com/news/milwaukee/29212859.html |url-status=dead |archive-url=https://web.archive.org/web/20120908152601/http://www.jsonline.com/news/milwaukee/29212859.html |archive-date=September 8, 2012 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref> Prior to de 2007 season, rumors surface about a potential trade involving Rodgers insyd wich he go be traded to de Oakland Raiders for wide receiver [[Randy Moss]].<ref>{{Cite web |date=March 18, 2007 |title=Packers GM insists QB Rodgers not on trading block |url=https://www.espn.com/nfl/news/story?id=2803272 |url-status=live |archive-url=https://web.archive.org/web/20121107040642/http://sports.espn.go.com/nfl/news/story?id=2803272 |archive-date=November 7, 2012 |access-date=December 30, 2010 |website=[[ESPN.com]]}}</ref> However, Moss be traded to de Patriots during de second day of de 2007 NFL draft, wey Rodgers stay insyd Green Bay.<ref>{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=April 29, 2007 |title=Pats acquire WR Moss from Raiders for draft pick |url=https://www.espn.com/nfl/draft07/news/story?id=2853116 |url-status=live |archive-url=https://web.archive.org/web/20171229132248/http://www.espn.com/nfl/draft07/news/story?id=2853116 |archive-date=December 29, 2017 |access-date=January 1, 2018 |website=[[ESPN.com]]}}</ref>
Rodgers step in wen na Favre injure insyd de second quarter against de Dallas Cowboys on ''Thursday Night Football'' on {{nowrap|November 29, 2007}}.<ref name="Cowboys Versus Packers 2007">{{Cite web |date=November 30, 2007 |title=Cowboys hold off Favre-less Packers to clinch playoff berth |url=http://scores.espn.go.com/nfl/recap?gameId=271129006 |url-status=dead |archive-url=https://web.archive.org/web/20121111035600/http://scores.espn.go.com/nfl/recap?gameId=271129006 |archive-date=November 11, 2012 |access-date=May 12, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers plete 18 passes for 201 yards, plus no interceptions.<ref name="Cowboys Versus Packers 2007" /> He sanso throw ein first touchdown pass buh na he be sacked three times.<ref name="Cowboys Versus Packers 2007" /> Rodgers bring de team back from a 17-point deficit to a 3-point deficit, buh de Cowboys go on to win 37–27.<ref name="Cowboys Versus Packers 2007" />
==== 2008: Transition to starter ====
[[File:AaronRodgers.jpg|left|thumb|Rodgers going down de tunnel at Lambeau Field insyd 2008]]
Favre ein retirement announcement on {{nowrap|March 4, 2008,}} open up de Packers dema starting quarterback position to Rodgers for de 2008 season. Although Favre decide to return from retirement, he be traded to de New York Jets, wich mean say Rodgers go cam be de starter.<ref>{{Cite web |last=Nickel |first=Lori |date=March 9, 2008 |title=Rodgers preparing to assume control |url=http://www.jsonline.com/story/index.aspx?id=726140 |url-status=dead |archive-url=https://web.archive.org/web/20081007044908/http://www.jsonline.com/story/index.aspx?id=726140 |archive-date=October 7, 2008 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref>
Rodgers quickly prove say na he be one of de best quarterbacks insyd de league by passing for 4,038 yards insyd ein first season as a starter as well as throwing for 28 touchdowns den only 13 interceptions. As of de 2025 season, dis still dey stand as de most interceptions he throw insyd a season.<ref>{{Cite web |title=Aaron Rodgers 2008 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |url-status=live |archive-url=https://web.archive.org/web/20180313183821/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Plus Rodgers making ein debut as a starter, de Packers beat de Minnesota Vikings 24–19 at Lambeau Field. Dis mark de first time since 1992 wey a quarterback oda dan Favre start a regular season game give de Packers. Rodgers end de game plus 178 yards passing den two touchdowns (one passing den one rushing).<ref name="Rodgers Debut">{{Cite web |last=Jenkins |first=Chris |date=September 10, 2008 |title=Solid debut frees Rodgers from post-Favre scrutiny |url=http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |url-status=live |archive-url=https://web.archive.org/web/20130921062040/http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |archive-date=September 21, 2013 |access-date=May 13, 2012 |website=USA Today |agency=Associated Press}}</ref> Insyd just ein second NFL start de following week, na dem vote Rodgers de FedEx Air award winner after passing for 328 yards den three touchdowns insyd a win against de Lions.<ref name="FedEx Air and Ground Winners Week 2 2008">{{Cite web |date=September 20, 2008 |title=FedEx Air and Ground Week 2 2008 Winners |url=http://www.nfl.com/videos?videoId=09000d5d80af20df |url-status=live |archive-url=https://web.archive.org/web/20090108060338/http://www.nfl.com/videos?videoId=09000d5d80af20df |archive-date=January 8, 2009 |access-date=September 20, 2008 |website=NFL Network |publisher=National Football League}}</ref>
During de fourth week of de season, Rodgers ein streak of 157 consecutive pass attempts widout an interception end wen na he be intercepted by [[Derrick Brooks]] of de Tampa Bay Buccaneers. Na de streak be de third-longest insyd franchise history behind [[Bart Starr]] (294) den Brett Favre (163).<ref name="Buccaneers">{{Cite web |date=September 29, 2008 |title=Buccaneers' defense rattles Rodgers in win over Packers |url=http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081001100738/http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |archive-date=October 1, 2008 |access-date=September 29, 2008 |publisher=National Football League}}</ref> Rodgers suffer a severe shoulder sprain insyd de game buh he continue to start den play well insyd a win against de Seattle Seahawks two weeks later.<ref name="Rodgers">{{Cite web |last=Jenkins |first=Chris |date=December 26, 2008 |title=Packers' Rodgers learns lessons from trying season |url=http://seattletimes.nwsource.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-url=https://web.archive.org/web/20150226064522/http://old.seattletimes.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-date=February 26, 2015 |access-date=May 13, 2012 |website=The Seattle Times}}</ref> Despite early successes, Rodgers be unable to win a close game during de season despite seven opportunities to do so.<ref name="Rodgers" /><ref name="Bears cap unlikely rally with OT win to stay alive in playoff race">{{Cite web |date=December 23, 2008 |title=Bears cap unlikely rally with OT win to stay alive in playoff race |url=http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081225222724/http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |archive-date=December 25, 2008 |access-date=December 23, 2008 |publisher=National Football League |agency=Associated Press}}</ref>
On {{nowrap|October 31, 2008}}, Rodgers sign a six-year, {{nowrap|$65 million}} contract extension thru de 2014 season.<ref name="Packers Sign Rodgers Through 2014">{{Cite web |date=October 31, 2008 |title=Packers sign QB Rodgers to $65M extension through 2014 |url=https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |url-status=live |archive-url=https://web.archive.org/web/20201204181536/https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |archive-date=December 4, 2020 |access-date=April 27, 2022 |publisher=National Football League |language=en-US |agency=Associated Press}}</ref><ref name="Contracts: Rodgers vs. Romo">{{Cite web |last=Silverstein |first=Tom |date=November 5, 2008 |title=Contracts: Rodgers vs. Romo |url=http://www.jsonline.com/sports/packers/33941369.html |url-status=live |archive-url=https://web.archive.org/web/20081205152249/http://www.jsonline.com/sports/packers/33941369.html |archive-date=December 5, 2008 |access-date=November 6, 2008 |website=JSOnline |publisher=Milwaukee Journal-Sentinel}}</ref> Insyd Rodgers ein first full season plus de team, de Packers fini plus a 6–10 record wey dem miss de playoffs.<ref>{{Cite web |title=2008 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2008.htm |url-status=live |archive-url=https://web.archive.org/web/20180907044946/https://www.pro-football-reference.com/teams/gnb/2008.htm |archive-date=September 7, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2009 ====
For de opening game of de 2009 season, Rodgers record ein first win insyd a comeback situation. Na de Packers dey trail at de beginning of de fourth quarter wen Rodgers plete a fifty-yard touchdown pass to wide receiver [[Greg Jennings]] plus about a minute remaining insyd de game to contribute to de 21–15 victory over de Chicago Bears.<ref>{{Cite web |last=Jenkins |first=Chris |date=December 8, 2019 |title=Rodgers brings Pack back for 21–15 win over Bears |url=https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |url-status=dead |archive-url=https://web.archive.org/web/20191208022530/https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Holland Sentinel}}</ref>
Na dem name Rodgers NFC Offensive Player of de Month for {{nowrap|October 2009}}, wen he pass for 988 yards, he plete 74.5 percent of ein passes, wey he record a passer rating over 110 for all three games he play during de month.<ref name="Rodgers, Sharper, Knox win NFC player of month honors">{{Cite web |last=Rosenthal |first=Gregg |date=October 29, 2009 |title=Rodgers, Sharper, Knox win NFC player of month honors |url=http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |url-status=live |archive-url=https://web.archive.org/web/20140112100938/http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |archive-date=January 12, 2014 |access-date=May 13, 2012 |website=ProFootballTalk.com}}</ref>
After a 4–4 start to de season den a 38–28 loss to de previously winless Buccaneers,<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – November 8th, 2009 |url=https://www.pro-football-reference.com/boxscores/200911080tam.htm |url-status=live |archive-url=https://web.archive.org/web/20171108032603/https://www.pro-football-reference.com/boxscores/200911080tam.htm |archive-date=November 8, 2017 |access-date=November 4, 2017 |website=[[Pro Football Reference]]}}</ref> de team begin to heat up. Rodgers lead de Packers to five straight wins, insyd wich he throw for a total of 1,324 yards, nine touchdowns, den two interceptions.<ref>{{Cite web |title=Aaron Rodgers – Games 9–13 in 2009 |url=http://pfref.com/tiny/3NZjQ |url-status=live |archive-url=https://web.archive.org/web/20211201192346/https://stathead.com/tools/tiny.fcgi?id=3NZjQ |archive-date=December 1, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers win two of dema last three games, finishing de second half of de season plus a 7–1 record den an overall 11–5 record; good enough to secure a wild card playoff berth wey dem clinch de fifth seed insyd de playoffs.<ref>{{Cite web |title=Aaron Rodgers 2009 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180101211154/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2009 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2009.htm |url-status=live |archive-url=https://web.archive.org/web/20171115032207/https://www.pro-football-reference.com/teams/gnb/2009.htm |archive-date=November 15, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers set a new franchise record by scoring 461 total points (third insyd de league), breaking de previous record wey de 1996 Super Bowl team (456) hold.<ref>{{Cite web |title=2009 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180504033136/https://www.pro-football-reference.com/years/2009/ |archive-date=May 4, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=1996 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/1996/ |url-status=live |archive-url=https://web.archive.org/web/20100211094812/http://www.pro-football-reference.com/years/1996/ |archive-date=February 11, 2010 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers cam be de first quarterback insyd NFL history ever to throw for 4,000 yards insyd both of ein first two years as a starter.<ref name="Rodgers Proscout.com">{{Cite web |last=Huber |first=Bill |date=May 9, 2012 |title=Wisconsin Makes 12–12–12 'Aaron Rodgers Day' |url=http://gnb.scout.com/2/1185173.html |url-status=dead |archive-url=https://web.archive.org/web/20130701070113/http://gnb.scout.com/2/1185173.html |archive-date=July 1, 2013 |access-date=May 13, 2012 |work=Fox Sports}}</ref> He fini de season fourth insyd passing yards (4,434), touchdown passes (30), passer rating (103.2), den yards per attempt (8.2) as well as eighth insyd completion percentage (64.7%), while he sanso cam second among quarterbacks insyd rushing yards (316).<ref>{{Cite web |title=Quarterbacks by rushing yards, 2009 season |url=http://pfref.com/tiny/dkEhS |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=dkEhS |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Ein passing yardage make am second all-time insyd Packers history, behind only [[Lynn Dickey]] ein all-time single-season record.<ref>{{Cite web |title=Individual Records – Passing |url=http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |url-status=live |archive-url=https://web.archive.org/web/20210126102232/http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |archive-date=January 26, 2021 |access-date=January 8, 2011 |publisher=Packers.com}}</ref> Na ein passer rating of 103.2 sanso be third-highest insyd team history at de time, behind only [[Bart Starr]] ein 105.0 rating insyd 1966 den 104.3 rating insyd 1968 (minimum 150 attempts).<ref>{{Cite web |title=Green Bay Packers, 1950–2009, highest passer rating. |url=http://pfref.com/tiny/a4QtT |url-status=live |archive-url=https://web.archive.org/web/20211201192343/https://stathead.com/tools/tiny.fcgi?id=a4QtT |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref>
[[File:Aaron_Rodgers_-_December_27,_2009_2.jpg|thumb|Rodgers insyd 2009, before a snap]]
Insyd de Wild Card Round, de Packers play de Arizona Cardinals, de same team wey na dem previously beat de week before, 33–7.<ref>{{Cite web |last=Baum |first=Bob |date=January 4, 2010 |title=Rodgers shreds Cardinals backups in 33–7 rout |url=https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208022718/https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Rodgers den Cardinals quarterback [[Kurt Warner]] put on a show wey dem later rank second on NFL Network ein ''Top 10 Quarterback Duels''.<ref>{{Cite web |title=Top Ten Quarterback Duels |url=http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |url-status=live |archive-url=https://web.archive.org/web/20180101135801/http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |archive-date=January 1, 2018 |access-date=January 1, 2018 |publisher=National Football League}}</ref> Na Rodgers ein first pass be intercepted by [[Dominique Rodgers-Cromartie]].<ref>{{Cite web |title=Wild Card – Green Bay Packers at Arizona Cardinals – January 10th, 2010 |url=https://www.pro-football-reference.com/boxscores/201001100crd.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003908/https://www.pro-football-reference.com/boxscores/201001100crd.htm |archive-date=August 21, 2017 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Rodgers settle down after dat miscue, however, wey he fini de game completing 28 of 42 passes for 423 yards, plus four touchdown passes all insyd a second-half comeback. Ein 423 passing yards be de most by any quarterback insyd ein first playoff game as well as ein four touchdown passes den five total touchdowns.<ref>{{Cite book |last=Cohen |first=Robert W. |url=https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |title=The 50 Greatest Players in Green Bay Packers History |date=September 1, 2018 |publisher=Rowman & Littlefield |isbn=9781493031894 |language=en |access-date=September 13, 2019 |archive-url=https://web.archive.org/web/20210203205326/https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |archive-date=February 3, 2021 |url-status=live}}</ref> Warner shred de Packers dema second-ranked defense, completing 29 of 33 passes for 379 yards, five touchdowns, no interceptions, den a passer rating of 154.1. Despite Rodgers ein offensive efforts, de Packers loose de game wen he fumble on a controversial play insyd overtime. Na dem return de ball by [[Karlos Dansby]] for de winning touchdown insyd de 51–45 Cardinals victory.<ref>{{Cite news|last=Crouse|first=Karen|date=January 10, 2010|title=Cardinals' Defense Ends Shootout With Packers in Overtime|work=The New York Times|url=https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20190824010502/https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|archive-date=August 24, 2019}}</ref> Na e be de highest scoring playoff game insyd NFL history.<ref>{{Cite web |date=January 10, 2015 |title=Remembering The Day of the Highest Scoring Playoff Game in NFL History |url=http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |url-status=live |archive-url=https://web.archive.org/web/20191208022939/http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=ThePostGame.com}}</ref>
Secof ein regular season performance, Rodgers earn a trip to ein first Pro Bowl as de NFC ein third quarterback, behind [[Drew Brees]] den Brett Favre. However, after Favre drop out secof injury wey Brees replace am secof ein participation insyd Super Bowl XLIV, Rodgers cam be de NFC ein starter.<ref>{{Cite web |title=2009 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2009/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180821031640/https://www.pro-football-reference.com/years/2009/probowl.htm |archive-date=August 21, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2010: Super Bowl XLV season ====
Insyd 2010, Rodgers lead de Packers to a 2–0 start, buh then dem loose three of dema next four games, wey dey include back-to-back overtime losses. De two overtime defeats bring Rodgers ein record insyd overtime games to 0–5.<ref>{{Cite web |title=2010 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2010.htm |url-status=live |archive-url=https://web.archive.org/web/20180313175307/https://www.pro-football-reference.com/teams/gnb/2010.htm |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
At midseason, Rodgers already throw nine interceptions dem compare to only throwing seven all of de previous season, wey na he be 16th insyd de league plus an 85.3 passer rating.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 1–8 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Over de remainder of de regular season, however, ein play improve as he throw 16 touchdowns to only two interceptions, he plete 71.4% of ein passes, wey he get a passer rating of 122.0.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 9–16 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref>
Insyd {{nowrap|Week 13}}, insyd a 34–16 victory over de San Francisco 49ers, Rodgers get 298 passing yards den three touchdowns to earn ein first career NFC Offensive Player of de Week honor.<ref>{{Cite web |title=AP Game Story: Packers Topple 49ers, 34–16 |url=https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |url-status=live |archive-url=https://web.archive.org/web/20191208221408/https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=packers.com}}</ref><ref>{{Cite web |title=2010 NFL Week 13 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_13.htm |url-status=live |archive-url=https://web.archive.org/web/20180319084545/https://www.pro-football-reference.com/years/2010/week_13.htm |archive-date=March 19, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd {{nowrap|Week 14}}, he sustain ein second concussion of de season. Na dem put backup [[Matt Flynn (American football)|Matt Flynn]] into de game as Rodgers ein replacement. De Packers loose de game 7–3 to de Lions.<ref>{{Cite web |last=Lage |first=Larry |date=December 12, 2010 |title=Rodgers suffers concussion in Packers' 7–3 loss to Lions |url=https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |url-status=live |archive-url=https://web.archive.org/web/20191208023253/https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The Journal Times |agency=Associated Press}}</ref> Against de Patriots, Rodgers miss de next week ein regular season start, ending ein streak of consecutive starts at 45, wich be tied for de second longest insyd team history.<ref name="Green Bay Packers QB Matt Flynn has fine 1st road start">{{Cite web |author=<!-- not stated --> |date=June 16, 2015 |title=Matt Flynn has plenty to learn at minicamp as new Patriots backup QB |url=https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |url-status=live |archive-url=https://web.archive.org/web/20211206085002/https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |archive-date=December 6, 2021 |access-date=March 3, 2026 |website=Fox Sports |publisher= |location=}}</ref>
After dema road loss to de Patriots, de Packers find demaselves at 8–6 wey dem for win dema final two regular season games to qualify for de playoffs. Rodgers turn around de team ein performance; dem win dema final two regular season games, one of dem against de New York Giants, wer Rodgers plete 25 of 37 passes for 404 yards, plus four touchdown passes, den plus a passer rating of 139.9.<ref>{{Cite news|date=December 26, 2010|title=NFL: Rodgers, Packers hammer Giants|url=https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|url-status=live|archive-url=https://web.archive.org/web/20191208023159/https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|archive-date=December 8, 2019|access-date=December 8, 2019|website=New Haven Register|agency=Associated Press}}</ref> Na e be ein first regular season 400-yard passing game. For ein effort against de Giants, he earn ein second NFC Offensive Player of de Week honor for de 2010 season.<ref>{{Cite web |title=2010 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002511/https://www.pro-football-reference.com/years/2010/week_16.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de next game, dem defeat de Bears by a score of 10–3 insyd de regular season finale.<ref name="Packers 10, Bears 3: Nothing Comes Easy">{{Cite web |last=Wilde |first=Jason |date=January 2, 2011 |title=Packers 10, Bears 3: Nothing Comes Easy |url=http://www.channel3000.com/sports/26347682/detail.html |url-status=dead |archive-url=https://web.archive.org/web/20110208054239/http://www.channel3000.com/sports/26347682/detail.html |archive-date=February 8, 2011 |access-date=January 24, 2011 |website=Channel3000.com}}</ref>
Na dem name Rodgers de FedEx Air NFL Player of de Year for ein passing performance insyd de 2010 season.<ref>{{Cite web |title=Aaron Rodgers voted FedEx Air NFL Player of the Year |url=http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |url-status=dead |archive-url=https://web.archive.org/web/20110225154931/http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |archive-date=February 25, 2011 |access-date=February 2, 2011 |publisher=Packers.com}}</ref>
[[File:Aaron_Rodgers_-_January_2,_2011_4.jpg|right|thumb|Rodgers dey greet de fans insyd Lambeau Field during de 2010 season ein finale against de Bears]]
Plus a 10–6 record, de Packers enter de playoffs as a Wild Card den de {{nowrap|No. 6}} seed. Insyd de Wild Card Round, dem defeat de {{nowrap|No. 3}} seeded Eagles 21–16.<ref>{{Cite web |date=January 9, 2011 |title=Rodgers, Packers Beat Eagles 21–16 |url=https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |url-status=live |archive-url=https://web.archive.org/web/20191208023430/https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=CBS – New York}}</ref> Insyd de Divisional Round, Rodgers plete 31 of 36 pass attempts for 366 yards den four touchdowns insyd a 48–21 blowout victory over de {{nowrap|No. 1}} seeded Atlanta Falcons.<ref>{{Cite news|last=Newberry|first=Paul|date=January 16, 2011|title=Rodgers stars in Green Bay's 48–21 rout of Falcons|publisher=AP via Yahoo Sports|url=https://sports.yahoo.com/nfl/recap?gid=20110115001|url-status=live|access-date=January 24, 2011|archive-url=https://web.archive.org/web/20110119180042/https://sports.yahoo.com/nfl/recap?gid=20110115001|archive-date=January 19, 2011}}</ref> Na e be de most points dem score insyd Packers postseason history.<ref>{{Cite web |title=Green Bay Packers Playoff History |url=https://www.pro-football-reference.com/teams/gnb/playoffs.htm |url-status=live |archive-url=https://web.archive.org/web/20161220082023/http://www.pro-football-reference.com/teams/gnb/playoffs.htm |archive-date=December 20, 2016 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> During de contest, Rodgers tie an NFL record for consecutive playoff games plus at least three touchdown passes (3 games). Rodgers sanso set an NFL record by becoming de only quarterback to pass for ten touchdowns dem combine thru three consecutive playoff games. On {{nowrap|January 23, 2011,}} Rodgers get a 55.4 passer rating as de Packers beat de {{nowrap|No. 2}} seed Chicago Bears 21–14 win insyd de NFC Championship.<ref>{{Cite news|date=January 23, 2011|title=NFC championship: Aaron Rodgers leads Packers past Bears 21–14|work=East Bay Times|agency=Associated Press|url=https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20200724211418/https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|archive-date=July 24, 2020}}</ref>
After winning de NFC Championship, de Packers earn a trip to Super Bowl XLV against de Pittsburgh Steelers. Insyd de game, Rodgers plete 24 of 39 pass attempts for 304 yards den three touchdowns insyd de 31–25 win, wey na dem name am Super Bowl MVP for ein performance.<ref name="Layden2011">{{Cite magazine|last=Layden|first=Tim|date=February 14, 2011|title=Green And Golden: Behind the poise and precision of quarterback Aaron Rodgers and the gutsy contributions of a host of role players, the Packers burnished their championship legacy with a memorable 31—25 victory over Pittsburgh in Super Bowl XLV|url=http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|url-status=dead|archive-url=https://web.archive.org/web/20131029203436/http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|archive-date=October 29, 2013|access-date=February 11, 2011|magazine=Sports Illustrated}}</ref><ref>{{Cite web |date=February 6, 2011 |title=Aaron Rodgers tosses 3 TD passes as Packers drop Steelers to win Super Bowl XLV |url=http://espn.go.com/nfl/recap?gameId=310206009 |url-status=dead |archive-url=https://web.archive.org/web/20110225151826/http://espn.go.com/nfl/recap?gameId=310206009 |archive-date=February 25, 2011 |access-date=February 7, 2011 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Dis ultimately go be ein only Super Bowl appearance plus de Packers.
From ein playoff performance, Rodgers cam be only se third player insyd NFL history to pass for over 1,000 yards insyd a single postseason wey he sanso cam be one of only four quarterbacks to record over 300 yards passing, plus at least three touchdown passes, den no interceptions insyd a Super Bowl.<ref>{{Cite web |title=Super Bowl, 300+ pass yds, 3+ TD, 0 Int |url=http://pfref.com/tiny/1posa |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=1posa |archive-date=December 1, 2021 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> He fini plus 1,094 passing yards, nine touchdown passes, two rushing touchdowns, den two interceptions, while completing 68.2% of ein passes for a passer rating of 109.8.<ref>{{Cite web |title=Aaron Rodgers Career Playoff Stats |url=https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |url-status=live |archive-url=https://web.archive.org/web/20220427191344/https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |archive-date=April 27, 2022 |access-date=April 27, 2022 |website=StatMuse |language=en}}</ref> From dis postseason, Rodgers sanso cam be de only player to pass for at least 900 yards den rush for at least two touchdowns insyd a single postseason.<ref>{{Cite web |title=Playoffs, 900+ pass yds, 2 rush TDs |url=https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |url-status=live |archive-url=https://web.archive.org/web/20200728195759/https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |archive-date=July 28, 2020 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Na dem rank am 11th by ein fellow players on de ''NFL Top 100'' Players of 2011.<ref>{{Cite web |title=2011 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20210308170627/https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |archive-date=March 8, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2011: First MVP ====
[[File:Aaron_Rodgers_drops_back_(cropped).jpg|thumb|Rodgers dey drop back for a pass insyd 2011.]]
Secof de 2011 NFL lockout, de Packers den Rodgers no schedule unofficial off-season workouts, despite chaw teams doing so.<ref name="allgbp">{{Cite web |last=Burke |first=Kris |date=July 2, 2011 |title=No Workouts? No Problem for the Packers |url=http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-url=https://web.archive.org/web/20161229101517/http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=All Green Bay Packers}}</ref> Rodgers den de Packers quickly quel any concerns over dema readiness by defeating de Saints, wey schedule off-season workouts, 42–34. He get 312 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 8, 2011 |title=Rodgers throws 3 TDs, Packers outlast Saints 42–34 |url=https://www.dailyherald.com/article/20110908/sports/709089632/ |url-status=live |archive-url=https://web.archive.org/web/20191208023757/https://www.dailyherald.com/article/20110908/sports/709089632/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Daily Herald |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 1 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_1.htm |url-status=live |archive-url=https://web.archive.org/web/20180830192658/https://www.pro-football-reference.com/years/2011/week_1.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> After de game, Rodgers say insyd de press conference, ''"I was going to ask myself, what would have happened if we had offseason workouts? I mean, could we have started any faster and scored more points tonight?"''<ref>{{Cite web |last=Darlington |first=Jeff |date=May 25, 2016 |title=Drew Brees' absence no big deal, but July 16 deadline looms |url=https://www.nfl.com/news/drew-brees-absence-no-big-deal-but-july-16-deadline-looms-09000d5d82956d8b |url-status=live |archive-url=https://web.archive.org/web/20161208145630/http://www.nfl.com/news/story/09000d5d82956d8b/article/drew-brees-absence-no-big-deal-but-july-16-deadline-looms |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref>
Insyd Week 4, a 49–23 victory over de Denver Broncos, Rodgers get 408 passing yards, four touchdowns, den one interception wey he run for two touchdowns to earn anoda NFC Offensive Player of de Week honor.<ref>{{Cite web |date=October 2, 2011 |title=Rodgers' big day helps Packers beat Broncos 49–23 |url=https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |url-status=live |archive-url=https://web.archive.org/web/20191208025355/https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Duluth News Tribune}}</ref><ref>{{Cite web |title=2011 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180401100045/https://www.pro-football-reference.com/years/2011/week_4.htm |archive-date=April 1, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, a 24–3 victory over de St. Louis Rams, Rodgers convert on a career-high 93-yard touchdown pass to [[Jordy Nelson]].<ref>{{Cite web |last=Jenkins |first=Chris |date=October 16, 2011 |title=Packers stay perfect at 6–0, beat Rams 24–3 |url=http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |url-status=live |archive-url=https://web.archive.org/web/20181211010230/http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |archive-date=December 11, 2018 |access-date=December 10, 2018 |website=The Salt Lake Tribune}}</ref> Insyd Week 9, a 45–38 victory over de Chargers, he get 247 passing yards den four touchdowns to earn ein third NFC Offensive Player of de Week honor for de 2011 season.<ref>{{Cite web |date=November 6, 2011 |title=Packers survive Chargers' late push as Aaron Rodgers delivers again |url=https://www.espn.com/nfl/game?gameId=311106024 |url-status=live |archive-url=https://web.archive.org/web/20191210232803/https://www.espn.com/nfl/game?gameId=311106024 |archive-date=December 10, 2019 |access-date=December 8, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 9 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_9.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231451/https://www.pro-football-reference.com/years/2011/week_9.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers get off to a 13–0 start insyd 2011, tying de NFC record for most consecutive wins to start a season, buh na dem be upset by de Kansas City Chiefs 19–14 insyd week 15, ending dema winning streak at 19 games, de second-longest winning streak insyd NFL history.<ref>{{Cite web |title=Green Bay Packers at Kansas City Chiefs – December 18th, 2011 |url=https://www.pro-football-reference.com/boxscores/201112180kan.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211142/https://www.pro-football-reference.com/boxscores/201112180kan.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2011.htm |url-status=live |archive-url=https://web.archive.org/web/20171115033715/https://www.pro-football-reference.com/teams/gnb/2011.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de season plus 4,643 passing yards, 45 touchdown passes, den six interceptions, good for a passer rating of 122.5, wich as of 2024 be de highest single-season passer rating insyd NFL history.<ref>{{Cite web |title=Aaron Rodgers 2011 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |url-status=live |archive-url=https://web.archive.org/web/20180101135748/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Ein passing yards, touchdown passes, den passer rating set single-season franchise records.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to passer rating, Rodgers lead de league insyd touchdown to interception ratio (7.5, fourth-best all-time), touchdowns passing % (9.0%, second highest all-time), den yards per attempt (9.2, fourth-highest all-time since becoming an official stat insyd 1970), while finishing second insyd both touchdown passes (45, sixth-highest all-time) den completion percentage (68.3%), as well as fifth insyd passing yards. He earn NFC Offensive Player of de Month awards for September, October, den November, den FedEx Air Player of de Week six times (Weeks 4, 5, 6, 7, 9, den 13). Insyd week four, against de Denver Broncos, Rodgers cam be de only quarterback insyd NFL history to record over 400 passing yards plus four touchdown passes, while sanso dey rush for two touchdowns insyd de same game.<ref>{{Cite web |title=List of players with at least 400 passing yards, four passing touchdowns, and two rushing touchdowns in a single game. NFL history |url=http://pfref.com/tiny/Io0Od |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=Io0Od |archive-date=December 1, 2021 |access-date=December 6, 2016 |website=[[Pro Football Reference]]}}</ref> Na he de winner of de 2011 Galloping gobbler as MVP of de Thanksgiving game between de Packers den de Lions, a 27–15 Green Bay victory, wey he tie an NFL record for consecutive games plus at least two touchdown passes (13).
De Packers cam be de fifth team insyd NFL history to finish de regular season plus a 15–1 record.<ref>{{Cite web |last=Kruse |first=Zach |date=January 2, 2012 |title=Green Bay Packers Are 5th 15–1 Team in NFL History: How Did the First 4 Finish? |url=https://bleacherreport.com/articles/1007036-green-bay-packers-are-5th-15-1-team-in-nfl-history-how-did-the-first-4-finish |access-date=May 30, 2024 |website=Bleacher Report |language=en}}</ref> Rodgers play insyd 15 of de 16 games, plus de only exception be Week 17 against de Lions, a game insyd wich Rodgers be rested after de club clinched home-field advantage for de playoffs de previous week. Insyd de game, Rodgers assist backup quarterback Matt Flynn insyd ein stellar 480-yard, six-touchdown performance by helping call some plays.<ref>{{Cite web |last=Samano |first=Simon |date=January 1, 2012 |title=Rodgers preps Flynn, calls plays during backup QB's big day |url=https://www.nfl.com/news/rodgers-preps-flynn-calls-plays-during-backup-qb-s-big-day-09000d5d825a02db |url-status=live |archive-url=https://web.archive.org/web/20190829082359/http://www.nfl.com/news/story/09000d5d825a02db/article/rodgers-preps-flynn-calls-plays-during-backup-qbs-big-day |archive-date=August 29, 2019 |access-date=September 13, 2019 |publisher=National Football League}}</ref> De Packers dema offense set franchise record for points scored insyd a season plus 560, wich as of 2016 be de third-most ever behind only de 2007 Patriots den 2013 Broncos.<ref>{{Cite web |title=All Time Most Points Scored by an NFL Team in a Season |url=https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-url=https://web.archive.org/web/20130802114230/https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-date=August 2, 2013 |access-date=December 6, 2016 |website=Sporting Charts}}</ref>
Rodgers set numerous NFL records insyd 2011. He record a passer rating of over 100.0 insyd thirteen games during de season, wey dey include twelve games in a row (both records), den a passer rating of 110.0 anaa higher insyd twelve games, wey dey include eleven in a row (sanso be records). Rodgers sanso win de league ein MVP award, receiving 48 of de 50 votes (de oda two dey go to [[Drew Brees]]). He sanso fini second, behind Brees, for de AP Offensive Player of de Year award.<ref>{{Cite web |date=February 4, 2012 |title=Saints' Brees wins AP Offensive Player of the Year award |url=https://www.nfl.com/news/saints-brees-wins-ap-offensive-player-of-the-year-award-09000d5d8269e4fe |url-status=live |archive-url=https://web.archive.org/web/20161208145625/http://www.nfl.com/news/story/09000d5d8269e4fe/article/saints-brees-wins-ap-offensive-player-of-the-year-award |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League |agency=Associated Press}}</ref> Rodgers ein 2011 season later be ranked as de third greatest passing season of all time by ESPN insyd 2013, wey na he be regarded as de most efficient.<ref name="Efficient QBS">{{Cite web |last=Seifert |first=Kevin |date=October 3, 2013 |title=Top 10 greatest quarterback seasons |url=https://www.espn.com/blog/nflnation/post/_/id/90974/ |url-status=live |archive-url=https://web.archive.org/web/20141103072453/http://espn.go.com/blog/nflnation/post/_/id/90974/ |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref>
Na de Packers be upset by de eventual Super Bowl champion New York Giants insyd de Divisional Round by de score of 37–20. De Packers dema receiving corps drop six passes insyd de loss wey Rodgers fini de game plus 264 passing yards, two touchdown passes, den an interception on ein last pass attempt.<ref>{{Cite news|last=Wang|first=Gene|date=January 15, 2012|title=NFL playoffs 2012: New York Giants stun Green Bay Packers, 37–20|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|url-status=live|access-date=December 8, 2019|archive-url=https://web.archive.org/web/20180906090329/https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|archive-date=September 6, 2018}}</ref> De 2011 Packers cam be de only team insyd NFL history to go 15–1 wey dem no win a playoff game, as well as dem be de fourth consecutive team to win at least 15 games wey dem no win de Super Bowl.<ref>{{Cite web |last=Emery |first=Mark |date=January 26, 2016 |title=As Carolina Panthers prepare for Super Bowl 50, a look at the fates of six previous teams that won at least 15 in regular season |url=http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |url-status=live |archive-url=https://web.archive.org/web/20161214152104/http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |archive-date=December 14, 2016 |access-date=December 12, 2016 |website=Daily News |location=New York}}</ref> Na dem name Rodgers to de Pro Bowl for ein 2011 season to go along plus a First-team All-Pro honor.<ref>{{Cite web |title=2011 NFL All-Pros |url=https://www.pro-football-reference.com/years/2011/allpro.htm |url-status=live |archive-url=https://web.archive.org/web/20180830185703/https://www.pro-football-reference.com/years/2011/allpro.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2011/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180830174119/https://www.pro-football-reference.com/years/2011/probowl.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> He be voted by ein fellow players as de best player insyd de league on de ''NFL Top 100'' Players of 2012.<ref>{{Cite web |title=2012 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190322201849/https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |archive-date=March 22, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2012 ====
Rodgers den de Packers start off de 2012 season plus a 30–22 loss to de 49ers.<ref>{{Cite web |last=Jenkins |first=Chris |date=September 10, 2012 |title=49ers stop Rodgers' rally, beat Packers 30–22 |url=https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025344/https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Plus de loss, Rodgers loose ein bet plus de music group Boyz II Men, wey he for wear an Alex Smith jersey during de next week of practice.<ref name="boyz">{{Cite web |last=Hanzus |first=Dan |date=September 8, 2012 |title=Aaron Rodgers' head-scratching bet with Boyz II Men |url=https://www.nfl.com/news/aaron-rodgers-head-scratching-bet-with-boyz-ii-men-0ap1000000059772 |url-status=live |archive-url=https://web.archive.org/web/20161220224204/http://www.nfl.com/news/story/0ap1000000059772/article/aaron-rodgers-headscratching-bet-with-boyz-ii-men |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Had de Packers win de game, Boyz II Men go sing de national anthem during dema next home game at Lambeau.<ref name="boyz" />
Insyd Week 4, a 28–27 victory over de Saints, Rodgers get 319 passing yards, four touchdowns, den one interception to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 28, 2012 |title=Rodgers throws late TD, Packers beat Saints 28–27 |url=https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |url-status=live |archive-url=https://web.archive.org/web/20191208025349/https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Twin Cities Pioneer Press}}</ref><ref>{{Cite web |title=2012 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020203/https://www.pro-football-reference.com/years/2012/week_4.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de undefeated Houston Texans, he tie de franchise record by throwing six touchdown passes, insyd a 42–24 victory, to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Houston Texans – October 14th, 2012 |url=https://www.pro-football-reference.com/boxscores/201210140htx.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081312/https://www.pro-football-reference.com/boxscores/201210140htx.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2012 NFL Week 6 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_6.htm |url-status=live |archive-url=https://web.archive.org/web/20210308120125/https://www.pro-football-reference.com/years/2012/week_6.htm |archive-date=March 8, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> De Texans allow only six total touchdown passes during de season up to dat point.<ref>{{Cite web |title=2012 Houston Texans, opponent TD log |url=https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |url-status=live |archive-url=https://web.archive.org/web/20180724093239/https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |archive-date=July 24, 2018 |access-date=December 31, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dis spark a five-game winning streak wich Rodgers plete 65.7% of ein passes for 1,320 yards, 17 touchdowns, two interceptions, den a passer rating of 119.1.<ref>{{Cite web |title=Rodgers, 2012, games 6–10 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227055845/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> During dat stretch, na dem name Rodgers NFC Offensive Player of de Month for October.<ref>{{Cite web |date=March 27, 2015 |title=Packers QB Rodgers leads group of NFC's best for October |url=https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |url-status=live |archive-url=https://web.archive.org/web/20200724202413/https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |archive-date=July 24, 2020 |access-date=September 13, 2019 |publisher=Fox News}}</ref> Insyd Week 15, Rodgers throw for 291 yards den three touchdowns to lead de Packers past de Bears, 21–13, making dem NFC North champions for de second consecutive year.<ref>{{Cite web |date=December 16, 2012 |title=Packers bounce Bears to clinch NFC North |url=https://www.wtsp.com/article/sports/nfl/packers-bounce-bears-to-clinch-nfc-north/67-376020825 |access-date=December 8, 2019 |publisher=WTSP}}</ref> Insyd de season finale, despite Rodgers go 28 of 40 for 365 yards, four touchdowns, no interceptions den a passer rating of 131.8, de Packers loose 37–34 against de Vikings.<ref>{{Cite web |date=December 30, 2012 |title=Vikings beat Packers 37–34, earn playoff berth |url=https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |url-status=live |archive-url=https://web.archive.org/web/20191208025350/https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=HeraldNet.com |agency=Associated Press}}</ref> Dis end de Packers dema twelve-game winning streak against NFC North opponents.
De Packers fini plus an 11–5 record, first insyd de NFC North, wey dem clinch de #3-seed insyd de NFC playoffs.<ref>{{Cite web |title=2012 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2012 |url-status=live |archive-url=https://web.archive.org/web/20180127072019/https://www.pro-football-reference.com/years/2012/ |archive-date=January 27, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers lead de league for de second straight year insyd passer rating (108.0) touchdowns passing % (7.1%), den touchdown-to-interception ratio (4.875), while finishing second insyd touchdown passes (39), third insyd completion percentage (67.2%), fifth insyd yards per attempt (7.78), den eighth insyd passing yards (4,295).<ref>{{Cite web |title=Aaron Rodgers 2012 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |url-status=live |archive-url=https://web.archive.org/web/20180101135930/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd de playoffs, de Packers defeat de Minnesota Vikings 24–10 insyd de Wild Card Round. Rodgers plete 23 of 33 passes to ten different players for 274 yards den a touchdown.<ref>{{Cite web |date=January 5, 2013 |title=Ponder-less Vikings fall to Packers in wild-card game |url=https://www.nfl.com/news/ponder-less-vikings-fall-to-packers-in-wild-card-game-0ap1000000122612 |url-status=live |archive-url=https://web.archive.org/web/20191208025349/http://www.nfl.com/news/story/0ap1000000122612/printable/ponderless-vikings-fall-to-packers-in-wildcard-game |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=NFL.com}}</ref> De 49ers beat dema 45–31 insyd de Divisional Round.<ref>{{Cite web |last=Farmer |first=Sam |date=January 13, 2013 |title=NFC playoffs: 49ers topple Packers 45–31 |url=https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025348/https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Chicago Tribune}}</ref> Rodgers plete 26 of 39 passes for 257 yards, two touchdowns, den an interception, while sanso dey rush for 28 yards, insyd de losing effort. He earn ein third career Pro Bowl nomination for ein performance insyd de 2012 season.<ref>{{Cite web |title=2012 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2012/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180316023449/https://www.pro-football-reference.com/years/2012/probowl.htm |archive-date=March 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2013.<ref>{{Cite web |title=2013 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200406154219/https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |archive-date=April 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2013 ====
On April 26, 2013, de Packers den Rodgers agree to a 5-year, $110 million contract extension wey dey make am de highest paid player insyd NFL history.<ref>{{Cite web |last1=Schefter |first1=Adam |last2=Mortensen |first2=Chris |date=April 26, 2013 |title=Source: Rodgers agrees to $110M extension |url=https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |url-status=live |archive-url=https://web.archive.org/web/20210414204446/https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |archive-date=April 14, 2021 |access-date=April 14, 2021 |website=[[ESPN.com]] |agency=Associated Press}}</ref> De Packers begin dema 2013 season against de reigning NFC champions, de 49ers, de team wey sanso end dema playoff run de previous season. Rodgers go 21 for 37 insyd completions, 333 yards, three touchdowns den an interception insyd de 34–28 loss.<ref>{{Cite web |title=Green Bay Packers at San Francisco 49ers – September 8th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309080sfo.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080800/https://www.pro-football-reference.com/boxscores/201309080sfo.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers get a career-high 480 passing yards to tie de franchise record insyd de 38–20 home-opener win against de Washington Redskins. He earn NFC Offensive Player of de Week for ein effort against de Redskins.<ref>{{Cite web |title=Washington Redskins at Green Bay Packers – September 15th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309150gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081525/https://www.pro-football-reference.com/boxscores/201309150gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2013 NFL Week 2 Leaders & Scores |url=https://www.pro-football-reference.com/years/2013/week_2.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020211/https://www.pro-football-reference.com/years/2013/week_2.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 335 passing yards insyd de first half set a club record.<ref name="w930">{{cite web |last=Huber |first=Bill |date=September 15, 2013 |title=Monster Half Propels Rodgers to Record Day |url=https://247sports.com/nfl/green-bay-packers/Article/monster-half-propels-rodgers-to-record-day-105030089/ |access-date=October 23, 2024 |website=247Sports}}</ref> He sanso cam be de first quarterback since [[Y. A. Tittle]] insyd 1962 to throw for at least 480 yards, four touchdowns den no interceptions insyd a game.<ref>{{Cite web |title=480+ passing yards, 4+ passing touchdowns, no interceptions, NFL history |url=http://pfref.com/tiny/rQ3Cc |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=rQ3Cc |archive-date=December 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers see ein NFL record of 41 consecutive games widout throwing multiple interceptions come to an end insyd a loss to de Cincinnati Bengals by de score of 34–30.<ref>{{Cite web |last=White |first=Scott |date=September 22, 2013 |title=Aaron Rodgers doesn't play usual mistake-free football |url=https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |url-status=live |archive-url=https://web.archive.org/web/20201025173245/https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |archive-date=October 25, 2020 |access-date=September 13, 2019 |website=CBS Sports}}</ref><ref>{{Cite web |title=Green Bay Packers at Cincinnati Bengals – September 22nd, 2013 |url=https://www.pro-football-reference.com/boxscores/201309220cin.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081320/https://www.pro-football-reference.com/boxscores/201309220cin.htm |archive-date=August 29, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
After de loss to de Bengals, de Packers start rolling, winning dema next four games. Against de Ravens, de Packers loose two receivers: [[Randall Cobb (American football)|Randall Cobb]] den [[James Jones (wide receiver)|James Jones]]. Na Cobb be sidelined plus a broken leg den Jones plus a sprained PCL.<ref>{{Cite web |title=Green Bay Packers' Randall Cobb, James Jones injured |url=https://www.nfl.com/news/green-bay-packers-randall-cobb-james-jones-injured-0ap2000000261308 |url-status=live |archive-url=https://web.archive.org/web/20170722195052/http://www.nfl.com/news/story/0ap2000000261308/article/green-bay-packers-randall-cobb-james-jones-injured |archive-date=July 22, 2017 |access-date=September 13, 2019 |publisher=National Football League}}</ref> Against de Cleveland Browns, na dem cart tight end [[Jermichael Finley]] off de field plus a bruised spinal cord, leaving Rodgers widout three of ein top four offensive weapons.<ref>{{Cite web |last=Lee |first=Caroline |date=October 21, 2013 |title=Jermichael Finley, Packers tight end, in ICU with neck injury |url=https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |url-status=live |archive-url=https://web.archive.org/web/20190203150423/https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |archive-date=February 3, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref> De next week against de Vikings, Rodgers plete 24 of 29 passes insyd a 44–31 victory.<ref>{{Cite web |title=Green Bay Packers at Minnesota Vikings – October 27th, 2013 |url=https://www.pro-football-reference.com/boxscores/201310270min.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080251/https://www.pro-football-reference.com/boxscores/201310270min.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
At home against de Bears insyd Week 9, na Rodgers be sacked by [[Shea McClellin]]. He fracture ein left clavicle insyd de process, den de speculation for ein return dem range from a few weeks to an indefinite timetable wey cam be a weekly spectacle of whether anaa wen he fi be cleared to san play.<ref>{{Cite web |date=November 5, 2013 |title=Aaron Rodgers has fractured collarbone, could miss a month |url=http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |url-status=live |archive-url=https://web.archive.org/web/20131111030547/http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |archive-date=November 11, 2013 |access-date=November 6, 2013 |website=[[The Denver Post]] |agency=Associated Press}}</ref><ref name="Aaron Rodgers wasn">{{Cite web |last=Mortensen |first=Chris |author-link=Chris Mortensen |date=December 22, 2013 |title=Aaron Rodgers wasn't close to return |url=https://www.espn.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |url-status=live |archive-url=https://web.archive.org/web/20141103072203/http://espn.go.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref><ref name="Rodgers not ready to play">{{Cite web |last=Dougherty |first=Pete |date=December 19, 2013 |title=Packers' Aaron Rodgers 'looks ready to play' but probably won't |url=https://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |url-status=live |archive-url=https://web.archive.org/web/20150805151227/http://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |archive-date=August 5, 2015 |access-date=November 3, 2014 |website=USA Today}}</ref> Before Rodgers break ein collarbone, de Packers win four straight games to climb to de top of de NFC North division plus a 5–2 record. Plus Rodgers injured den unable to play, de Packers go winless over de next five weeks to fall to 5–6–1 on de season.<ref>{{Cite web |title=Green Bay Packers 2013 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2013/gamelog/ |access-date=October 23, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
After rallying insyd December behind re-acquired backup quarterback Matt Flynn,<ref name="Backup Flynn">{{Cite web |last=Dunne |first=Tyler |date=December 16, 2013 |title=Stoic Matt Flynn delivers Packers win |url=http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |url-status=live |archive-url=https://web.archive.org/web/20141103071905/http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=web |publisher=Milwaukee-Wisconsin Journal Sentinel}}</ref> de Packers fight dema way back to a 7–7–1 record going into de final week of de season. On December 26, Packers head coach Mike McCarthy announce Rodgers go return den start insyd de season-finale showdown against de Chicago Bears at Soldier Field for de NFC North championship.<ref>{{Cite news|last=Breech|first=John|date=December 26, 2013|title=Packers make it official: QB Aaron Rodgers will start vs. Bears|work=CBS Sports|url=http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|url-status=live|access-date=December 27, 2013|archive-url=https://web.archive.org/web/20131227003701/http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|archive-date=December 27, 2013}}</ref> Returning from de injury, Rodgers throw for 318 yards, two touchdowns, den two interceptions insyd de regular season finale against de Bears.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – December 29th, 2013 |url=https://www.pro-football-reference.com/boxscores/201312290chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081317/https://www.pro-football-reference.com/boxscores/201312290chi.htm |archive-date=August 29, 2017 |access-date=May 5, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Trailing 27–28 plus under a minute to go insyd de game den facing de third 4th down of de drive, a 4th & 8 from de 48-yard line, Rodgers connect plus Cobb, wey sanso dey return for ein first game since breaking ein leg insyd Week 6, for a 48-yard game-winning touchdown to clinch de NFC North den earn de right to host a home playoff game against de San Francisco 49ers as de fourth seed.<ref>{{Cite magazine|last=Bedard|first=Greg A.|date=December 30, 2013|title=Answered Prayers|url=https://www.si.com/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|url-status=live|archive-url=https://web.archive.org/web/20211201192432/https://www.si.com/nfl/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|archive-date=December 1, 2021|access-date=September 13, 2019|magazine=Sports Illustrated}}</ref> Rodgers win de 2013 GMC Never Say Never Award for de come-from-behind, division-winning touchdown pass. Rodgers fini fifth insyd de league insyd passer rating (104.9), completion percentage (66.6%), den yards per game (282) while he sanso fini second insyd yards per attempt (8.75).<ref>{{Cite web |title=2013 NFL Passing |url=https://www.pro-football-reference.com/years/2013/passing.htm |access-date=July 17, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
Rodgers san lead de Packers to de playoffs, dis time plus an 8–7–1 record wey na dem be up against de team wey eliminate dem last year insyd de Divisional Round of de playoffs, de 49ers.<ref>{{Cite web |title=2013 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2013.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030637/https://www.pro-football-reference.com/teams/gnb/2013.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de 49ers for de fourth consecutive time, 23–20 on a last second field goal at Lambeau Field, insyd de Wild Card Round. Rodgers record only 177 yards passing, ein lowest insyd a playoff game, den one touchdown pass.<ref>{{Cite web |title=Wild Card – San Francisco 49ers at Green Bay Packers – January 5th, 2014 |url=https://www.pro-football-reference.com/boxscores/201401050gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170821043340/https://www.pro-football-reference.com/boxscores/201401050gnb.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> He sanso be ranked No. 11 by ein fellow players on de ''NFL Top 100'' Players of 2014.<ref>{{Cite web |title=2014 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112164602/https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2014: Second MVP ====
[[File:Aaron_rodgers_2014.jpg|right|thumb|Rodgers insyd 2014]]
De Packers dema 2014 regular season debut cam against de defending Super Bowl champion Seahawks—a game insyd wich dem go go on to loose 36–16.<ref>{{Cite web |title=Green Bay Packers at Seattle Seahawks – September 4th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409040sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182750/https://www.pro-football-reference.com/boxscores/201409040sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 2, de team begin de game plus a 21–3 deficit against de Jets, bug dem cam back wey dem win 31–24.<ref>{{Cite web |title=New York Jets at Green Bay Packers – September 14th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409140gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829120234/https://www.pro-football-reference.com/boxscores/201409140gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De 18-point comeback mark de biggest comeback insyd Rodgers ein career.<ref>{{Cite web |last=Imig |first=Paul |date=September 14, 2014 |title=Rodgers overcomes 'nerves' to complete biggest comeback of career |url=http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |url-status=live |archive-url=https://web.archive.org/web/20140918022944/http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |archive-date=September 18, 2014 |access-date=September 13, 2019 |work=Fox Sports}}</ref> Insyd de third week of de season, de Packers offense be shut down by de Lions dema defense, 19–7.<ref>{{Cite web |title=Green Bay Packers at Detroit Lions – September 21st, 2014 |url=https://www.pro-football-reference.com/boxscores/201409210det.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211151/https://www.pro-football-reference.com/boxscores/201409210det.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Na de Packers dema 7 points be de fewest points dem allow insyd a game Rodgers fini; na de 223 yards of total Packer offense be de lowest since Rodgers take over at quarterback den ein 162 passing yards sanso be a career low. For de third consecutive season, na de Packers be off to a 1–2 start. Insyd those three games, Rodgers throw five touchdowns den one interception combined, plus a passer rating of 95.1. Amid widespread concern, Rodgers telll de fans den de media, "''R-E-L-A-X. Relax. We're going to be OK."''<ref>{{Cite web |last=Wilde |first=Jason |date=September 23, 2014 |title=R-E-L-A-X (ESPN Wisconsin) |url=http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |url-status=dead |archive-url=https://web.archive.org/web/20151101051643/http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |archive-date=2015-11-01 |access-date=December 7, 2014}}</ref>
After dema loss to de Lions, de Packers go on a four-game win streak, during wich, Rodgers throw 13 touchdowns plus no interceptions.<ref>{{Cite web |title=Aaron Rodgers 2014 Game Log (Weeks 4–7) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231025726/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |archive-date=December 31, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> Insyd Week 4, a 38–17 victory over de Bears, he get 302 passing yards den four touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – September 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409280chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081419/https://www.pro-football-reference.com/boxscores/201409280chi.htm |archive-date=August 29, 2017 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180321130559/https://www.pro-football-reference.com/years/2014/week_4.htm |archive-date=March 21, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de Miami Dolphins, Rodgers lead de Packers to a game-winning drive plus less dan two minutes remaining. He plete a 4th & 10 pass to wide receiver Jordy Nelson wey he mimick [[Dan Marino]] ein famous fake spike play by completing a pass to wide receiver [[Davante Adams]] to get to within four yards of de endzone later insyd de drive.<ref>{{Cite web |last=Sherman |first=Rodger |date=October 12, 2014 |title=Packers use fake spike to beat Dolphins |url=https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |archive-date=March 30, 2019 |access-date=March 7, 2019 |website=SBNation.com}}</ref> Rodgers then plete a touchdown pass to tight end [[Andrew Quarless]] to win de game 27–24.<ref name="gmc">{{Cite web |title=2014 GMC Never Say Never Moment |url=http://www.nfl.com/voting/never-say-never/2014/REG/6 |url-status=live |archive-url=https://web.archive.org/web/20161220230141/http://www.nfl.com/voting/never-say-never/2014/REG/6 |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Dis play go later win Rodgers de GMC Never Say Never Moment of de Year Award.<ref name="gmc" /> Insyd Week 7, a 38–17 victory over de Carolina Panthers, na he be 19-of-22 for 255 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Carolina Panthers at Green Bay Packers – October 19th, 2014 |url=https://www.pro-football-reference.com/boxscores/201410190gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002513/https://www.pro-football-reference.com/boxscores/201410190gnb.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 7 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_7.htm |url-status=live |archive-url=https://web.archive.org/web/20210928154945/https://www.pro-football-reference.com/years/2014/week_7.htm |archive-date=September 28, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd a Week 8 loss against de Saints, Rodgers fini 28 of 39 for 418 yards, plus one touchdown pass den two interceptions, ending ein 212 consecutive attempts widout an interception streak<ref name="packsaintsoct">{{Cite web |last=Imig |first=Paul |date=October 27, 2014 |title=5 things we learned: Packers at Saints |url=http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |url-status=live |archive-url=https://web.archive.org/web/20170105180746/http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |archive-date=January 5, 2017 |access-date=January 5, 2017 |work=Fox Sports}}</ref>—de second longest insyd team history. Insyd de game, Rodgers injure ein hamstring wich appear to get an effect on ein play for de remainder of de game.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 27, 2014 |title=Aaron Rodgers of Green Bay Packers injures hamstring in loss |url=https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |url-status=live |archive-url=https://web.archive.org/web/20200818134022/https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |archive-date=August 18, 2020 |access-date=September 13, 2019 |website=[[ESPN.com]]}}</ref>
[[File:Rodgers_handing_off_2014.jpg|left|thumb|Rodgers handing de ball off to running back [[Eddie Lacy]] insyd 2014]]
Insyd Week 10, against de Chicago Bears, Rodgers cam be de second player insyd NFL history den de first since [[Daryle Lamonica]] insyd 1969 to throw six touchdown passes insyd de first half.<ref>{{Cite news|last=Armas|first=Genaro C.|date=November 10, 2014|title=Aaron Rodgers Throws 6 TD Passes in 1st Half As Packers Crush Bears 55–14|work=[[HuffPost]]|url=http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|url-status=live|access-date=November 27, 2014|archive-url=https://web.archive.org/web/20141112143148/http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|archive-date=November 12, 2014}}</ref> Rodgers fini 18 of 27 for 315 yards den six touchdowns despite only playing one drive insyd de second half to earn NFC Offensive Player of de Week.<ref name="nbcchi" /><ref>{{Cite web |title=2014 NFL Week 10 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_10.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020149/https://www.pro-football-reference.com/years/2014/week_10.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers set multiple records during de game: most touchdown passes of 70 anaa more yards plus 16—breaking de record dem wey Brett Favre den [[Peyton Manning]] hold, most consecutive touchdown passes widout an interception at home—he sanso break de record wey Favre den Manning, wey he cam be de first quarterback to ever have 10 touchdown passes against de same team insyd a season.<ref name="nbcchi">{{Cite web |last=Neveau |first=James |date=November 12, 2014 |title=Aaron Rodgers Suffered Back Injury vs. Bears |url=http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |url-status=live |archive-url=https://web.archive.org/web/20170105180011/http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=NBC Chicago}}</ref> De 55–14 victory tie de Packers dema 55–7 win vs. De Titans insyd 2009 for de most points wey a Rodgers-led offense score.
Insyd a Week 11 game against de 7–2 Eagles, Rodgers set a record for most consecutive attempts at home widout an interception, breaking [[Tom Brady]] ein record of 288 consecutive attempts.<ref>{{Cite web |last=Massey |first=Evan |date=November 16, 2014 |title=Packers' Aaron Rodgers Breaks Tom Brady's Record |url=https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |url-status=live |archive-url=https://web.archive.org/web/20200724201538/https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |archive-date=July 24, 2020 |access-date=September 12, 2019 |website=FanSided}}</ref> Insyd de 53–20 victory, he fini dey go 22 of 36, plus 341 passing yards, three touchdown passes den no interceptions.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – November 16th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829074637/https://www.pro-football-reference.com/boxscores/201411160gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De 8–3 Packers meet de 9–2 Patriots insyd Week 13, at [[Lambeau Field]] insyd na wat be Brady den Rodgers' first time playing against each oda as starters.<ref>{{Cite web |last=Imig |first=Paul |date=November 30, 2014 |title=Rodgers outduels Brady for win in first-ever matchup of elite QBs |url=https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |url-status=live |archive-url=https://web.archive.org/web/20190102094626/https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |archive-date=January 2, 2019 |access-date=January 1, 2019 |work=Fox Sports}}</ref> Rodgers fini dey go 24 of 38, plus 368 passing yards den two passing touchdowns insyd de 26–21 Packers victory.<ref>{{Cite web |title=New England Patriots at Green Bay Packers – November 30th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411300gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171228171554/https://www.pro-football-reference.com/boxscores/201411300gnb.htm |archive-date=December 28, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> For ein efforts insyd de month of November, he earn NFC Offensive Player of de Month.<ref>{{Cite web |date=December 4, 2014 |title=Aaron Rodgers among NFC's best for November |url=https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |url-status=live |archive-url=https://web.archive.org/web/20190812115629/https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |archive-date=August 12, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref>
Rodgers suffer a calf injury insyd Week 16, against de Buccaneers, secof severe dehydration he endure from flu-like symptoms he suffer during de week.<ref name="flu">{{Cite web |last=Demovsky |first=Rob |date=December 22, 2014 |title=Aaron Rodgers played with pulled calf |url=https://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |url-status=live |archive-url=https://web.archive.org/web/20170105180655/http://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=[[ESPN.com]]}}</ref>
Insyd de Week 17 game against de Lions, Rodgers re-injure ein left calf while extending a play den throwing a touchdown pass to [[Randall Cobb (American football)|Randall Cobb]], then na e help off de field, wey dem cart am off to de locker room. After missing a series, Rodgers re-enter de game plus de score dem tie 14–14. Despite he be less mobile plus de injury, Rodgers plete 13 of 15 passes for 129 yards den two scores against de league ein second-ranked defense. De Packers win 30–20, winning dema fourth straight NFC North title. Rodgers fini 17 of 22 for 226 yards, two touchdown passes, no interceptions, a 139.6 passer rating, den a rushing touchdown to earn ein fourth NFC Offensive Player of de Week honor for de 2014 season.<ref>{{Cite web |title=Detroit Lions at Green Bay Packers – December 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201412280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20190330032513/https://www.pro-football-reference.com/boxscores/201412280gnb.htm |archive-date=March 30, 2019 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 17 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_17.htm |url-status=live |archive-url=https://web.archive.org/web/20180226175215/https://www.pro-football-reference.com/years/2014/week_17.htm |archive-date=February 26, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers secure de second seed insyd de NFC, rewarding dem plus a playoff bye den a week off wich help Rodgers rest den rehabilitate ein injured left calf.<ref>{{Cite web |title=2014 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2014 |url-status=live |archive-url=https://web.archive.org/web/20211011053552/https://www.pro-football-reference.com/years/2014/ |archive-date=October 11, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round, na de Packers be scheduled to play de 13–4 Cowboys, wich mark de first time insyd NFL playoff history wen a team wich go undefeated at home (Packers) play against a team wich go undefeated away (Cowboys).<ref>{{Cite web |last=Imig |first=Paul |date=January 9, 2015 |title=Something has to give: Packers unbeaten at home; Cowboys 8–0 on road |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |url-status=live |archive-url=https://web.archive.org/web/20170101091540/http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |archive-date=January 1, 2017 |access-date=December 31, 2016 |work=Fox Sports}}</ref> Rodgers help secure a 26–21 victory by finishing 24 of 35 for 316 yards, three touchdowns, no interceptions, den a 125.4 passer rating.<ref>{{Cite web |title=Divisional Round – Dallas Cowboys at Green Bay Packers – January 11th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501110gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171114040923/https://www.pro-football-reference.com/boxscores/201501110gnb.htm |archive-date=November 14, 2017 |access-date=December 15, 2017 |website=[[Pro Football Reference]]}}</ref>
De Packers then travel go Seattle to face de top-seeded Seahawks insyd a rematch of de regular season opener.<ref>{{Cite web |last=Pittman |first=Travis |date=January 11, 2015 |title=Seahawks vs. Packers rematch for NFC Championship |url=https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |archive-date=July 24, 2020 |access-date=September 12, 2019 |publisher=KING}}</ref> Insyd de NFC Championship Game, na de Packers dey lead 19–7 plus just over five minutes to go, buh na de home team ein offense finally wake up den, plus de assistance of a crucial Packers special teams gaffe on an onside kick, de Seahawks lead 22–19, plus 44 seconds remaining. Rodgers quickly drive downfield to set up a tying field goal, only to watch from de sidelines as de Seahawks win de coin toss insyd overtime wey he proceed to score de game-winning touchdown on dema first possession. Rodgers be 19-for-34 for 178 yards den a touchdown, plus two interceptions insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Seattle Seahawks – January 18th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501180sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182804/https://www.pro-football-reference.com/boxscores/201501180sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de regular season first insyd touchdown-to-interception ratio (7.6), lowest interception percentage (1.0%), second insyd passer rating (112.2), yards per attempt (8.4), den touchdown passing percentage (7.1%), third insyd touchdown passes (38), seventh insyd passing yards (4,381), den ninth insyd completion percentage (65.6%).<ref>{{Cite web |title=2014 NFL Leaders and Leaderboards |url=https://www.pro-football-reference.com/years/2014/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20190915221740/https://www.pro-football-reference.com/years/2014/leaders.htm |archive-date=September 15, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> He set an NFL record for most consecutive pass attempts (512) at home widout an interception, den touchdown passes (41).
Na dem vote Rodgers de AP NFL Most Valuable Player for de 2014 season, receiving 31 votes,<ref>{{Cite web |last=Demovsky |first=Rob |date=January 31, 2015 |title=Aaron Rodgers named NFL MVP |url=https://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20161217162150/http://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |archive-date=December 17, 2016 |access-date=December 12, 2016 |publisher=[[ESPN]]}}</ref> wey dem name am NFC Offensive Player of de Year by de Kansas City Committee of 101<ref name="KC101off">{{Cite web |title=Past NFC Offensive Honorees |url=http://www.101awards.com/awards/past_nfc_offensive_honorees |url-status=dead |archive-url=https://web.archive.org/web/20161220130101/http://www.101awards.com/awards/past_nfc_offensive_honorees |archive-date=December 20, 2016 |access-date=December 13, 2016 |website=101awards.com}}</ref> den Fed-Ex Air NFL Player of de Year.<ref>{{Cite web |date=January 31, 2015 |title=2015 'NFL Honors' complete list of winners |url=https://www.nfl.com/news/2015-nfl-honors-complete-list-of-winners-0ap3000000466415 |url-status=live |archive-url=https://web.archive.org/web/20161018132754/http://www.nfl.com/news/story/0ap3000000466415/article/2015-nfl-honors-complete-list-of-winners |archive-date=October 18, 2016 |access-date=December 12, 2016 |publisher=National Football League}}</ref> He sanso be named to de AP All-Pro team as de first quarterback, receiving 44 votes while runner-up [[Tony Romo]] receive three.<ref>{{Cite web |last=Wesseling |first=Chris |date=January 2, 2015 |title=2014 All-Pro Teams: Analysis of the full rosters |url=https://www.nfl.com/news/2014-all-pro-teams-analysis-of-the-full-rosters-0ap3000000452986 |url-status=live |archive-url=https://web.archive.org/web/20140104005331/http://pro32.ap.org/article/2013-all-pro-team |archive-date=January 4, 2014 |access-date=February 4, 2015 |publisher=National Football League}}</ref> Na dem name am to de Pro Bowl for de 2014 season.<ref>{{Cite web |title=2014 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2014/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180816061701/https://www.pro-football-reference.com/years/2014/probowl.htm |archive-date=August 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am as de second best player insyd de league among ein fellow players on de ''NFL Top 100'' Players of 2015.<ref>{{Cite web |title=2015 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200508061426/https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |archive-date=May 8, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2015 ====
Insyd 2015, Rodgers get a down year by ein standards. He throw for a career low 3,821 yards insyd wich he play for at least 15 games, although he get 31 touchdowns to just eight interceptions.<ref>{{Cite web |last=Hirschhorn |first=Jason B. |date=July 6, 2016 |title=NFL Top 100: Packers' Aaron Rodgers lands at No. 6 in 2016 |url=https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |url-status=live |archive-url=https://web.archive.org/web/20211115204818/https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=ACME Packing Company |language=en}}</ref> Rodgers plete 60.7 of ein passes per, averaged only 6.7 yards per attempt wey he fini plus a passer rating of 92.7, all career lows. Na Pro Bowl wide receiver Jordy Nelson ein absence secof injury for de season be considered a contributing factor insyd Rodgers ein statistical drop dem compare to previous seasons.<ref>{{Cite web |last=Kelly |first=Danny |date=November 15, 2015 |title=Aaron Rodgers and the Packers miss Jordy Nelson more than we thought they would |url=https://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |url-status=live |archive-url=https://web.archive.org/web/20161226145804/http://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=sbnation.com}}</ref><ref>{{Cite web |date=January 19, 2016 |title=Packers hope Nelson's return will revitalize offense |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |url-status=live |archive-url=https://web.archive.org/web/20161226145654/http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |archive-date=December 26, 2016 |access-date=December 25, 2016 |work=Fox Sports}}</ref><ref>{{Cite web |last=Spofford |first=Mike |date=December 30, 2015 |title=Stats don't matter to Aaron Rodgers |url=http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |url-status=dead |archive-url=https://web.archive.org/web/20161226145201/http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=packers.com}}</ref>
Insyd Week 3, a 38–28 victory over de Chiefs, Rodgers get 333 passing yards den five touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Kansas City Chiefs at Green Bay Packers – September 28th, 2015 |url=https://www.pro-football-reference.com/boxscores/201509280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20220218210924/https://www.pro-football-reference.com/boxscores/201509280gnb.htm |archive-date=February 18, 2022 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2015 NFL Week 3 Leaders & Scores |url=https://www.pro-football-reference.com/years/2015/week_3.htm |url-status=live |archive-url=https://web.archive.org/web/20180330172357/https://www.pro-football-reference.com/years/2015/week_3.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> During Week 9 against de Panthers, he fini plus 369 passing yards, four touchdowns, den one interception. De interception cam plus only 1:47 left insyd de fourth quarter, den following de interception, Rodgers express frustration by throwing down a Microsoft Surface tablet.<ref>{{Cite web |last=Davis |first=Scott |date=November 9, 2015 |title=Aaron Rodgers angrily threw a Microsoft Surface tablet after throwing a crucial interception |url=https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |archive-date=March 30, 2019 |access-date=September 13, 2019 |website=Business Insider}}</ref> De Packers end up losing de game 29–37.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – November 8th, 2015 |url=https://www.pro-football-reference.com/boxscores/201511080car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211145/https://www.pro-football-reference.com/boxscores/201511080car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
On December 3, 2015, insyd a Week 13 match-up against de Lions, Rodgers throw a Hail Mary pass wey [[Richard Rodgers (tight end)|Richard Rodgers]] catch for 61 yards plus 0:00 left to beat de Lions 27–23, after dem extend de game secof a facemask penalty dem call on Detroit.<ref name="2015mary">{{Cite web |last=Rosenthal |first=Gregg |date=December 3, 2015 |title=Packers stun Lions on Aaron Rodgers' Hail Mary TD |url=https://www.nfl.com/news/packers-stun-lions-on-aaron-rodgers-hail-mary-td-0ap3000000593884 |url-status=live |archive-url=https://web.archive.org/web/20180408144543/http://www.nfl.com/news/story/0ap3000000593884/article/packers-stun-lions-on-miracle-td-throw-by-rodgers |archive-date=April 8, 2018 |access-date=December 25, 2016 |publisher=National Football League}}</ref> Na de play quickly be dubbed as "The Miracle in Motown."<ref>{{Cite news|last=Bennett|first=Colin|date=December 9, 2015|title=Getaway winner witnesses Motown Miracle|publisher=WTMJ|url=https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|url-status=dead|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20180312083608/https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|archive-date=March 12, 2018}}</ref><ref>{{Cite book |last=Aretha |first=David |url=https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |title=Aaron Rodgers: Champion Football Star |date=July 15, 2017 |publisher=Enslow Publishing, LLC |isbn=9780766087170 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203181206/https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |archive-date=February 3, 2021 |url-status=live}}</ref>
De Packers make de playoffs as de fifth seed insyd de NFC plus a 10–6 record.<ref>{{Cite web |title=2015 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2015.htm |url-status=live |archive-url=https://web.archive.org/web/20171010004706/https://www.pro-football-reference.com/teams/gnb/2015.htm |archive-date=October 10, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Dem defeat de Redskins 35–18 on de road insyd de Wild Card Round of de playoffs. Rodgers fini de game plus 210 yards den two passing touchdowns.<ref>{{Cite web |title=Wild Card – Green Bay Packers at Washington Redskins – January 10th, 2016 |url=https://www.pro-football-reference.com/boxscores/201601100was.htm |url-status=live |archive-url=https://web.archive.org/web/20180308042317/https://www.pro-football-reference.com/boxscores/201601100was.htm |archive-date=March 8, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round against de Cardinals, Rodgers throw a 41-yard Hail Mary touchdown pass to [[Jeff Janis]] as time expire to send de game into overtime. However, de Packers loos3 26–20 insyd overtime. Rodgers fini de game 24 for 44 for 261 yards plus two touchdowns den an interception.<ref>{{Cite web |last=Wilde |first=Jason |date=January 17, 2016 |title=Jeff Janis forces OT with Hail Mary catch, but celebration short-lived |url=https://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |url-status=live |archive-url=https://web.archive.org/web/20161213200125/http://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=[[ESPN.com]]}}</ref> Dem name am to ein fifth Pro Bowl wey na dem rank am as de sixth best player by ein peers on de ''NFL Top 100'' Players of 2016.<ref>{{Cite web |title=2015 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2015/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180308103829/https://www.pro-football-reference.com/years/2015/probowl.htm |archive-date=March 8, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2016 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190404010429/https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |archive-date=April 4, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2016 ====
[[File:Aaron_Rodgers,_Redskins_v_Packers,_Jan_2016.jpg|right|thumb|Rodgers insyd 2016]]
Thru out de first five games of de 2016 season, Rodgers ein struggles from de 2015 season appear to continue.<ref name="pff2016" /> Thru those games, he plete 60.2% of ein passes, dem average 6.5 yards per attempt, wey he post a passer rating of 88.4—all of wich na be similar to ein 2015 numbers.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log (Games 1–5) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/#127-131-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227180403/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016#127-131-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]]}}</ref> He sanso fumble five times, wey he loose two. Ein lackluster performance thru those games cause much speculation about de causes of ein problems.<ref>{{Cite web |last=Florio |first=Mike |author-link=Mike Florio |date=October 20, 2016 |title=What's wrong with Aaron Rodgers? |url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/whats-wrong-with-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20161226215024/http://profootballtalk.nbcsports.com/2016/10/20/whats-wrong-with-aaron-rodgers/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=NBC Sports |language=en-US}}</ref><ref name="pff2016">{{Cite web |last=Monson |first=Sam |date=October 17, 2016 |title=What's wrong with Aaron Rodgers and the Packers' offense? |url=https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |url-status=live |archive-url=https://web.archive.org/web/20161226214838/https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=profootballfocus.com}}</ref><ref>{{Cite web |last=Gonzalez |first=Jason |date=October 17, 2016 |title=What's wrong with the Packers? All signs point to Aaron Rodgers |url=http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |url-status=live |archive-url=https://web.archive.org/web/20161226145502/http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=Star Tribune}}</ref><ref>{{Cite web |last=Demovsky |first=Rob |date=October 20, 2016 |title=Experts weigh in on Aaron Rodgers: 'No easy fix' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |url-status=live |archive-url=https://web.archive.org/web/20161226150119/http://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=[[ESPN.com]]}}</ref>
[[File:Pro_Football_Hall_of_Fame_(23945585187).jpg|thumb|Rodgers ein uniform dem exhibit at de Pro Football Hall of Fame]]
Insyd a Week 7 ''Thursday Night Football'' game against de Bears, Rodgers rebound by recording a franchise record den career-high 39 completions, breaking Brett Favre ein previous record of 36 insyd 1993, sanso be against de Bears.<ref>{{Cite web |date=October 21, 2016 |title=Aaron Rodgers sets Green Bay Packers completion record in win over Chicago Bears |url=http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |url-status=live |archive-url=https://web.archive.org/web/20161213015800/http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=United Press International}}</ref> Rodgers record 326 passing yards for ein first 300-yard passing game since Week 10 of de 2015 season insyd de 26–10 win.<ref name="pfr gamelog" /> De following week against de Atlanta Falcons, Rodgers record a career regular season high of 60 rushing yards,<ref name="pfr gamelog">{{Cite web |title=Aaron Rodgers Career Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/ |url-status=dead |archive-url=https://web.archive.org/web/20111219211828/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog |archive-date=December 19, 2011 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> wey he fini plus four touchdown passes den a 125.5 passer rating.<ref>{{Cite web |last=Dubin |first=Jared |date=October 30, 2016 |title=Packers vs. Falcons highlights, score: Matt Ryan Aaron Rodgers trade lasers all day |url=http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |url-status=live |archive-url=https://web.archive.org/web/20161226215154/http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=CBS Sports}}</ref>
After a Week 11 loss to de Redskins—de Packers dema fourth in a row, putting dem at 4–6—Rodgers be optimistic about de remainder of de season, saying, "I feel like we fi run de table, I really do."<ref name="runtable1">{{Cite web |last=Demovsky |first=Rob |date=November 23, 2016 |title=Aaron Rodgers: Packers, at 4–6, can close with 6 straight wins |url=https://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |url-status=live |archive-url=https://web.archive.org/web/20170105180337/http://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref> Despite widespread doubt over de likelihood of such a run,<ref name="runtable2">{{Cite web |last=Demovsky |first=Rob |date=January 2, 2016 |title=Aaron Rodgers' magic carries Packers into playoffs on a run-the-table roll |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |url-status=live |archive-url=https://web.archive.org/web/20170103184508/http://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |archive-date=January 3, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Sipple |first=George |date=January 2, 2017 |title=Packers QB Aaron Rodgers makes good on 'run the table' prediction |url=http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |url-status=live |archive-url=https://web.archive.org/web/20170105175931/http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=Detroit Free Press}}</ref><ref>{{Cite web |last=Gantt |first=Darin |date=November 24, 2016 |title=Aaron Rodgers: "I feel we can run the table" |url=http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |url-status=live |archive-url=https://web.archive.org/web/20170105180803/http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=profootballtalk.nbcsports.com}}</ref> de Packers go go on to finish de season plus six straight wins—as Rodgers say dem go fi.
Insyd a Week 12 ''Monday Night Football'' game Rodgers appeare to injure ein hamstring on a scrambling play against de Eagles.<ref name="packnews">{{Cite web |last=Silverstein |first=Tom |date=November 29, 2016 |title=Hamstring injury sends Rodgers to tent |url=http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |url-status=live |archive-url=https://web.archive.org/web/20161129161247/http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |archive-date=November 29, 2016 |access-date=December 13, 2016 |website=Milwaukee Journal Sentinel}}</ref> After de play, Rodgers go into an injury tent on de sideline to get ein leg taped up.<ref name="packnews" /> Na Rodgers, however, no miss any snaps insyd de game wey he fini 30 out of 39 for 313 yards plus no sacks anaa interceptions.<ref name="2016eagles" /> Ein 300-yard performance be ein fourth of de season den de first wey de Eagles dema defense allow all season.<ref name="2016eagles">{{Cite web |last=Jackson |first=Zac |date=November 28, 2016 |title=Rodgers, defense step up as Packers snap losing streak |url=http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |url-status=live |archive-url=https://web.archive.org/web/20161213165321/http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |archive-date=December 13, 2016 |access-date=December 13, 2016}}</ref> De Packers win, 27–13, snapping dema four-game losing streak.
Insyd a 38–10 victory over de Seahawks insyd a Week 14 game, Rodgers den de Packers continue dema recent offensive den defensive success.<ref name="38-10" /><ref name="38-102">{{Cite web |last=Pelissero |first=Tom |date=December 12, 2016 |title=After rout of Seattle, Packers re-emerge as team no one wants to see in January |url=https://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |url-status=live |archive-url=https://web.archive.org/web/20161213014329/http://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=USA Today Sports}}</ref> Rodgers fini plus 246 passing yards, three touchdown passes den a 150.8 passer rating. De 150.8 passer rating be de best recorded against Seattle ein defense since head coach [[Pete Carroll]] take over insyd 2010.<ref name="38-10">{{Cite web |last=Wesseling |first=Chris |date=December 11, 2016 |title=Aaron Rodgers, Packers dismantle Seahawks |url=https://www.nfl.com/news/aaron-rodgers-packers-dismantle-seahawks-0ap3000000755388 |url-status=live |archive-url=https://web.archive.org/web/20161213001101/http://www.nfl.com/news/story/0ap3000000755388/article/mvp-candidate-rodgers-packers-dismantle-seahawks |archive-date=December 13, 2016 |access-date=December 13, 2016 |publisher=National Football League}}</ref> Rodgers do dis despite suffering a calf injury early insyd de game.<ref name="38-10" /> Na dem name am NFC Offensive Player of de Week for ein performance against de Seahawks.<ref>{{Cite web |last=Lam |first=Quang M. |date=December 14, 2016 |title=Le'Veon Bell, Rodgers among NFL Players of the Week |url=http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |url-status=dead |archive-url=https://web.archive.org/web/20190330021109/http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |archive-date=March 30, 2019 |access-date=November 12, 2019 |publisher=National Football League}}</ref>
On December 20, 2016, na Rodgers be selected to ein third consecutive Pro Bowl den ein sixth overall insyd ein career.<ref name="probowl2016">{{Cite web |date=December 20, 2016 |title=NFL announces 2017 Pro Bowl rosters |url=https://www.nfl.com/news/nfl-announces-2017-pro-bowl-rosters-0ap3000000760503 |url-status=live |archive-url=https://web.archive.org/web/20181117075658/http://www.nfl.com/news/story/0ap3000000760503/article/nfl-announces-2017-pro-bowl-rosters |archive-date=November 17, 2018 |access-date=December 24, 2016 |publisher=National Football League}}</ref>
During Week 16, Rodgers den [[Drew Brees]] tie de NFL record for most seasons plus at least 35 touchdown passes plus four—a record he share plus Peyton Manning den Tom Brady.<ref name="35tdpass">{{Cite web |title=Most seasons with at least 35 passing touchdowns, career |url=http://pfref.com/tiny/ww1Iz |url-status=live |archive-url=https://web.archive.org/web/20220209214231/https://stathead.com/tools/tiny.fcgi?id=ww1Iz |archive-date=February 9, 2022 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref><ref name="mosttdpass">{{Cite web |title=NFL Single-Season Passing Touchdowns Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20210201232241/https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |archive-date=February 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> Insyd de game against de Vikings, Rodgers fini 28 of 38 for 347 yards, four touchdown passes den a rushing touchdown to earn NFC Offensive Player of de Week.<ref name="espnvik2016">{{Cite web |last=Demovsky |first=Rob |date=December 24, 2016 |title=Aaron Rodgers for MVP: Packers QB makes case in win over Vikings |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |url-status=live |archive-url=https://web.archive.org/web/20161225084224/http://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |archive-date=December 25, 2016 |access-date=December 25, 2016 |publisher=[[ESPN]]}}</ref><ref>{{Cite web |title=2016 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2016/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231416/https://www.pro-football-reference.com/years/2016/week_16.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 300-yard performance be de first allowed by de Vikings dema defense all season.<ref name="espnvik2016" /> He sanso set Packer regular season records for most 4,000-yard passing seasons (6), most completions insyd a season (374), den—plus Jordy Nelson—most touchdowns by a quarterback/wide receiver combination plus (59).<ref name="espnvik2016" /> Na dem name Rodgers NFC Offensive Player of de Month for December.<ref>{{Cite web |date=January 5, 2017 |title=Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |url-status=live |archive-url=https://web.archive.org/web/20200724202520/https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |archive-date=July 24, 2020 |access-date=September 13, 2019 |website=packers.com}}</ref>
Rodgers help lead de Packers to a NFC North title den a playoff berth insyd 2016.<ref>{{Cite web |title=2016 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2016 |url-status=live |archive-url=https://web.archive.org/web/20180329001215/https://www.pro-football-reference.com/years/2016/ |archive-date=March 29, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers defeat de Giants insyd de Wild Card Round. Rodgers plete 25 of 40 passes for 364 yards den four touchdowns insyd de victory. Dem defeat de #1-seed Cowboys insyd de Divisional Round. Plua de game tied at 31 plus only 18 seconds remaining plus de ball on dema own 32-yard line, Rodgers throw a 36-yard completion to tight end [[Jared Cook]] to put de Packers insyd Mason Crosby ein field goal range. Crosby convert de 51-yard attempt as time expire to win de game.<ref>{{Cite web |last=Steele |first=David |date=January 15, 2017 |title=Aaron Rodgers-to-Jared-Cook joins list of legendary clutch NFL playoff catches |url=https://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |url-status=live |archive-url=https://web.archive.org/web/20190415003703/http://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |archive-date=April 15, 2019 |access-date=September 13, 2019 |website=Sporting News}}</ref> Overall, Rodgers plete 28 of 43 passes for 355 yards, two touchdowns den an interception insyd de victory.<ref>{{Cite web |title=Wild Card – New York Giants at Green Bay Packers – January 8th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701080gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171011073327/https://www.pro-football-reference.com/boxscores/201701080gnb.htm |archive-date=October 11, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=Divisional Round – Green Bay Packers at Dallas Cowboys – January 15th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701150dal.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030639/https://www.pro-football-reference.com/boxscores/201701150dal.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de Falcons insyd de NFC Championship insyd de final game at de Georgia Dome. Rodgers plete 27 of ein 45 passing attempts for 287 yards plus three touchdowns den an interception insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Atlanta Falcons – January 22nd, 2017 |url=https://www.pro-football-reference.com/boxscores/201701220atl.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003240/https://www.pro-football-reference.com/boxscores/201701220atl.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd 2016, Rodgers fini plus 401 completions den 610 attempts (both career highs), a 65.7% completion percentage, 4,428 passing yards, 40 touchdown passes, seven interceptions, a passer rating of 104.2, 369 rushing yards (career-high), den four rushing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |url-status=live |archive-url=https://web.archive.org/web/20211115205043/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Plus ein 40 touchdown passes, he lead de league insyd de statistic for de first time insyd ein career<ref>{{Cite web |last=Borek |first=Jesse |date=January 1, 2017 |title=Packers' Aaron Rodgers leads NFL in TD passes |url=http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |url-status=dead |archive-url=https://web.archive.org/web/20170104172003/http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |archive-date=January 4, 2017 |access-date=January 4, 2017 |website=fanrangsports.com |publisher=Nafstrops Media, LLC}}</ref> wey he cam be one of only four quarterbacks to pass for at least 40 touchdowns insyd multiple seasons.<ref name="40td">{{Cite web |title=Most seasons with at least 40 passing touchdowns, career |url=http://pfref.com/tiny/6BiBx |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=6BiBx |archive-date=December 1, 2021 |access-date=January 5, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Rodgers sanso fini fourth insyd passing yards, completions, attempts, den passer rating.<ref name="2016leaderspfr">{{Cite web |title=2016 NFL Leaders |url=https://www.pro-football-reference.com/years/2016/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20210108041718/https://www.pro-football-reference.com/years/2016/leaders.htm |archive-date=January 8, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Among quarterbacks, he fini third insyd rushing yards den fifth insyd rushing touchdowns.<ref name="2016qbrush">{{Cite web |title=2016 QB rushing leaders |url=http://pfref.com/tiny/698kQ |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=698kQ |archive-date=December 1, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2017.<ref>{{Cite web |title=2017 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201106081444/https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |archive-date=November 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2017 ====
Insyd a Week 1 victory over de Seahawks, Rodgers get ein 50th career game plus at least 300 passing yards. He fini de game plus 311, buh ein streak of 251 consecutive passes widout an interception cam to an end wen defensive tackle [[Nazair Jones]] pick am off insyd de first quarter.<ref>{{Cite news|date=September 10, 2017|title=Rodgers, Packers' defense spark season-opener win over Seahawks|work=Fox Sports|agency=Associated Press|url=http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|url-status=live|access-date=September 10, 2017|archive-url=https://web.archive.org/web/20170912011719/http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|archive-date=September 12, 2017}}</ref> Insyd a Week 2 loss of 34–23 to de Falcons, he get 343 passing yards, two touchdowns, den an interception insyd de first game insyd de new Mercedes-Benz Stadium insyd Atlanta.<ref>{{Cite web |title=Green Bay Packers at Atlanta Falcons – September 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201709170atl.htm |url-status=live |archive-url=https://web.archive.org/web/20171008080102/https://www.pro-football-reference.com/boxscores/201709170atl.htm |archive-date=October 8, 2017 |access-date=October 13, 2017 |website=[[Pro Football Reference]]}}</ref> Insyd Week 5, down by 28–31 against de Cowboys plus less dan two minutes on de clock, Rodgers lead a nine-play, 75-yard touchdown drive insyd de 35–31 victory, earning am NFC Offensive Player of de Week.<ref>{{Cite web |last=Lewis |first=Edward |date=October 11, 2017 |title=Aaron Rodgers, Earl Thomas among Players of Week |url=https://www.nfl.com/news/aaron-rodgers-earl-thomas-among-players-of-week-0ap3000000859999 |url-status=live |archive-url=https://web.archive.org/web/20190504022932/http://www.nfl.com/news/story/0ap3000000859999/article/aaron-rodgers-earl-thomas-among-players-of-week |archive-date=May 4, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref>
During Week 6 against de Vikings, na dem take Rodgers off de field by ein coaches den medical personnel after suffering a shoulder injury on a hit from [[Anthony Barr (American football)|Anthony Barr]]. Shortly thereafter, na dem reveal say Rodgers suffer a fractured right collarbone.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 15, 2017 |title=Aaron Rodgers has broken collarbone, could miss season |url=https://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |url-status=live |archive-url=https://web.archive.org/web/20190504114010/http://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |archive-date=May 4, 2019 |access-date=October 15, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Wesseling |first=Chris |date=October 15, 2017 |title=Aaron Rodgers suffers broken collarbone vs. Vikings |url=https://www.nfl.com/news/aaron-rodgers-suffers-broken-collarbone-vs-vikings-0ap3000000861006 |url-status=live |archive-url=https://web.archive.org/web/20171015222153/http://www.nfl.com/news/story/0ap3000000861006/article/aaron-rodgers-suffers-broken-collarbone-vs-vikings |archive-date=October 15, 2017 |access-date=October 15, 2017 |website=NFL.com |publisher=National Football League}}</ref> De next day, on October 16, na dem announce say Rodgers go get surgery on ein broken collarbone.<ref>{{Cite web |last=Patra |first=Kevin |date=October 16, 2017 |title=Aaron Rodgers will have surgery on broken collarbone |url=https://www.nfl.com/news/aaron-rodgers-will-have-surgery-on-broken-collarbone-0ap3000000862438 |url-status=live |archive-url=https://web.archive.org/web/20171016214737/http://www.nfl.com/news/story/0ap3000000862438/article/aaron-rodgers-will-have-surgery-on-broken-collarbone |archive-date=October 16, 2017 |access-date=October 16, 2017 |website=NFL.com |publisher=National Football League}}</ref> On October 19, he undergo surgery on ein collarbone, wey na he be officially placed on injured reserve de next day.<ref>{{Cite web |date=October 19, 2017 |title=Aaron Rodgers has surgery on collarbone |url=https://www.nfl.com/news/packers-aaron-rodgers-has-surgery-on-collarbone-0ap3000000864021 |url-status=live |archive-url=https://web.archive.org/web/20171020135141/http://www.nfl.com/news/story/0ap3000000864021/article/packers-aaron-rodgers-has-surgery-on-collarbone |archive-date=October 20, 2017 |access-date=October 19, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |date=October 20, 2017 |title=Packers place QB Rodgers on injured reserve |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |url-status=dead |archive-url=https://web.archive.org/web/20171021061030/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |archive-date=October 21, 2017 |access-date=October 20, 2017 |website=Packers.com}}</ref> Na dem insert a total of 13 screws to stabilize ein collarbone.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 26, 2017 |title=Injury roundup: Rodgers has '13 screws' in collarbone |url=https://www.nfl.com/news/injuries-aaron-rodgers-has-13-screws-in-collarbone-0ap3000000867422 |url-status=live |archive-url=https://web.archive.org/web/20171026222152/http://www.nfl.com/news/story/0ap3000000867422/article/injury-roundup-rodgers-has-13-screws-in-collarbone |archive-date=October 26, 2017 |access-date=October 26, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Knoblauch |first=Austin |date=November 3, 2017 |title=Aaron Rodgers focusing on his health, not return date |url=https://www.nfl.com/news/aaron-rodgers-focusing-on-his-health-not-return-date-0ap3000000871634 |url-status=live |archive-url=https://web.archive.org/web/20171104033909/http://www.nfl.com/news/story/0ap3000000871634/article/aaron-rodgers-focusing-on-his-health-not-return-date |archive-date=November 4, 2017 |access-date=November 3, 2017 |website=NFL.com |publisher=National Football League}}</ref>
Rodgers return to practice on December 2, wey dey make am eligible to play insyd de upcoming Week 15 game.<ref>{{Cite web |last=Bergman |first=Jeremy |date=December 2, 2017 |title=Aaron Rodgers returns to Packers practice Saturday |url=https://www.nfl.com/news/aaron-rodgers-returns-to-packers-practice-saturday-0ap3000000885977 |url-status=live |archive-url=https://web.archive.org/web/20191202121449/http://www.nfl.com/news/story/0ap3000000885977/article/aaron-rodgers-returns-to-packers-practice-saturday |archive-date=December 2, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> On December 12, na dem announce say Rodgers be medically cleared by doctors wey he be set to start de next game against de Panthers.<ref>{{Cite web |last=Lewis |first=Edward |date=December 12, 2017 |title=Aaron Rodgers cleared to return, to start vs. Panthers |url=http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |url-status=dead |archive-url=https://web.archive.org/web/20191109071351/http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |archive-date=November 9, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> He be officially activated on December 16.<ref>{{Cite web |date=December 16, 2017 |title=Aaron Rodgers activated from injured reserve |url=https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |url-status=live |archive-url=https://web.archive.org/web/20190413105005/https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |archive-date=April 13, 2019 |access-date=September 12, 2019 |website=Packers.com}}</ref> As dem plan, Rodgers return insyd Week 15 against de Panthers, wer he fini plus 290 passing yards, three touchdowns, den three interceptions as de Packers loose 24–31.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – December 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201712170car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101135719/https://www.pro-football-reference.com/boxscores/201712170car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> However, on December 19, na dem place Rodgers back on injured reserve after de Packers be eliminated from playoff contention.<ref>{{Cite web |date=December 19, 2017 |title=Packers place QB Aaron Rodgers on IR |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |url-status=dead |archive-url=https://web.archive.org/web/20180326030719/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |archive-date=March 26, 2018 |website=Packers.com}}</ref><ref>{{Cite web |last=Patra |first=Kevin |date=December 19, 2017 |title=Packers place Aaron Rodgers back on injured reserve |url=https://www.nfl.com/news/packers-place-aaron-rodgers-back-on-injured-reserve-0ap3000000895650 |url-status=live |archive-url=https://web.archive.org/web/20190920235723/http://www.nfl.com/news/story/0ap3000000895650/article/packers-place-aaron-rodgers-back-on-injured-reserve |archive-date=September 20, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Rapoport |first=Ian |author-link=Ian Rapoport |date=December 17, 2017 |title=Aaron Rodgers' collarbone still not completely healed |url=https://www.nfl.com/news/aaron-rodgers-collarbone-still-not-completely-healed-0ap3000000893627 |url-status=live |archive-url=https://web.archive.org/web/20171223065547/http://www.nfl.com/news/story/0ap3000000893627/article/aaron-rodgers-collarbone-still-not-completely-healed |archive-date=December 23, 2017 |access-date=December 23, 2017 |website=NFL.com |publisher=National Football League}}</ref> He be ranked No. 10 by ein fellow players on de ''NFL Top 100'' Players of 2018.<ref>{{Cite web |title=2018 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201104205316/https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |archive-date=November 4, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2018 ====
[[File:Rodgersthrowing2018redskins.jpg|thumb|Rodgers dey throw a pass insyd 2018]]
On August 29, 2018, Rodgers sign a four-year extension plus de Packers worth $134 million featuring a $57.5 million signing bonus.<ref>{{Cite web |last=Siegle |first=Evan |date=August 29, 2018 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |url-status=live |archive-url=https://web.archive.org/web/20180830044455/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |archive-date=August 30, 2018 |access-date=August 29, 2018 |website=packers.com}}</ref><ref>{{Cite web |last=Teope |first=Herbie |date=August 29, 2018 |title=Aaron Rodgers agrees to 4-year, $134M extension |url=http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |url-status=dead |archive-url=https://web.archive.org/web/20180830005310/http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |archive-date=August 30, 2018 |access-date=August 29, 2018 |publisher=National Football League}}</ref>
During ''Sunday Night Football'' against de Bears insyd Week 1, Rodgers lef de game plus a knee injury buh he return insyd de third quarter. Down by 20 points, Rodgers fini plus 286 passing yards den three touchdowns, leading de Packers rally to a 24–23 win.<ref>{{Cite web |last=Bergman |first=Jeremy |date=September 9, 2018 |title=Rodgers helps Packers rally against Bears |url=https://www.nfl.com/news/aaron-rodgers-rallies-packers-to-improbable-win-0ap3000000960283 |url-status=live |archive-url=https://web.archive.org/web/20180910164829/http://www.nfl.com/news/story/0ap3000000960283/article/aaron-rodgers-rallies-packers-to-improbable-win |archive-date=September 10, 2018 |access-date=September 10, 2018 |publisher=National Football League}}</ref> Despite a nagging knee injury, Rodgers get at least 40 pass attempts insyd each of de next three games. Insyd de last of these, he throw ein first interception insyd 150 attempts.<ref>{{Cite web |date=September 30, 2018 |title=GAME RECAP: Bills fall on the road in Green Bay |url=https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |url-status=live |archive-url=https://web.archive.org/web/20181008214257/https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |archive-date=October 8, 2018 |access-date=December 17, 2018 |website=buffalobills.com}}</ref> Insyd Week 5, Rodgers pass for 442 yards (de second-best of ein career) den three touchdowns, buh sanso two fumbles, insyd a 31–23 loss to de Lions.<ref>{{Cite web |last=Owczarski |first=Jim |date=October 7, 2018 |title=Packers doomed by slow start, Mason Crosby's misses in loss to Lions |url=https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |url-status=live |archive-url=https://web.archive.org/web/20201109032148/https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |archive-date=November 9, 2020 |access-date=December 17, 2018 |website=USA Today}}</ref> Insyd de following game, a 33–30 victory over de 49ers, he get 425 passing yards den two passing touchdowns.<ref>{{Cite web |date=October 16, 2018 |title=Bloodied Aaron Rodgers leads Packers and Crosby to redemption over 49ers |url=https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |url-status=live |archive-url=https://web.archive.org/web/20181030035759/https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |archive-date=October 30, 2018 |access-date=October 29, 2018 |website=The Guardian |agency=Associated Press}}</ref>
Following de bye-week, despite a continuing knee injury,<ref>{{Cite news|last=Maske|first=Mark|date=October 16, 2018|title=Aaron Rodgers's knee isn't quite right. But he's still good enough to carry the Packers|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|url-status=live|access-date=December 6, 2019|archive-url=https://web.archive.org/web/20191207093807/https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|archive-date=December 7, 2019}}</ref> Rodgers get ein third consecutive week plus a 100+ quarterback rating,<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log (Games 5, 6, and 8) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231012655/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |archive-date=December 31, 2019 |access-date=December 5, 2019 |website=[[Pro Football Reference]]}}</ref> wich include 286 yards passing, no interceptions, den a go-ahead 40-yard touchdown pass to [[Marquez Valdes-Scantling]] insyd a 29–27 loss to de Los Angeles Rams.<ref>{{Cite web |last=Beacham |first=Greg |date=October 29, 2018 |title=Late fumble keeps Rams unbeaten with 29–27 win over Packers |url=https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |url-status=live |archive-url=https://web.archive.org/web/20181217202249/https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref>
Insyd Week 14, against de Falcons, Rodgers set an NFL record by converting ein 359th consecutive pass widout an interception, breaking Tom Brady ein previous record.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 9, 2018 |title=No picks for Packer: Rodgers sets no-INT mark |url=https://www.espn.com/nfl/story/_/id/25491996 |url-status=live |archive-url=https://web.archive.org/web/20181210123157/http://www.espn.com/nfl/story/_/id/25491996 |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=[[ESPN.com]]}}</ref> Insyd Week 15, against de Chicago Bears, Rodgers throw for 274 yards den an interception insyd a 24–17 loss. Rodgers ein record streak widout an interception end plus 402 pass attempts after he be intercepted by free safety [[Eddie Jackson (safety)|Eddie Jackson]].<ref>{{Cite web |last=Cohen |first=Jay |date=December 16, 2018 |title=Rodgers throws interception as Packers lose 24–17 to Bears |url=https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |url-status=live |archive-url=https://web.archive.org/web/20181217145036/https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref> During Week 16 against de Jets, Rodgers fini plus 442 passing yards, two passing touchdowns, den two rushing touchdowns. Trailing at one point by 15 points, Rodgers den de Packers win 44–38 insyd overtime.<ref>{{Cite web |date=December 23, 2018 |title=Rodgers leads Packers to wild 44–38 overtime win over Jets |url=https://www.espn.com/nfl/recap?gameId=401030870 |url-status=live |archive-url=https://web.archive.org/web/20190101002910/http://www.espn.com/nfl/recap?gameId=401030870 |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> He match ein own feat of achieving at least 400 passing yards, two passing touchdowns, deb two rushing touchdowns insyd a single game. De only oda time insyd NFL history wey na e occur be wen Rodgers accomplish am insyd 2011 against de Denver Broncos.<ref>{{Cite web |last=Kruse |first=Zach |date=December 24, 2018 |title=Packers QB Aaron Rodgers matches his own rare feat vs. Jets |url=https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |url-status=live |archive-url=https://web.archive.org/web/20190123071358/https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Packers Wire}}</ref>
On December 18, 2018, na dem name Rodgers to ein seventh Pro Bowl.<ref>{{Cite web |date=December 18, 2018 |title=NFL reveals rosters for 2019 Pro Bowl in Orlando |url=https://www.nfl.com/news/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando-0ap3000001001792 |url-status=live |archive-url=https://web.archive.org/web/20190108220211/http://www.nfl.com/news/story/0ap3000001001792/article/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando |archive-date=January 8, 2019 |access-date=January 1, 2019 |publisher=National Football League}}</ref> He decline de appearance secof injury wey na he be replaced by [[Russell Wilson]].<ref>{{Cite web |last=Fentress |first=Aaron |date=January 9, 2019 |title=Russell Wilson replaces Aaron Rodgers on NFC Pro Bowl team |url=https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |url-status=live |archive-url=https://web.archive.org/web/20190626144630/https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |archive-date=June 26, 2019 |access-date=June 26, 2019 |website=NBC Sports Northwest}}</ref>
Insyd de regular season finale against de Detroit Lions, Rodgers suffer a concussion early insyd de game wey he no go return.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 30, 2018 |title=Aaron Rodgers suffers concussion in Packers' regular season finale |url=https://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |url-status=live |archive-url=https://web.archive.org/web/20190101005826/http://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]]}}</ref> Na den then send am to de hospital to test for concussion symptoms.<ref name="2018conc">{{Cite web |last=Jones |first=Brian |date=December 31, 2018 |title=Aaron Rodgers sent to hospital after suffering concussion |url=https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |url-status=live |archive-url=https://web.archive.org/web/20220427185549/https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |archive-date=April 27, 2022 |access-date=January 1, 2019 |website=247 SPORTS}}</ref> Secof na de Packers already be eliminated from playoff contention, Rodgers answer questions about whether he for be playing, for fear of injury, by saying: "''That's just not the way I lead, and I'm super-competitive, and I want to be out there with the guys and I look forward to being out there."''<ref name="2018conc" /> Na dem later spot Rodgers at de Packers dema facility after de game.<ref name="2018conc" />
Rodgers fini de season plus 372 completions, 597 attempts, 4,442 passing yards, 25 passing touchdowns, two interceptions den a passer rating of 97.6.<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/ |access-date=January 8, 2026 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to setting de record for consecutive passes widout an interception during de season, Rodgers set NFL records for interception percentage for a season, plus only 0.335% of ein passes be intercepted, den for de amount of thrown away passes.<ref name="passintpfr">{{Cite web |title=NFL Pass Interception % Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20190102050903/https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |archive-date=January 2, 2019 |access-date=January 1, 2019 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |last=Smith |first=Michael David |date=December 3, 2018 |title=Aaron Rodgers avoids interceptions by throwing the ball away at a record rate |url=https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |url-status=live |archive-url=https://web.archive.org/web/20190807024232/https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |archive-date=August 7, 2019 |access-date=November 12, 2019 |website=ProFootballTalk}}</ref> Na dem rank am eighth by ein fellow players on de ''NFL Top 100'' Players of 2019.<ref>{{Cite web |title=2019 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112140727/https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2019 ====
[[File:Aaron_Rodgers_2019.jpg|right|thumb|Rodgers insyd a game against de Washington Redskins ]]
Rodgers start de 2019 season plus a new head coach insyd [[Matt LaFleur]] following de departure of Mike McCarthy.<ref>{{Cite web |last=Wilde |first=Jason |date=September 17, 2019 |title=Believing offensive success is 'close,' Matt LaFleur and Aaron Rodgers focus on making more plays |url=https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |url-status=live |archive-url=https://web.archive.org/web/20190927192039/https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=madison.com}}</ref> De Packers offense rely less on Rodgers ein trademark passes den more on heavy formations den play-action throws to take advantage of running back [[Aaron Jones (running back)|Aaron Jones]].<ref>{{Cite web |last=Mays |first=Robert |date=January 17, 2020 |title=The Incalculable Legacy of Aaron Rodgers |url=https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |url-status=live |archive-url=https://web.archive.org/web/20200409091343/https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |archive-date=April 9, 2020 |access-date=April 7, 2020 |website=The Ringer |language=en}}</ref>
Rodgers help lead de Packers to a 3–0 start plus victories over de Bears, Vikings, den Broncos.<ref>{{Cite web |last=Wilner |first=Barry |date=September 6, 2019 |title=Packers' D, Aaron Rodgers beat Bears 10–3 in opener |url=https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |url-status=live |archive-url=https://web.archive.org/web/20190927192201/https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref><ref>{{Cite web |date=September 15, 2019 |title=Packers ride Rodgers' hot start to 21–16 win over Vikings |url=https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |url-status=dead |archive-url=https://web.archive.org/web/20190927192237/https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |publisher=WBAY |agency=Associated Press}}</ref><ref>{{Cite web |last=Jenkins |first=Keith |date=September 22, 2019 |title=Packers remain unbeaten with 27–16 win over Broncos |url=https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |url-status=live |archive-url=https://web.archive.org/web/20190927193720/https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref> Insyd Week 4, against de Eagles on ''Thursday Night Football'', he get 422 passing yards den two passing touchdowns, buh he sanso throw de game-ending interception as de Packers be handed dema first loss of de season by a score of 34–27.<ref>{{Cite web |date=September 27, 2019 |title=Eagles pick off Aaron Rodgers' late pass to beat Packers |url=https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |url-status=live |archive-url=https://web.archive.org/web/20190927063930/https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=Los Angeles Times |agency=Associated Press}}</ref> Insyd Week 7, against de Raiders, Rodgers post ein first-ever game plus a perfect passer rating of 158.3, de first quarterback insyd team history to do so.<ref>{{Cite web |last=Joseph |first=Andrew |date=October 20, 2019 |title=The Packers players were so pumped to find out Aaron Rodgers had a perfect passer rating |url=https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |url-status=live |archive-url=https://web.archive.org/web/20191021004107/https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |archive-date=October 21, 2019 |access-date=October 20, 2019 |website=USA Today}}</ref> He plete 25-of-31 passes for 429 yards den five touchdowns insyd de 42–24 victory.<ref>{{Cite web |last=Kruse |first=Zach |date=October 20, 2019 |title=Perfection: Aaron Rodgers finishes with perfect passer rating vs. Raiders |url=https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |url-status=live |archive-url=https://web.archive.org/web/20191020214833/https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |archive-date=October 20, 2019 |access-date=October 20, 2019 |website=PackersWire}}</ref> Na dem name am de NFC Offensive Player of de Week for ein performance.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 23, 2019 |title=Aaron Rodgers, Jacoby Brissett among Players of the Week |url=https://www.nfl.com/news/aaron-rodgers-jacoby-brissett-among-players-of-the-week-0ap3000001068643 |url-status=live |archive-url=https://web.archive.org/web/20191023124430/http://www.nfl.com/news/story/0ap3000001068643/article/aaron-rodgers-jacoby-brissett-among-players-of-the-week |archive-date=October 23, 2019 |access-date=October 23, 2019 |publisher=National Football League}}</ref> Insyd Week 17, against de Lions, Rodgers help lead de team to a 23–20 comeback win. As a result of de victory, de Packers secure a first round bye insyd de playoffs.<ref>{{Cite web |date=December 29, 2019 |title=Packers barely beat Lions 23–20 to earn first-round bye |url=https://www.espn.com/nfl/recap?gameId=401127983 |url-status=live |archive-url=https://web.archive.org/web/20220415135127/https://www.espn.com/nfl/recap?gameId=401127983 |archive-date=April 15, 2022 |access-date=December 29, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers fini de 2019 season plus 4,002 passing yards, 26 passing touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2019 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |url-status=live |archive-url=https://web.archive.org/web/20191231012649/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |archive-date=December 31, 2019 |access-date=December 31, 2019 |website=[[Pro Football Reference]]}}</ref>
Insyd de Divisional Round of de playoffs against de Seahawks, Rodgers plete 16 passes on 27 attempts wey he throw for 243 yards den two touchdowns during de 28–23 win.<ref>{{Cite web |date=January 12, 2020 |title=Packers hold off Seahawks 28–23 to reach NFC title game |url=https://www.espn.com/nfl/recap?gameId=401131042 |url-status=live |archive-url=https://web.archive.org/web/20200417042143/https://www.espn.com/nfl/recap?gameId=401131042 |archive-date=April 17, 2020 |access-date=January 13, 2020 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd de NFC Championship Game against de 49ers, Rodgers plete 31 passes on 39 attempts wey he throw for 326 yards den two touchdowns, buh he sanso throw two interceptions, wey dey include one to [[Richard Sherman (American football)|Richard Sherman]] insyd de final two minutes of de game as de Packers loose 37–20.<ref>{{Cite web |last=Wagner-McGough |first=Sean |date=January 19, 2020 |title=Packers suffer system-wide failure in ugly NFC Championship loss as clock ticks on the Aaron Rodgers era |url=https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |url-status=live |archive-url=https://web.archive.org/web/20200121163627/https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |archive-date=January 21, 2020 |access-date=January 20, 2020 |website=CBS Sports}}</ref> De loss mark Rodgers ein third consecutive NFC Championship loss (a streak wey go extend to four de following season).<ref name="Clunker">{{Cite web |last=Reischel |first=Rob |date=January 19, 2020 |title=Green Bay Packers' Aaron Rodgers Has Another NFC Championship Game Clunker |url=https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |url-status=live |archive-url=https://web.archive.org/web/20200120124354/https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |archive-date=January 20, 2020 |access-date=January 22, 2020 |website=Forbes}}</ref> Na dem rank am 16th by ein fellow players on de ''NFL Top 100'' Players of 2020.<ref>{{Cite web |title=2020 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200015/https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2020: Third MVP ====
Prior to a Week 5 bye, Rodgers help lead de Packers to a four-game winning streak to start de 2020 season.<ref>{{Cite web |date=October 7, 2020 |title=Packers head into their Week 5 bye |url=https://www.packers.com/news/packers-head-into-their-week-5-bye |url-status=live |archive-url=https://web.archive.org/web/20211115190601/https://www.packers.com/news/packers-head-into-their-week-5-bye |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=packers.com |language=en-US}}</ref> That winning streak go end insyd Week 6 against de Buccaneers, insyd wich Rodgers throw for 160 yards den two interceptions, wey dey include a pick-six (de third of ein professional career), during de 38–10 loss.<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – October 18th, 2020 |url=https://www.pro-football-reference.com/boxscores/202010180tam.htm |url-status=live |archive-url=https://web.archive.org/web/20201019130703/https://www.pro-football-reference.com/boxscores/202010180tam.htm |archive-date=October 19, 2020 |access-date=October 22, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> After a 3–2 stretch give de team, Rodgers throw for 211 yards den four touchdowns insyd a 41–25 victory over de Bears insyd Week 12. During de game, he cam be de 11th player insyd NFL history to eclipse 50,000 career passing yards, achieving de milestone on a 39-yard touchdown pass to tight end [[Robert Tonyan]] midway thru de third quarter.<ref>{{Cite magazine|last=Huber|first=Bill|date=November 29, 2020|title=Rodgers Makes History with 50,000-Yard Milestone|url=https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|url-status=live|archive-url=https://web.archive.org/web/20201130035319/https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|archive-date=November 30, 2020|access-date=November 30, 2020|magazine=Sports Illustrated}}</ref> In Week 13 against de Eagles, Rodgers throw for 295 yards den three touchdowns during de 30–16 win. Rodgers ein third touchdown pass of de game be to wide receiver [[Davante Adams]] wey na e be ein 400th career touchdown pass.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – December 6th, 2020 |url=https://www.pro-football-reference.com/boxscores/202012060gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20201125163729/https://www.pro-football-reference.com/boxscores/202012060gnb.htm |archive-date=November 25, 2020 |access-date=December 8, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Na dem name Rodgers de NFC Offensive Player of de Week for ein performance insyd Week 13.<ref>{{Cite web |last=Gordon |first=Grant |date=December 9, 2020 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |url-status=live |archive-url=https://web.archive.org/web/20201209165050/https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |archive-date=December 9, 2020 |access-date=December 10, 2020 |publisher=National Football League |language=en-US}}</ref> On December 21, 2020, na dem select am for de 2021 Pro Bowl.<ref>{{Cite web |date=December 21, 2020 |title=NFL reveals complete AFC, NFC rosters for 2021 Pro Bowl |url=https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |url-status=live |archive-url=https://web.archive.org/web/20201222000525/https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |archive-date=December 22, 2020 |access-date=December 21, 2020 |publisher=National Football League}}</ref> N dem name Rodgers de NFC Offensive Player of de Month for ein performance insyd December after passing for 15 touchdowns den one interception insyd five victories for de Packers.<ref>{{Cite web |last=Gordon |first=Grant |date=January 7, 2021 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen among Players of the Month |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20210107133506/https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |archive-date=January 7, 2021 |access-date=January 7, 2021 |publisher=National Football League}}</ref>
Overall, Rodgers fini de 2020 regular season plus 4,299 passing yards, 48 passing touchdowns, den five interceptions. Ein passing touchdowns total set a new franchise record.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> He get seven total games plus four passing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2020 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |url-status=live |archive-url=https://web.archive.org/web/20210109144744/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |archive-date=January 9, 2021 |access-date=January 7, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> He lead de league insyd numerous statistical categories, wey dey include completion percentage, touchdown passes, den passer rating.<ref>{{Cite web |last=Kruse |first=Zach |date=January 4, 2021 |title=Packers QB Aaron Rodgers led NFL in all these statistical categories in 2020 |url=https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |url-status=live |archive-url=https://web.archive.org/web/20210104150141/https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |archive-date=January 4, 2021 |access-date=January 7, 2021 |website=Packers Wire |language=en-US}}</ref> On January 8, 2021, he make de 2020 All-Pro Team first-team.<ref>{{Cite web |date=January 8, 2021 |title=2020 NFL All-Pro Team Roster |url=https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |url-status=live |archive-url=https://web.archive.org/web/20210108171953/https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |archive-date=January 8, 2021 |access-date=January 8, 2021 |work=Associated Press News}}</ref> De Pro Football Writers of America name am de NFL MVP.<ref>{{Cite web |last=Werner |first=Barry |date=January 21, 2021 |title=Aaron Rodgers earns PFWA NFL MVP honors |url=https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |url-status=live |archive-url=https://web.archive.org/web/20210131171403/https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |archive-date=January 31, 2021 |access-date=January 24, 2021 |website=Yahoo! Sports}}</ref>
De Packers fini plus a 13–3 record, dem win de NFC North, wey dem earn a first-round bye for de NFC playoffs.<ref>{{Cite web |title=2020 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2020/index.htm |url-status=live |archive-url=https://web.archive.org/web/20211115190600/https://www.pro-football-reference.com/years/2020/index.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de Divisional Round of de playoffs against de Rams, Rodgers throw for 296 yards den two touchdowns wey he sanso rush for anoda touchdown during de 32–18 win.<ref>{{Cite web |title=Divisional Round – Los Angeles Rams at Green Bay Packers – January 16th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210118220025/https://www.pro-football-reference.com/boxscores/202101160gnb.htm |archive-date=January 18, 2021 |access-date=January 20, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de NFC Championship against de Buccaneers, Rodgers throw for 346 yards den three touchdowns, buh he sanso throw an interception wey na he be sacked five times while he be constantly pressured during de 31–26 loss.<ref name="mcatee_01242021">{{Cite news|last=McAtee|first=Riley|date=January 24, 2021|title=The Packers' Championship-Game Curse Continues. Will It Cost Them Aaron Rodgers?|work=The Ringer|url=https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125040540/https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|archive-date=January 25, 2021}}</ref><ref>{{Cite news|last=Hoffman|first=Benjamin|date=January 24, 2021|title=What We Learned From the N.F.L.'s Conference Championships|work=The New York Times|url=https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125041821/https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|archive-date=January 25, 2021}}</ref><ref name="demovsky_01242021">{{Cite web |last=Demovsky |first=Rob |date=January 24, 2021 |title=Aaron Rodgers uncertain about future with Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20210125195535/https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |archive-date=January 25, 2021 |access-date=January 25, 2021 |website=[[ESPN.com]]}}</ref> Rodgers fall to 1–4 insyd conference championship games, becoming de first quarterback insyd NFL history to loose four in a row.<ref name="mcatee_01242021" /><ref name="demovsky_01242021" /><ref>{{Cite web |title=NFC Championship – Tampa Bay Buccaneers at Green Bay Packers – January 24th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101240gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210129001224/https://www.pro-football-reference.com/boxscores/202101240gnb.htm |archive-date=January 29, 2021 |access-date=January 31, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> After de season, he win de AP Most Valuable Player Award<ref>{{Cite web |last=Shook |first=Nick |date=February 6, 2021 |title=Packers QB Aaron Rodgers named 2020 AP NFL Most Valuable Player |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |url-status=live |archive-url=https://web.archive.org/web/20210207034518/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |archive-date=February 7, 2021 |access-date=February 6, 2021 |publisher=National Football League}}</ref> as well as de FedEx Air Player of de Year.<ref>{{Cite web |title=FedEx Air and Ground Players of the Year |url=https://www.nfl.com/voting/air-and-ground/player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20210125192004/https://www.nfl.com/voting/air-and-ground/player-of-the-year |archive-date=January 25, 2021 |access-date=January 25, 2021 |publisher=National Football League}}</ref> Na dem rank am 3rd by ein fellow players on de ''NFL Top 100'' Players of 2021.<ref>{{Cite web |title=2021 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200023/https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2021: Fourth MVP ====
[[File:Aaron_Rodgers_Packers_OCT2021_(cropped).jpg|right|thumb|Rodgers insyd 2021]]
Rodgers ein 2021 season get a rough start, as he plete 15 of 28 passes for 133 yards den two interceptions as Green Bay loose 38–3 to de Saints at TIAA Bank Field.<ref>{{Cite web |last=Benjamin |first=Cody |date=September 12, 2021 |title=Packers bench Aaron Rodgers for Jordan Love as Jameis Winston torches Green Bay in Week 1 |url=https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |url-status=live |archive-url=https://web.archive.org/web/20210913012242/https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |archive-date=September 13, 2021 |access-date=September 13, 2021 |website=CBS Sports |language=en}}</ref> Na dem pull am insyd de fourth quarter for [[Jordan Love]] as na ein chance of a comeback be all buh eliminated.<ref>{{Cite web |last=Polacek |first=Scott |date=September 12, 2021 |title=Packers' Aaron Rodgers Pulled for Jordan Love amid Blowout by Jameis Winston, Saints |url=https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |url-status=live |archive-url=https://web.archive.org/web/20211021021121/https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |archive-date=October 21, 2021 |access-date=October 21, 2021 |website=Bleacher Report |language=en}}</ref> However, Rodgers dem de Packers recover, going on a seven-game winning streak following de loss to New Orleans.<ref>{{Cite web |last1=Hodkiewicz |first1=Wes |last2=Spofford |first2=Mike |date=October 28, 2021 |title=Late interception wins it for Packers, 24–21 over Cardinals |url=https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |url-status=live |archive-url=https://web.archive.org/web/20211030160810/https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |archive-date=October 30, 2021 |access-date=October 30, 2021 |website=packers.com |language=en-US}}</ref>
Insyd Week 6, Rodgers seal a 24–14 victory against de Bears plus a six-yard touchdown run with 4:34 to go insyd de fourth quarter. During ein celebration, he yell at de Chicago crowd, "''All my f***ing life I own you! I still own you!"''<ref>{{cite web |last1=Demovsky |first1=Rob |date=October 17, 2021 |title=Packers QB Aaron Rodgers taunts jeering Bears fans after game-clinching TD run: 'I still own you' |url=https://www.espn.com/nfl/story/_/id/32419669/packers-qb-aaron-rodgers-taunts-jeering-bears-fans-game-clinching-td-run-own-you |access-date=September 3, 2025 |website=ESPN.com |publisher=ESPN}}</ref> Na de utterance be heavily discussed insyd ein aftermath, den two months later- wen Rodgers play de second game against Chicago- he state say na he get no regrets for making de comment.<ref>{{cite web |last1=Goodbread |first1=Chase |date=December 9, 2021 |title=Packers QB Aaron Rodgers has no regrets for saying 'I own you' to Bears fan |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-has-no-regrets-for-saying-i-own-you-to-bears-fan |access-date=September 3, 2025 |website=NFL.com |publisher=NFL}}</ref>
Following a positive test for [[COVID-19]], na dem place Rodgers on de COVID-19 reserve list on November 3.<ref>{{Cite web |date=November 3, 2021 |title=Packers place QB Aaron Rodgers on reserve/COVID-19 list |url=https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211107032353/https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |archive-date=November 7, 2021 |access-date=November 15, 2021 |website=Packers.com}}</ref> He miss 10 days per de league ein COVID-19 policies for unvaccinated players, wey dey include a game against de Chiefs.<ref>{{Cite web |last=Shook |first=Nick |date=November 3, 2021 |title=Packers QB Aaron Rodgers tests positive for COVID-19, will not play in Week 9 versus Chiefs |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |url-status=live |archive-url=https://web.archive.org/web/20211103152721/https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |archive-date=November 3, 2021 |access-date=November 3, 2021 |publisher=National Football League}}</ref> Despite answering "''Yeah, I'm immunized''" wen dem biz am during de preseason if na he be vaccinated against COVID-19, na he no actually receive a vaccination. Instead, he receive homeopathic treatment from ein personal doctor. While unvaccinated, he commit multiple violations of NFL COVID-19 protocols for unvaccinated players, wey dey include attending parties plus teammates while he no dey use PPE den dey appear unmasked at multiple postgame press conferences.<ref>{{Cite news|last=Jenkins|first=Sally|date=November 4, 2021|title=Aaron Rodgers is entitled to stay unvaccinated. He's not entitled to lie about it|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211105053620/https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|archive-date=November 5, 2021}}</ref><ref>{{Cite web |last=Shpigel |first=Ben |date=November 3, 2021 |title=Aaron Rodgers Out After Positive Coronavirus Test |url=https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |url-status=live |archive-url=https://web.archive.org/web/20211105230713/https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |archive-date=November 5, 2021 |access-date=November 6, 2021 |website=[[The New York Times]]}}</ref><ref>{{Cite news|last=Maske|first=Mark|date=November 3, 2021|title=Aaron Rodgers tests positive for coronavirus, is considered unvaccinated under NFL rules|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211103182339/https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|archive-date=November 3, 2021}}</ref><ref name="Paras">{{Cite web |last=Paras |first=Matthew |date=November 8, 2021 |title=State Farm backs Rodgers despite vaccine controversy |url=https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |url-status=live |archive-url=https://web.archive.org/web/20211110054603/https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=The Washington Times |language=en-US}}</ref><ref>{{Cite web |last=Florio |first=Mike |date=November 6, 2021 |title=Aaron Rodgers consulted with Joe Rogan, has taken Ivermectin |url=https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |url-status=live |archive-url=https://web.archive.org/web/20211110054606/https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=ProFootballTalk |language=en-US}}</ref> After a review, na dem fine am $14,650 for violations of de agreed protocols wey na ein team be fined $300,000.<ref name="demosky1">{{Cite web |last=Demovsky |first=Rob |date=November 10, 2021 |title=Green Bay Packers, Aaron Rodgers, Allen Lazard fined for COVID-19 protocol violations, source says |url=https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |url-status=live |archive-url=https://web.archive.org/web/20220417022230/https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |archive-date=April 17, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]]}}</ref><ref name="gordon1">{{Cite web |last=Gordon |first=Grant |date=November 9, 2021 |title=Packers fined $300K, Aaron Rodgers, Allen Lazard fined $14K for violation of COVID protocols |url=https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |url-status=live |archive-url=https://web.archive.org/web/20220415084129/https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |archive-date=April 15, 2022 |access-date=January 23, 2022 |publisher=National Football League}}</ref>
Na Rodgers be activated off de reserve/COVID-19 list on November 13, wey he return to play de next day against de Seahawks, a game de Packers win 17–0.<ref>{{Cite web |date=November 13, 2021 |title=Packers activate QB Aaron Rodgers off reserve/COVID-19 list |url=https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211113210134/https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |archive-date=November 13, 2021 |access-date=November 13, 2021 |website=Packers.com}}</ref> Insyd Week 15, Rodgers throw for 268 yards den three touchdowns insyd a 31–30 win over de Ravens, wich clinch de NFC North title give de Packers for a third consecutive season wey e earn am NFC Offensive Player of de Week honors.<ref>{{Cite web |last=Gordon |first=Grant |date=December 22, 2021 |title=Packers QB Aaron Rodgers, Chiefs TE Travis Kelce lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |url-status=live |archive-url=https://web.archive.org/web/20220113012121/https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |archive-date=January 13, 2022 |access-date=January 17, 2022 |publisher=National Football League}}</ref> On December 23, 2021, na dem name Rodgers to ein tenth Pro Bowl.<ref>{{Cite web |date=December 22, 2021 |title=2022 NFL Pro Bowl rosters for AFC, NFC: Bucs' Tom Brady gets record 15th selection |url=https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |url-status=live |archive-url=https://web.archive.org/web/20211228200849/https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |archive-date=December 28, 2021 |access-date=December 24, 2021 |website=[[ESPN.com]]}}</ref>
Insyd a Week 16 victory over de Browns, Rodgers throw ein 443rd career touchdown pass, passing Brett Favre for de most all-time career touchdown passes insyd Packers history.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 25, 2021 |title=Rodgers tops Favre's Pack record for TD passes |url=https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |url-status=live |archive-url=https://web.archive.org/web/20211227221346/https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |archive-date=December 27, 2021 |access-date=January 17, 2022 |website=[[ESPN.com]] |language=en}}</ref> For ein play insyd de month of December, Rodgers earn NFC Offensive Player of de Month honors.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=December 30, 2021 |title=For 10th time, Packers QB Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20220104191144/https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month#:~:text=GREEN%2520BAY%2520%25E2%2580%2593%2520Following%2520a%2520dominant,10th%2520time%2520in%2520his%2520career |archive-date=January 4, 2022 |access-date=January 17, 2022 |website=Packers.com |language=en-US}}</ref> He fini de 2021 season plus 4,115 passing yards, 37 touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2021 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2021/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> On January 14, 2022, Rodgers earn ein fourth career first-team All-Pro selection.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=January 14, 2022 |title=Three Packers players named first-team All-Pro |url=https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |url-status=live |archive-url=https://web.archive.org/web/20220116105423/https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |archive-date=January 16, 2022 |access-date=January 14, 2022 |website=packers.com}}</ref>
Insyd de Divisional Round against de 49ers, Rodgers throw for 225 yards, buh a poor performance by de special teams unit haunt de Packers, dem loose 13–10. Na e be Rodgers ein fourth loss insyd as many games to de 49ers insyd de postseason den Rodgers ein second home divisional loss.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> He sanso fail to notice a wide–open Allen Lazard (den [[Equanimeous St. Brown]]) on ein last throw of de game, instead targeting Davante Adams insyd double coverage for a Hail Mary attempt.<ref>{{Cite web |last=Farrar |first=Doug |title=What Aaron Rodgers missed on the play that could have saved the Packers' season |url=https://touchdownwire.usatoday.com/story/sports/nfl/touchdown/2022/01/23/aaron-rodgers-davante-adams-allen-lazard-2021-nfl-playoffs/80662791007/ |access-date=2026-08-06 |website=Touchdown Wire |language=en-US}}</ref> After de season, Rodgers win de AP NFL Most Valuable Player Award for de second consecutive season den de fourth time overall.<ref>{{Cite web |last=Shook |first=Nick |date=February 10, 2022 |title=Packers QB Aaron Rodgers named 2021 AP NFL MVP |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20220425153314/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |archive-date=April 25, 2022 |access-date=February 11, 2022 |publisher=National Football League}}</ref> Rodgers cam be de fifth player to win consecutive MVPs den first since Peyton Manning between 2008 den 2009.<ref>{{Cite web |last=Sutelan |first=Edward |date=February 10, 2022 |title=NFL MVP back-to-back winners: Aaron Rodgers set to join rare company in NFL history |url=https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |url-status=live |archive-url=https://web.archive.org/web/20220413074439/https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |archive-date=April 13, 2022 |access-date=February 20, 2022 |website=sportingnews.com |language=en}}</ref> Rodgers join Manning as de only players insyd NFL history to win at least four MVPs.<ref>{{Cite web |last=Spofford |first=Mike |date=February 10, 2022 |title=Packers QB Aaron Rodgers wins fourth NFL MVP award |url=https://www.packers.com/news/packers-qb-aaron-rodgers-wins-fourth-nfl-mvp-award |access-date=January 19, 2023 |website=packers.com |language=en-US}}</ref> Na dem rank am third by ein fellow players on de ''NFL Top 100'' Players of 2022.<ref>{{Cite web |title=2022 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2022-nfl-top-100.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2022 ====
[[File:Aaron_Rodgers_OCT2022_(cropped).jpg|thumb|Rodgers insyd 2022]]
[[File:Aaron_Rodgers_Packers_vs_Commanders_OCT2022.jpg|left|thumb|Rodgers dey play against de Washington Commanders insyd 2022]]
On March 8, Rodgers confirm say he go return den play give de Packers for de 2022 season after speculations dat Rodgers go fi retire anaa demand a trade to anoda team.<ref>{{Cite web |last=Demovsky |first=Rob |date=March 8, 2021 |title=QB Aaron Rodgers returning to play for Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220411070329/https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |archive-date=April 11, 2022 |access-date=March 9, 2021 |website=[[ESPN.com]]}}</ref> Na der be reports say Rodgers den de Packers agree to terms on a 4-year, $200 million contract extension wey go make am de highest-paid player insyd NFL history, buh Rodgers deny those reports on Twitter, wey he state say de numbers on de proposed contract be inaccurate, den dat he be yet to sign such a contract. He confirm, however, say he go return to play ein 18th NFL season plus de Packers.<ref>{{Cite web |date=March 15, 2022 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |url-status=live |archive-url=https://web.archive.org/web/20220404205504/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |archive-date=April 4, 2022 |access-date=April 27, 2022 |website=Packers.com}}</ref>
On March 16, he officially sign ein contract extension. Na de final terms of de contract be a 3-year contract (wich replace de final year of ein existing contract) worth $150.8 million, plus $101.5 million guaranteed. De new contract make am de highest paid player insyd North American sports history on an annual basis, surpassing de NBA ein [[Damian Lillard]] ein $49 million per annum contract.<ref>{{Cite web |last=Roscher |first=Liz |date=March 15, 2022 |title=Aaron Rodgers' Packers contract is reportedly official, and the numbers are staggering |url=https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |url-status=live |archive-url=https://web.archive.org/web/20220427025539/https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |archive-date=April 27, 2022 |access-date=March 17, 2022 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd de season opener against de Vikings, Rodgers throw for 195 yards den an interception insyd de 23–7 loss.<ref>{{Cite web |last=Demovsky |first=Rob |date=September 12, 2022 |title=Following loss to Minnesota Vikings, QB Aaron Rodgers says Green Bay Packers 'hurting ourselves' with 'too many mental mistakes' |url=https://www.espn.com/nfl/story/_/id/34575984/following-loss-minnesota-vikings-qb-aaron-rodgers-says-green-bay-packers-hurting-ourselves-too-many-mental-mistakes |access-date=September 12, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{cite web |last=Huber |first=Bill |date=September 12, 2022 |title=Mental Mistakes Frustrate Rodgers in Packers' Loss at Vikings |url=https://www.si.com/nfl/packers/gameday/mental-mistakes-frustrate-rodgers-in-packers-loss-at-vikings |access-date=July 1, 2025 |website=SI.com}}</ref> Insyd Week 4 against de Patriots, Rodgers throw for 251 yards den two touchdowns, buh he sanso throw ein fourth career pick-six to [[Jack Jones (American football)|Jack Jones]] insyd de 27–24 overtime win.<ref>{{Cite web |last=Patra |first=Kevin |date=October 3, 2022 |title=Aaron Rodgers on Packers' OT win over Patriots: 'This way of winning, I don't think, is sustainable' |url=https://www.nfl.com/news/aaron-rodgers-packers-patriots-this-way-of-winning-not-sustainable |access-date=October 13, 2022 |publisher=National Football League}}</ref> Insyd Week 5 at London, Rodgers throw for 222 yards den two touchdowns insyd an upset loss against de Giants.<ref>{{Cite news|last=Larrison|first=Ryan|date=October 9, 2022|title=Aaron Rodgers threw two touchdowns in a loss at London|url=https://www.rotoballer.com/player-news/aaron-rodgers-throws-two-touchdowns-during-loss-in-london/1079701|access-date=October 10, 2022|website=rotoballer.com}}</ref> Insyd Week 8 against de Buffalo Bills on Sunday Night Football, Rodgers throw for 203 yards, two touchdowns den one interception as de Packers loose dema fourth consecutive game insyd de 27–17 defeat.<ref>{{Cite web |last=Patra |first=Kevin |date=October 31, 2022 |title=Aaron Rodgers on the Packers' 3–5 start |url=https://www.nfl.com/news/aaron-rodgers-packers-3-5-start-nobody-feels-sorry-for-us-bills |access-date=November 5, 2022 |publisher=National Football League |language=en-US}}</ref> De next week against de Lions, Rodgers throw for 291 yards, a touchdown, den three interceptions insyd de 15–9 loss. Na e be de first time since Week 15 of de 2017 season wey Rodgers throw three interceptions insyd a game.<ref>{{Cite web |date=November 6, 2022 |title=Aaron Rodgers throws 3 INTs, lets Lions beat Packers 15–9 |url=https://www.cbssports.com/nfl/news/aaron-rodgers-throws-3-ints-lets-lions-beat-packers-15-9/ |access-date=November 6, 2022 |website=CBSSports.com |language=en |agency=Associated Press}}</ref> Rodgers bounce back de following week against de Cowboys, completing 14-of-20 passes for 224 yards den three touchdowns insyd 31–28 overtime victory.<ref>{{Cite web |last=Bubel |first=Jennifer |date=November 13, 2022 |title=Dallas Cowboys vs. Green Bay Packers: Stats, Scores, Highlights |url=https://en.as.com/nfl/dallas-cowboys-vs-green-bay-packers-live-online-stats-scores-and-highlights-nfl-week-10-n/ |access-date=November 15, 2022 |website=AS USA |language=en-us}}</ref><ref>{{Cite web |date=November 13, 2022 |title=Rodgers rallies Packers past McCarthy's Cowboys 31–28 in OT |url=https://www.espn.com/nfl/recap/_/gameId/401437131 |access-date=November 15, 2022 |website=[[ESPN.com]] |language=en-us |agency=Associated Press}}</ref> Following a Week 11 loss to de Titans, Rodgers confirm na he dey play plus a broken thumb on ein throwing hand he suffer insyd Week 5.<ref>{{Cite web |last=Alper |first=Josh |date=November 23, 2022 |title=Aaron Rodgers says he's been playing with a broken thumb |url=https://profootballtalk.nbcsports.com/2022/11/23/aaron-rodgers-says-hes-been-playing-with-a-broken-thumb/ |access-date=December 2, 2022 |website=ProFootballTalk |language=en-US}}</ref><ref>{{Cite web |last=Thompson |first=Scott |date=November 23, 2022 |title=Packers' Aaron Rodgers admits playing through broken thumb since Week 5 |url=https://www.foxnews.com/sports/packers-aaron-rodgers-admits-playing-through-broken-thumb-since-week-5 |access-date=November 24, 2022 |publisher=Fox News}}</ref> A Week 12 loss to de Eagles lef de Packers plus a 4–8 record, buh na de team rally off four consecutive wins to get to 8–8 before de regular season finale.<ref>{{Cite web |title=Green Bay Packers 2022 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2022/gamelog/ |access-date=January 20, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> De Packers fini plus an 8–9 record wey he miss de postseason following a Week 18 loss to de Detroit Lions insyd a win-and-in scenario for Green Bay.<ref>{{Cite web |title=2022 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2022/index.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |date=January 9, 2023 |title=How the Lions beat the Packers: Detroit eliminates rival Green Bay from playoff contention, Seahawks clinch final spot |url=https://www.nytimes.com/athletic/live-blogs/lions-packers-playoff-picture-seeding/Vj6r382oO6N1/ |access-date=January 20, 2023 |website=The Athletic |language=en}}</ref> After de game, Rodgers put ein arm around long-time teammate Cobb, wey he look solemnly around Lambeau Field before de two walked down de tunnel togeda. Sam suspected say dis indicate say Rodgers play ein last game give de Packers.<ref>{{Cite web |last=McKenna |first=Henry |date=January 9, 2023 |title=Has Packers legend Aaron Rodgers walked off Lambeau Field for the last time? |url=https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |url-status=live |archive-url=https://web.archive.org/web/20230109203158/https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |archive-date=January 9, 2023 |access-date=April 5, 2026 |website=[[Fox Sports]] |publisher=[[Fox Corporation]]}}</ref>
Rodgers fini de 2022 season plus 3,695 passing yards, 26 touchdowns, den 12 interceptions, wich mark de most for Rodgers insyd a single season since 2008.<ref>{{Cite web |title=Aaron Rodgers 2022 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2022/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |last=Kruse |first=Zach |date=January 9, 2023 |title=Aaron Rodgers throws interception on final pass of disappointing 2022 season |url=https://news.yahoo.com/aaron-rodgers-throws-interception-final-144926791.html |access-date=January 19, 2023 |publisher=Yahoo! News |language=en-US}}</ref> Na dem rank am 51st by ein fellow players on de ''NFL Top 100'' Players of 2023.<ref>{{Cite web |title=2023 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2023-nfl-top-100.htm |access-date=January 20, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
=== New York Jets ===
==== 2023: Achilles injury ====
[[File:Rodgers_vs_Bills_2.jpg|right|thumb|Rodgers (white, #8) dey take a snap against de Bills, shortly before ein injury.]]
On April 26, 2023, Rodgers be traded to de Jets, along plus de Packers dema first den fifth-round selections insyd de 2023 NFL draft, in exchange for de Jets dema first, second (via Cleveland) den sixth-round selections insyd de 2023 draft den a conditional second-round selection (wich na go convert to a first if Rodgers play 65% of de offensive snaps insyd 2023, buh na e it no happen) insyd de 2024 NFL draft.<ref>{{Cite web |last=Allen |first=Eric |date=April 26, 2023 |title=OFFICIAL Jets Acquire QB Aaron Rodgers From Green Bay Packers |url=https://www.newyorkjets.com/news/jets-acquire-qb-aaron-rodgers-from-green-bay-packers |access-date=July 28, 2023 |website=NewYorkJets.com}}</ref> De move echo de career path of ein predecessor Brett Favre, wey similarly spend over fifteen years as quarterback of de Packers before he be traded to de Jets.<ref>{{Cite web |last=Kerr |first=Jeff |date=April 24, 2023 |title=Aaron Rodgers traded to Jets: Ex-Packers QB taking eerily similar path as Brett Favre in journey to New York |url=https://www.cbssports.com/nfl/news/aaron-rodgers-traded-to-jets-ex-packers-qb-taking-eerily-similar-path-as-brett-favre-in-journey-to-new-york/ |access-date=May 1, 2023 |website=CBS Sports}}</ref> Although [[Joe Namath]] grant Rodgers permission to wear ein retired No. 12 jersey, Rodgers announce say he go return to wearing de No. 8 jersey, wich na he wear thru out ein college career plus de California Golden Bears.<ref>{{Cite web |last=Riccette |first=Billy |date=April 26, 2023 |title=Aaron Rodgers on number change: 'To me, No. 12 is Broadway Joe' |url=https://sports.yahoo.com/aaron-rodgers-number-change-no-185505111.html |access-date=July 19, 2023 |website=Yahoo! Sports}}</ref> On July 26, 2023, Rodgers take a pay cut wey he agree to a rework contract plus de Jets.<ref>{{cite web |last1=Cimini |first1=Rich |date=July 26, 2023 |title=Aaron Rodgers signs reworked contract with Jets |url=https://www.espn.com/nfl/story/_/id/38075863/aaron-rodgers-agrees-reworked-contract-jets |access-date=July 26, 2023 |website=[[ESPN.com]]}}</ref>
Making ein Jets debut insyd Week 1 on ''Monday Night Football'' against de Bills at MetLife Stadium, Rodgers injure ein left ankle on just ein fourth offensive snap after he be sacked by Bills dema defensive end [[Leonard Floyd]]. Na dem help Rodgers off de field wey dem later cart am to de locker room for further evaluation.<ref>{{Cite web |last=Cimini |first=Rich |date=September 12, 2023 |title=Jets fear QB Aaron Rodgers suffered serious Achilles injury |url=https://www.espn.com/nfl/story/_/id/38381823/qb-aaron-rodgers-injures-ankle-opening-drive-new-york-jets-debut |access-date=September 12, 2023 |website=[[ESPN.com]] |language=en}}</ref> Rodgers ein backup [[Zach Wilson]] go on to lead de Jets to a 22–16 win insyd overtime.<ref>{{Cite web |last=Kownack |first=Bobby |date=September 11, 2023 |title=Jets QB Aaron Rodgers exits Monday's overtime win against Bills on first drive; ankle X-rays negative |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-ankle-questionable-to-return-to-monday-s-game-against-bill |access-date=September 12, 2023 |website=NFL.com |language=en-US}}</ref> De next day, na dem diagnose Rodgers plus an Achilles tendon rupture wey na dem later place am on injured reserve.<ref>{{Cite web |last=Dajani |first=Jordan |date=September 12, 2023 |title=Aaron Rodgers injury update: MRI reveals Jets QB suffered a complete tear of Achilles tendon |url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-update-mri-reveals-jets-qb-suffered-a-complete-tear-of-achilles-tendon/ |access-date=September 12, 2023 |website=CBS Sports |language=en}}</ref><ref>{{Cite web |last=Sullivan |first=Phil |date=September 12, 2023 |title=Jets Place Aaron Rodgers on Injured Reserve; Saleh Commits To Zach Wilson |url=https://www.jetnation.com/2023/09/13/jets-place-aaron-rodgers-on-injured-reserve-saleh-commits-to-zach-wilson/ |access-date=September 14, 2023 |website=JetNation.com}}</ref> Rodgers undergo surgery on September 13, plus Dr. [[Neal ElAttrache]] placing an internal brace insyd ein left Achilles plus de goal of a mid-January return at de earliest.<ref>{{Cite web |last1=Rapoport |first1=Ian |author-link1=Ian Rapoport |last2=Pelissero |first2=Tom |author-link2=Tom Pelissero |date=September 16, 2023 |title=Jets QB Aaron Rodgers aims for potential playoff return after innovative surgery on torn Achilles |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-aims-for-potential-playoff-return-after-innovative-surgery |access-date=September 17, 2023 |website=NFL.com}}</ref> On November 29, de New York Jets open de 21-day practice window for Rodgers. Limited insyd practice, na Rodgers be cleared for functional activity buh no contact.<ref>{{Cite web |last=Patra |first=Kevin |date=November 29, 2023 |title=Jets opening QB Aaron Rodgers' 21-day practice window |url=https://www.nfl.com/news/jets-opening-qb-aaron-rodgers-21-day-practice-window |access-date=November 30, 2023 |website=NFL.com |language=en-US}}</ref> He be activated off injured reserve on December 20, buh de Jets announce he no go san play dis season after dema Week 15 loss to de Dolphins dem mathematically eliminate dem from playoff contention.<ref>{{Cite web |last=Shook |first=Nick |date=December 20, 2023 |title=Jets to activate Aaron Rodgers off IR to allow QB to continue to practice with team |url=https://www.nfl.com/news/jets-to-activate-aaron-rodgers-off-ir-to-allow-qb-to-continue-to-practice-with-t |access-date=December 20, 2023 |website=NFL.com}}</ref><ref>{{cite web |last=Reyes |first=Lorenzo |date=December 20, 2023 |title=Aaron Rodgers' season is over, so why are the Jets activating him? |url=https://www.usatoday.com/story/sports/nfl/jets/2023/12/20/aaron-rodgers-comeback-jets-shut-down-achilles-tear/71825680007/ |access-date=July 24, 2024 |website=USA TODAY}}</ref> Despite missing most of de season, he be ranked 92nd by ein fellow players on de NFL Top 100 Players of 2024.<ref>{{cite web |last=Hetherington |first=Krissy |date=July 23, 2024 |title=Top 100 Players of 2024, Nos. 100–91: Aaron Rodgers falls to lowest ranking in his career |url=https://www.nfl.com/news/top-100-players-of-2024-nos-100-91-aaron-rodgers-trevor-lawrence |access-date=July 6, 2025 |website=NFL.com}}</ref>
==== 2024 ====
[[File:Aaron_Rodgers_Jets_vs_Titans_SEPT2024.png|thumb|Rodgers dey play against de Tennessee Titans at Nissan Stadium insyd 2024]]
After playing just four offensive snaps insyd ein first season plus de Jets secof an Achilles injury, Rodgers make ein return on ''Monday Night Football'' insyd Week 1 to kick off de 2024 campaign. Insyd ein highly anticipated return, Rodgers plete 13 of 21 passes for 167 yards, one touchdown den one interception insyd a 32–19 loss to de defending NFC champion San Francisco 49ers.<ref>{{Cite web |last=Patra |first=Kevin |date=September 9, 2024 |title=Aaron Rodgers on Jets' loss to 49ers: 'I can play better' |url=https://www.nfl.com/news/aaron-rodgers-on-jets-loss-to-49ers-i-can-play-better |access-date=September 10, 2024 |website=[[NFL.com]] |language=en}}</ref> Insyd de Jets dema home opener against de New England Patriots, Rodgers plete 27 of 35 passes for 281 yards den two touchdowns as de Jets cruise to a 24–3 victory.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=September 19, 2024 |title='Thursday Night Football' highlights: Aaron Rodgers, Jets dominate Patriots |url=https://www.nbcnews.com/news/sports/live-blog/patriots-vs-jets-live-updates-jacoby-brissett-takes-aaron-rodgers-new-rcna171577 |access-date=September 22, 2024 |website=NBC News}}</ref> Insyd Week 5 insyd London, Rodgers cam be de ninth quarterback insyd NFL history to reach 60,000 passing yards buh he tie ein career-high plus three interceptions, wey dey include a game-sealing pick plus under a minute left as de Jets loose 23–17 to de Vikings.<ref>{{Cite web |last=Cimini |first=Rich |date=October 6, 2024 |title=Aaron Rodgers 9th QB to pass for 60K yards, but 3 INTs doom Jets |url=https://www.espn.com/nfl/story/_/id/41642251/jets-aaron-rodgers-becomes-9th-qb-pass-60000-yards |access-date=October 6, 2024 |website=ESPN.com}}</ref> Jets head coach [[Robert Saleh]] unexpectedly be fired after de London loss, plus sam analysts dey perceive say na he no get along plus Rodgers.<ref>{{Cite web |last1=Li |first1=David K. |last2=Abdelkader |first2=Rima |date=October 8, 2024 |title=New York Jets fire coach Robert Saleh after 2–3 start and apparent tension with Aaron Rodgers |url=https://www.nbcnews.com/sports/nfl/jets-robert-saleh-fired-rcna174473 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref> Wen dem biz am about am on ''The Pat McAfee Show'', de quarterback firmly deny accusations say he get a role insyd Saleh ein termination.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=October 9, 2024 |title=Aaron Rodgers on accusations he wanted Jets coach Robert Saleh fired: 'Patently false' |url=https://www.nbcnews.com/sports/nfl/aaron-rodgers-robert-saleh-fired-rcna174701 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref>
Insyd Week 6, de Jets dema first game after Saleh ein termination, Rodgers throw for 294 yards den two touchdowns, wey dey include a 52-yard Hail Mary pass to [[Allen Lazard]] to close out de first half, ein fourth career such pass completion.<ref>{{Cite news|last=Waszak Jr.|first=Dennis|date=October 14, 2024|title=Jets' Aaron Rodgers throws a 52-yard Hail Mary to Allen Lazard to end the first half vs. Bills|url=https://apnews.com/article/jets-rodgers-hail-mary-lazard-49f7dbe5569749c60e9878cc7ea5d606|access-date=October 20, 2024|work=AP News}}</ref> However, anoda interception on de Jets dema final drive doomed dem as dem loose 23–20 to de Buffalo Bills.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=After 'weird' week, Rodgers and Jets can't overcome mistakes and missed chances in loss to Bills|url=https://apnews.com/article/jets-bills-rodgers-ulbrich-0a14afca36a55c2cbb0f9aa35c3a7855|access-date=October 15, 2024|work=AP News|date=October 14, 2024}}</ref> Following de loss, se Jets trade for [[Davante Adams]], plus whom Rodgers previously combine for over 600 receptions den 68 touchdowns during dema eight seasons togeda insyd Green Bay.<ref>{{Cite news|last1=Cimini|first1=Rich|last2=Fowler|first2=Jeremy|last3=Walder|first3=Seth|last4=Reid|first4=Jordan|last5=Gutierrez|first5=Paul|last6=Karabell|first6=Eric|date=October 15, 2024|title=How Davante Adams affects the Jets, Aaron Rodgers' playoff hopes|url=https://www.espn.com/nfl/story/_/id/41809450/new-york-jets-future-davante-adams-trade-las-vegas-raiders|access-date=October 15, 2024|work=ESPN}}</ref> However, de Jets continue to struggle, as Rodgers throw two interceptions wey he lead de offense to zero points insyd de second half of dema Week 7 matchup against de Steelers, losing dema fourth consecutive game.<ref>{{cite news|last=Cimini|first=Rich|title=Aaron Rodgers, Davante Adams reunion fails to spark Jets|url=https://www.espn.com/nfl/story/_/id/41917779/aaron-rodgers-davante-adams-reunion-fails-spark-jets-drop-4th-straight-vs-steelers|access-date=October 21, 2024|work=ESPN|date=October 21, 2024}}</ref> After a loss to de Patriots, Rodgers help de Jets snap dema five-game losing streak insyd Week 9 against de Houston Texans, throwing for 179 yards den three touchdowns insyd de second half after he be shutout insyd de first half as de Jets win 21–13.<ref>{{cite news|last=Fried|first=Justin|title=Aaron Rodgers saves NY Jets' season with vintage performance amidst fan revolt|url=https://thejetpress.com/aaron-rodgers-saves-ny-jets-season-vintage-performance-fan-revolt-01jbjvhkx6k7|access-date=October 31, 2024|work=The Jet Press|date=October 31, 2024}}</ref>
Insyd Week 11 against de Colts, Rodgers throw two touchdowns wey he lead de Jets to a season-high insyd points, buh na dem fall short insyd a 28–27 loss, dropping to 3–7.<ref>{{Cite web |last=Miller |first=Colin |date=November 19, 2024 |title=Jets' Aaron Rodgers Not a Fan of Reporter's 'Buzzword' After Another Loss |url=https://athlonsports.com/nfl/new-york-jets-aaron-rodgers-familiar-response-loss-indianapolis-colts-recap-shock-buzz-word |access-date=November 26, 2024 |website=Athlon Sports |language=en}}</ref> During dema bye week, na dem reveal say na Rodgers dey play thru hamstring, knee, den ankle injuries buh na he refuse to get scans done in fear of how severe dem go be.<ref>{{Cite web |last=McCarriston |first=Shanna |date=November 24, 2024 |title=Jets' Aaron Rodgers played through multiple injuries this season, resisted getting scans, per report |url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-played-through-multiple-injuries-this-season-resisted-getting-scans-per-report/ |access-date=November 26, 2024 |website=CBSSports.com |language=en}}</ref> Despite dis, he remain de starter following de bye week.<ref>{{cite news|last=Cimini|first=Rich|title=Jeff Ulbrich says Aaron Rodgers to remain Jets' starting QB|url=https://www.espn.com/nfl/story/_/id/42738131/jeff-ulbrich-says-aaron-rodgers-remain-jets-starting-qb|access-date=December 9, 2024|work=ESPN|date=December 2, 2024}}</ref> Entering Week 14, Rodgers hold an NFL-record 34-game drought widout a 300-yard passing performance, wich he break on December 8 against de Dolphins.<ref>{{cite news|last=Benjamin|first=Cody|title=Jets' Aaron Rodgers halts historic drought of 300-yard passing games in Week 14 loss to Dolphins|url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-halts-historic-drought-of-300-yard-passing-games-in-week-14-loss-to-dolphins/|access-date=December 9, 2024|work=CBS Sports|date=December 8, 2024}}</ref> Despite recording ein first 300-yard game insyd three years, de Jets fall 32–26 insyd overtime, eliminating dem from playoff contention.<ref>{{cite news|last=Cimini|first=Rich|title=Jets collapse again, extend postseason drought to 14 seasons|url=https://www.espn.com/nfl/story/_/id/42862200/jets-collapse-again-extend-postseason-drought-14-seasons|access-date=December 9, 2024|work=ESPN|date=December 8, 2024}}</ref> On January 5, 2025, Rodgers plete ein 500th touchdown pass to [[Tyler Conklin]] at MetLife Stadium against de Dolphins, becoming de fifth quarterback insyd NFL history plus 500 touchdown passes.<ref>{{cite news|last=Cimini|first=Rich|title=Jets QB Aaron Rodgers joins prestigious 500 touchdown club|url=https://www.espn.com/nfl/story/_/id/43300286/jets-qb-aaron-rodgers-joins-prestigious-500-touchdown-club|access-date=January 5, 2025|work=ESPN|date=January 5, 2025}}</ref> He fini de final game of de season plus 274 yards, a season-high four touchdowns, den an interception as de Jets win 32–20, finishing plus a record of 5–12.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=Rodgers throws a season-high 4 touchdown passes in possible final game as Jets top Dolphins 32–20|url=https://apnews.com/article/dolphins-jets-score-rodgers-8013b4de0ea591a84d721f5c4dd17111|access-date=January 5, 2025|work=Associated Press|date=January 5, 2025}}</ref> He fini de 2024 season plus 3,897 yards, 28 touchdowns, den 11 interceptions.<ref>{{Cite web |title=Aaron Rodgers 2024 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2024/ |access-date=January 15, 2025 |website=[[Pro Football Reference]] |language=en}}</ref>
On February 13, 2025, na de Jets announce dema intention to part ways plus Rodgers after two seasons.<ref>{{Cite web |last=Allen |first=Eric |date=February 13, 2025 |title=Jets to move on from Aaron Rodgers |url=https://www.newyorkjets.com/news/jets-moving-on-from-aaron-rodgers |access-date=February 13, 2025 |website=NewYorkJets.com |language=en-US}}</ref> Na Rodgers be released as a post-June 1 designation, allowing de Jets to split ein salary cap charges ($49 million) over two years. De Jets therefore keep am on de roster til March 12, de start of de 2025 NFL year, wen na dem officially released am.<ref>{{cite web |last=Cimini |first=Rich |date=February 13, 2025 |title=Jets announce split with Aaron Rodgers, wish him success |url=https://www.espn.com/nfl/story/_/id/43826969/jets-announce-split-aaron-rodgers-wish-success |accessdate=February 25, 2025}}</ref>
=== Pittsburgh Steelers ===
[[File:McCormickRodgersFrazier.jpg|thumb|Rodgers (middle) at Steelers training camp insyd 2025]]
==== 2025 ====
On June 6, 2025, de Pittsburgh Steelers agree to terms plus Rodgers on a one-year deal.<ref>{{Cite web |last=Varley |first=Teresa |date=June 5, 2025 |title=Steelers agree to terms with Rodgers |url=https://www.steelers.com/news/steelers-agree-to-terms-with-rodgers |access-date=June 6, 2025 |website=Steelers.com |language=en-US}}</ref> De following day, he officially sign ein one-year, $13.65 million contract, wich dey include $10 million guaranteed wey fi be worth up to $19.5 million plus incentives.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Sources: QB Rodgers with Steelers, signs one-year, $13.65M deal|url=https://www.espn.com/nfl/story/_/id/45470407/sources-qb-rodgers-steelers-signs-one-year-1365m-deal|access-date=June 7, 2025|work=ESPN|date=June 7, 2025}}</ref> De team subsequently announce say Rodgers go continue to wear ein number 8 from Cal den de Jets, since ein number 12 plus de Packers unofficially be retired for [[Terry Bradshaw]]; neither de Steelers nor Bradshaw sign off on allowing Rodgers to wear number 12.<ref>{{cite web |last1=Goldstein |first1=Jeremy |date=June 7, 2025 |title=Aaron Rodgers suffers early Steelers setback thanks to Terry Bradshaw |url=https://www.themirror.com/sport/american-football/aaron-rodgers-terry-bradshaw-steelers-1194927 |website=[[Daily Mirror]]}}</ref>
Na Rodgers ein months-long courtship den subsequent signing be met plus mixed to negative reaction among Steeler fans as well as ex-Steelers Bradshaw den [[Ryan Clark (American football)|Ryan Clark]] secof ein polarizing attitude,<ref>{{cite web |last=Sayer |first=Ricky |date=June 5, 2025 |title=Aaron Rodgers signing brings mixed reactions from Steelers fans |url=https://www.cbsnews.com/pittsburgh/news/steelers-fans-aaron-rodgers-signing-reaction/ |access-date=June 10, 2025 |work=CBS News}}</ref><ref>{{cite web |last=Gamba-Ellis |first=Thomas |date=June 6, 2025 |title=Aaron Rodgers signing is 'worst-case scenario' for Steelers: Ryan Clark |url=https://nypost.com/2025/06/06/sports/aaron-rodgers-signing-is-worst-case-scenario-for-the-steelers-ryan-clark/ |access-date=June 10, 2025 |work=New York Post}}</ref><ref>{{cite web |last=Baca |first=Michael |date=May 28, 2025 |title=Steelers legend Terry Bradshaw calls Pittsburgh's interest in QB Aaron Rodgers 'a joke' |url=https://www.nfl.com/news/steelers-legend-terry-bradshaw-calls-pittsburgh-interest-aaron-rodgers-a-joke |access-date=September 25, 2025 |website=NFL.com}}</ref> wey sam fans feeling like he no fit Western Pennsylvania dema traditional blue collar base.<ref>{{cite web |last1=Cioppa |first1=Jordan |date=June 5, 2025 |title=Steelers fans react to Aaron Rodgers coming to Pittsburgh |url=https://www.wtae.com/article/steelers-fans-reaction-aaron-rodgers-pittsburgh-quarterback/64985539 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> Sam speculate say Rodgers fi be swayed to sign plus de Steelers by ein friendship plus former Indianapolis Colts punter den Pittsburgh-area native [[Pat McAfee]].<ref>{{cite web |last1=Ciampi |first1=Raquel |date=April 17, 2025 |title=Aaron Rodgers talks sneaking into Pittsburgh for first visit with Steelers on McAfee Show |url=https://www.wtae.com/article/steelers-aaron-rodgers-mcafee-show/64514048 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> On June 23, 2025, Rodgers flow McAfee on ein show say he go likely retire after de 2025 season.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Steelers' Aaron Rodgers 'pretty sure' this will be final season|url=https://www.espn.com/nfl/story/_/id/45575766/steelers-aaron-rodgers-pretty-sure-final-season|access-date=June 29, 2025|work=ESPN|date=June 29, 2025}}</ref>
On September 7, Rodgers make ein Steelers debut against ein former team, de New York Jets. During ein first outing plus Pittsburgh, he plete 22 of 30 pass attempts for 244 yards den four touchdowns while committing no turnovers. De game end plus a 34–32 Steelers victory.<ref>{{cite web |last=Maaddi |first=Rob |date=September 9, 2025 |title=Aaron Rodgers showed he has plenty left to help the Steelers |url=https://sports.yahoo.com/article/aaron-rodgers-showed-plenty-left-191014645.html |access-date=September 25, 2025 |website=Yahoo! Sports}}</ref> Later dat month, Rodgers surpasse [[Brett Favre]], ein former Packers teammate, insyd career touchdown passes wen he throw a scoring pass to [[D.K. Metcalf]] insyd a win over de New England Patriots. Dis move Rodgers into fourth place for most career touchdown passes (509), only behind [[Peyton Manning]], [[Drew Brees]] den [[Tom Brady]].<ref name="u989">{{cite web |last=Gordon |first=Grant |date=September 21, 2025 |title=Aaron Rodgers moves past former teammate Brett Favre with 509th career touchdown pass |url=https://www.nfl.com/news/aaron-rodgers-moves-past-brett-favre-509-career-touchdown-pass |access-date=October 14, 2025 |website=NFL.com}}</ref>
During de second quarter of de Steelers dema Week 11 victory over de Cincinnati Bengals, Rodgers suffer a small fracture insyd ein left wrist.<ref>{{cite news|last=DeArdo|first=Bryan|url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-steelers-qb-hand-injury/|title=Aaron Rodgers has small fracture in wrist, Steelers QB reportedly pushing to play this week|website=[[CBSSports.com]]|publisher=[[CBS Sports]]|date=November 17, 2025|access-date=November 30, 2025}}</ref> De injury prevent am from playing de following game against de Bears, wich [[Mason Rudolph (American football)|Mason Rudolph]] start insyd ein place.<ref>{{cite news|last=Cohen|first=Jay|url=https://www.kare11.com/article/syndication/associatedpress/steelers-qb-aaron-rodgers-misses-game-against-bears-because-of-a-broken-left-wrist/616-e94370ae-9cda-4db9-891f-56092ba44dd1|title=With Aaron Rodgers sidelined, Mason Rudolph and the Steelers fall short in Chicago|agency=[[Associated Press|AP]]|publisher=[[KARE (TV)]]|date=November 23, 2025|access-date=November 30, 2025}}</ref> Rodgers return for Week 13 insyd Buffalo.<ref>{{cite news|last=Guise|first=Michael|url=https://www.cbsnews.com/pittsburgh/news/is-aaron-rodgers-playing-steelers-bills-nfl-news/|title=Is Aaron Rodgers playing against the Bills? Steelers give update on starting quarterback.|publisher=[[CBS News]]|date=November 28, 2025|access-date=November 30, 2025}}</ref>
Rodgers lead de Steelers to an AFC North title den a playoff berth following a Week 18 win over de Baltimore Ravens.<ref>{{Cite web |last=Pryor |first=Brooke |date=January 5, 2026 |title=Steelers take AFC North as Ravens FG sails wide |url=https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-url=https://web.archive.org/web/20260105045214/https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-date=January 5, 2026 |access-date=January 5, 2026 |website=ESPN.com |language=en}}</ref> He fini de 2025 season throwing for 3,322 yards, 24 touchdowns, den seven interceptions, den rushing for a touchdown.<ref>{{Cite web |title=Aaron Rodgers 2025 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2025/ |access-date=January 8, 2026 |website=Pro-Football-Reference.com |language=en}}</ref>
Insyd de Steelers dema playoff loss to de Houston Texans, Rodgers play poorly, completing 17 passes out of 33 attempts for 146 yards, getting sacked 4 times for 36 yards, den throwing a pick-six.<ref>{{cite news|last1=Heyen|first1=Billy|title=Texans defense made Steelers' Aaron Rodgers play the worst playoff game by a QB in a dozen years|url=https://sports.yahoo.com/articles/texans-defense-made-steelers-aaron-131529479.html?guccounter=1|access-date=January 13, 2026|work=Yahoo Sports|date=January 13, 2026}}</ref> Rodgers sanso fumble on one of de sacks, wich dem return for a Texans touchdown.<ref>{{cite news|last1=Brinkerhoff|first1=Nick|title=Aaron Rodgers crushed on strip-sack, leads to critical Texans score|url=https://www.usatoday.com/story/sports/nfl/playoffs/2026/01/12/aaron-rodgers-strip-sack-crushed-texans-packers/88153423007/|access-date=January 13, 2026|work=USA Today|date=January 12, 2026}}</ref>
==== 2026 ====
[[File:RodgersandMcCarthy.jpg|thumb|Rodgers plus [[Mike McCarthy]] during training camp insyd 2026]]
On May 16, 2026, Rodgers return to de Steelers for ein 22nd season, signing a one-year deal worth up to $25 million.<ref>{{Cite web |last=Pryor |first=Brooke |date=May 16, 2026 |title=Sources: Aaron Rodgers to sign 1-year deal with Steelers |url=https://www.espn.com/nfl/story/_/id/48791130/aaron-rodgers-sign-1-year-deal-steelers |access-date=May 16, 2026 |website=ESPN}}</ref> De signing reunite am plus head coach Mike McCarthy.<ref>{{Cite web |last=Middlehurst-Schwartz |first=Michael |date=May 16, 2026 |title=Aaron Rodgers to re-sign with Steelers, reunite with coach Mike McCarthy |url=https://www.usatoday.com/story/sports/nfl/steelers/2026/05/16/aaron-rodgers-contract-pittsburgh-steelers-mike-mccarthy/88698339007/ |access-date=May 16, 2026 |website=USA Today}}</ref> Rodgers later announce say de 2026 season go be ein final season insyd de NFL.<ref>{{Cite web |last=Ulrich |first=Logan |date=2026-05-20 |title=Aaron Rodgers Says 2026 Will Be His Final Season |url=https://nfltraderumors.co/aaron-rodgers-says-2026-will-be-his-final-season/ |access-date=2026-05-20 |website=NFLTradeRumors.co |language=en-US}}</ref>
==Career statistics==
{| class="wikitable"
|-
! colspan="2"| Legend
|-
| style="background:#ff0; width:3em;"|
| AP [[NFL MVP]]
|-
| style="background:#f4c842; width:3em;"|
| [[Super Bowl Most Valuable Player Award|Super Bowl MVP]]
|-
| style="background:#afe6ba; width:3em;"|
| Won the [[Super Bowl]]
|-
| style="background:#e0cef2; width:3em;"|
| NFL record
|-
| style="background:#cfecec; width:3em;"|
| Led the league
|-
| style="width:3em;"|'''Bold'''
| Career best
|}
===NFL===
====Regular season====
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|Regular season}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="11"| Passing
! colspan="5"| Rushing
! colspan="2"| Sacked
! colspan="2"| Fumbles
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starting quarterback}} !! {{abbr|Cmp|Passes completed}} !! {{abbr|Att|Passes attempted}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Y/A|Yards per passing attempt}} !! {{abbr|Lng|Longest pass completion}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions thrown}} !! {{abbr|TD%|Passing touchdown percentage}} !! {{abbr|Int%|Interception thrown percentage}} !! {{abbr|Rtg|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Y/A|Yards per rushing attempt}} !! {{abbr|Lng|Longest rushing attempt}} !! {{abbr|TD|Rushing touchdowns}} !! {{abbr|Sck|Sacks}} !! {{abbr|SckY|Yards lost from sacks}} !! {{abbr|Fum|Fumbles}} !! {{abbr|Lost|Fumbles lost}}
|-
! [[2005 NFL season|2005]] !! [[2005 Green Bay Packers season|GB]]
| 3 || 0 || — || 9 || 16 || 56.3 || 65 || 4.1 || 16 || 0 || 1 || 0.0 || 6.3 || 39.8 || 2 || 7 || 3.5 || 8 || 0 || 3 || 28 || 2 || 2
|-
! [[2006 NFL season|2006]] !! [[2006 Green Bay Packers season|GB]]
| 2 || 0 || — || 6 || 15 || 40.0 || 46 || 3.1 || 16 || 0 || 0 || 0.0 || '''0.0'''|| 48.2 || 2 || 11 || 5.5 || 6 || 0 || 3 || 18 || 1 || 1
|-
! [[2007 NFL season|2007]] !! [[2007 Green Bay Packers season|GB]]
| 2 || 0 || — || 20 || 28 || 71.4 || 218 || 7.8 || 43 || 1 || 0 || 3.6 || '''0.0'''|| 106.0 || 7 || 29 || 4.1 || 13 || 0 || 3 || 24 || 0 || 0
|-
! [[2008 NFL season|2008]] !! [[2008 Green Bay Packers season|GB]]
| 16 || 16 || 6–10 || 341 || 536 || 63.6 || 4,038 || 7.5 || 71 || 28 || 13 || 5.2 || 2.4 || 93.8 || 56 || 207 || 3.7 || 21 || 4 || 34 || 231 || 10 || 3
|-
! [[2009 NFL season|2009]] !! [[2009 Green Bay Packers season|GB]]
| 16 || 16 || 11–5 || 350 || 541 || 64.7 || 4,434 || 8.2 || 83 || 30 || 7 || 5.5 || style="background:#cfecec;"| 1.3 || 103.2 || 58 || 316 || 5.4 || '''35''' || '''5''' || style="background:#cfecec;"| 50 || 306 || 10 || 4
|-
! [[2010 NFL season|2010]] !! style="background:#afe6ba;"|[[2010 Green Bay Packers season|GB]]
| 15 || 15 || 10–5 || 312 || 475 || 65.7 || 3,922 || 8.3 || 86 || 28 || 11 || 5.9 || 2.3 || 101.2 || 64 || 356 || 5.6 || 27 || 4 || 31 || 193 || 4 || 1
|-
! style="background:#ff0;"|[[2011 NFL season|2011]] !! [[2011 Green Bay Packers season|GB]]
| 15 || 15 || '''14–1'''|| 343 || 502 || 68.3 || '''4,643''' || style="background:#cfecec;"| '''9.2''' || '''93''' || 45 || 6 || style="background:#cfecec;"| 9.0 || 1.2 || style="background:#e0cef2;"| '''122.5''' || 60 || 257 || 4.3 || 25 || 3 || 36 || 219 || 4 || '''0'''
|-
! [[2012 NFL season|2012]] !! [[2012 Green Bay Packers season|GB]]
| 16 || 16 || 11–5 || 371 || 552 || 67.2 || 4,295 || 7.8 || 73 || 39 || 8 || style="background:#cfecec;"| 7.1 || 1.4 || style="background:#cfecec;"| 108.0 || 54 || 259 || 4.8 || 27 || 2 || style="background:#cfecec;"| 51 || 293 || 5 || 4
|-
! [[2013 NFL season|2013]] !! [[2013 Green Bay Packers season|GB]]
| 9 || 9 || 6–3 || 193 || 290 || 66.6 || 2,536 || 8.7 || 83 || 17 || 6 || 5.9 || 2.1 || 104.9 || 30 || 120 || 4.0 || 18 || 0 || 21 || '''117''' || 4 || '''0'''
|-
! style="background:#ff0;"|[[2014 NFL season|2014]] !! [[2014 Green Bay Packers season|GB]]
| 16 || 16 || 12–4 || 341 || 520 || 65.6 || 4,381 || 8.4 || 80 || 38 || 5 || 7.3 || style="background:#cfecec;"| 0.9 || 112.2 || 43 || 269 || '''6.3''' || 19 || 2 || 28 || 174 || 10 || 2
|-
! [[2015 NFL season|2015]] !! [[2015 Green Bay Packers season|GB]]
| 16 || 16 || 10–6 || 347 || 572 || 60.7 || 3,821 || 6.7 || 65 || 31 || 8 || 5.4 || 1.4 || 92.7 || 58 || 344 || 5.9 || 18 || 1 || 46 || 314 || 8 || 4
|-
! [[2016 NFL season|2016]] !! [[2016 Green Bay Packers season|GB]]
| 16 || 16 || 10–6 || '''401''' || '''610''' || 65.7 || 4,428 || 7.3 || 66 || style="background:#cfecec;"| 40 || 7 || 6.6 || 1.1 || 104.2 || '''67'''|| '''369'''|| 5.5 || 23 || 4 || 35 || 246 || 8 || 4
|-
! [[2017 NFL season|2017]] !! [[2017 Green Bay Packers season|GB]]
| 7 || 7 || 4–3 || 154 || 238 || 64.7 || 1,675 || 7.0 || 72 || 16 || 6 || 6.7 || 2.5 || 97.2 || 24 || 126 || 5.3 || 18 || 0 || 22 || 168 || '''1''' || 1
|-
! [[2018 NFL season|2018]] !! [[2018 Green Bay Packers season|GB]]
| 16 || 16 || 6–9–1 || 372 || 597 || 62.3 || 4,442 || 7.4 || 75 || 25 || '''2''' || 4.2 || style="background:#e0cef2;"| 0.3 || 97.6 || 43 || 269 || '''6.3''' || 23 || 2 || 49 || 353 || 6 || 3
|-
! [[2019 NFL season|2019]] !! [[2019 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 353 || 569 || 62.0 || 4,002 || 7.0 || 74 || 26 || 4 || 4.6 || style="background:#cfecec;"| 0.7 || 95.4 || 46 || 183 || 4.0 || 17 || 1 || 36 || 284 || 4 || 4
|-
! style="background:#ff0;"|[[2020 NFL season|2020]] !! [[2020 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 372 || 526 || style="background:#cfecec;"| '''70.7''' || 4,299 || 8.2 || 78 || style="background:#cfecec;"| '''48'''|| 5 || style="background:#cfecec;"| '''9.1''' || style="background:#cfecec;" | 0.9 || style="background:#cfecec;"| 121.5 || 38 || 149 || 3.9 || 14 || 3 || '''20''' || 182 || 4 || 2
|-
! style="background:#ff0;"|[[2021 NFL season|2021]] !! [[2021 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 366 || 531 || 68.9 || 4,115 || 7.7 || 75 || 37 || 4 || style="background:#cfecec;"| 7.0 || style="background:#cfecec;"| 0.8 || style="background:#cfecec;"| 111.9 || 33 || 101 || 3.1 || 18 || 3 || 30 || 188 || 3 || '''0'''
|-
! [[2022 NFL season|2022]] !! [[2022 Green Bay Packers season|GB]]
| 17 || 17 || 8–9 || 350 || 542 || 64.6 || 3,695 || 6.8 || 58 || 26 || 12 || 4.8 || 2.2 || 91.1 || 34 || 94 || 2.8 || 18 || 1 || 32 || 258 || 8 || 4
|-
! [[2023 NFL season|2023]] !! [[2023 New York Jets season|NYJ]]
| 1 || 1 || 1–0 || 0 || 1 || 0.0 || 0 || 0.0 || 0 || 0 || 0 || 0.0 || '''0.0'''|| 39.6 || 0 || 0 || — || 0 || 0 || 1 || 10 || 0 || 0
|-
! [[2024 NFL season|2024]] !! [[2024 New York Jets season|NYJ]]
| 17 || 17 || 5–12 || 368 || 584 || 63.0 || 3,897 || 6.7 || 71 || 28 || 11 || 4.8 || 1.9 || 90.5 || 22 || 107 || 4.9 || 18 || 0 || 40 || 302 || 5 || 2
|-
! [[2025 NFL season|2025]] !! [[2025 Pittsburgh Steelers season|PIT]]
| 16 || 16 || 10–6 || 327 || 498 || 65.7 || 3,322 || 6.7 || 80 || 24 || 7 || 4.8 || 1.4 || 94.8 || 21 || 61 || 2.9 || 20 || 1 || 29 || 180 || 4 || 1
|-
! colspan="2" | Career<ref>{{cite web | url=https://www.pro-football-reference.com/players/R/RodgAa00.htm | title=Aaron Rodgers Stats, Height, Weight, Position, Draft, College | website=[[Pro-Football-Reference.com]] }}</ref> !! 264 !! 257 !! {{nowrap|163–93–1}}!! 5,696 !! 8,743 !! 65.1 !! 66,274 !! 7.6 !! 93 !! 527 !! 123 !! 6.0 !! style="background:#e0cef2;"|1.4 !! style="background:#e0cef2;"|102.2 !! 762 !! 3,634 !! 4.8 !! 35 !! 36 !! style="background:#e0cef2; " | 600 !! 4,088 !! 101 !! 42
|}
====Postseason====
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|Postseason}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="11"| Passing
! colspan="5"| Rushing
! colspan="2"| Sacked
! colspan="2"| Fumbles
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starting quarterback}} !! {{abbr|Cmp|Passes completed}} !! {{abbr|Att|Passes attempted}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Y/A|Yards per passing attempt}} !! {{abbr|Lng|Longest pass completion}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions thrown}} !! {{abbr|TD%|Passing touchdown percentage}} !! {{abbr|Int%|Interception thrown percentage}} !! {{abbr|Rtg|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Y/A|Yards per rushing attempt}} !! {{abbr|Lng|Longest rushing attempt}} !! {{abbr|TD|Rushing touchdowns}} !! {{abbr|Sck|Sacks}} !! {{abbr|SckY|Yards lost from sacks}} !! {{abbr|Fum|Fumbles}} !! {{abbr|Lost|Fumbles lost}}
|-
! [[2007–08 NFL playoffs|2007]] !! [[2007 Green Bay Packers season|GB]]
| 1 || 0 || — || 0 || 0 || — || 0 || — || 0 || 0 || 0 || — || — || — || 0 || 0 || — || 0 || 0 || 0 || 0 || 0 || 0
|-
! [[2009–10 NFL playoffs|2009]] !! [[2009 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 28 || 42 || 66.7 || 423 || style="background:#cfecec;"|'''10.1''' || 44 || 4 || 1 || style="background:#cfecec;"|'''9.5''' || 2.4 || '''121.4''' || 3 || 13 || 4.3 || 13 || 1 || 5 || 19 || 1 || 1
|-
! style="background:#f4c842;"|[[2010–11 NFL playoffs|2010]] !! style="background:#afe6ba;"|[[2010 Green Bay Packers season|GB]]
| 4 || 4 || '''4–0''' || style="background:#cfecec;"|'''90''' || style="background:#cfecec;"|'''132''' || 68.2 || style="background:#cfecec;"|'''1,094''' || 8.3 || 38 || style="background:#cfecec;"|'''9''' || 2 || 6.8 || 1.5 || style="background:#cfecec;"|109.8 || '''14''' || 54 || 3.9 || 25 || '''2''' || 8 || 53 || 2 || 1
|-
! [[2011–12 NFL playoffs|2011]] !! [[2011 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 26 || 46 || 56.5 || 264 || 5.7 || 21 || 2 || 1 || 4.3 || 2.2 || 78.5 || 7 || '''66''' || style="background:#cfecec;"|'''9.4''' || 16 || 0 || 4 || 23 || 1 || 1
|-
! [[2012–13 NFL playoffs|2012]] !! [[2012 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 49 || 72 || 68.1 || 531 || 7.4 || 44 || 3 || 1 || 4.2 || 1.4 || 97.6 || 5 || 40 || 8.0 || 17 || 0 || 4 || 33 || 1 || '''0'''
|-
! [[2013–14 NFL playoffs|2013]] !! [[2013 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 17 || 26 || 65.4 || 177 || 6.8 || 26 || 1 || '''0''' || 3.8 || style="background:#cfecec;"|'''0.0''' || 97.8 || 2 || 11 || 5.5 || 9 || 0 || 4 || 20 || 1 || '''0'''
|-
! [[2014–15 NFL playoffs|2014]] !! [[2014 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 43 || 69 || 62.3 || 494 || 7.2 || 46 || 4 || 2 || 5.8 || 2.9 || 91.1 || 4 || 8 || 2.0 || 12 || 0 || 3 || 26 || 2 || 1
|-
! [[2015–16 NFL playoffs|2015]] !! [[2015 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 45 || 80 || 56.3 || 471 || 5.9 || 60 || style="background:#cfecec;"|4 || 1 || 5.0 || 1.3 || 84.9 || 3 || 20 || 6.7 || 19 || 0 || '''2''' || '''15''' || '''0''' || '''0'''
|-
! [[2016–17 NFL playoffs|2016]] !! [[2016 Green Bay Packers season|GB]]
| 3 || 3 || 2–1 || 80 || 128 || 62.5 || 1,004 || 7.8 || 42 || style="background:#cfecec;"|'''9''' || 2 || 7.0 || 1.6 || 103.8 || 8 || 62 || 7.8 || '''28''' || 0 || style="background:#cfecec;"|10 || style="background:#cfecec;"|79 || '''0''' || '''0'''
|-
! [[2019–20 NFL playoffs|2019]] !! [[2019 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 47 || 66 || '''71.2''' || 569 || 8.6 || style="background:#cfecec;"|65 || 4 || 2 || 6.1 || 3.0 || 104.9 || 6 || 14 || 2.3 || 14 || 0 || 5 || 38 || 3 || 1
|-
! [[2020–21 NFL playoffs|2020]] !! [[2020 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 56 || 84 || 66.7 || 642 || 7.6 || 58 || 5 || 1 || 6.0 || 1.2 || style="background:#cfecec;"|104.4 || 4 || −3 || −0.8 || 1 || 1 || 5 || 32 || '''0''' || '''0'''
|-
! [[2021–22 NFL playoffs|2021]] !! [[2021 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 20 || 29 || 69.0 || 225 || 7.8 || style="background:#cfecec;"|'''75''' || 0 || '''0''' || 0.0 || style="background:#cfecec;"|'''0.0''' || 91.9 || 0 || 0 || — || 0 || 0 || 5 || 29 || 1 || '''0'''
|-
! [[2025–26 NFL playoffs|2025]] !! [[2025 Pittsburgh Steelers season|PIT]]
| 1 || 1 || 0–1 || 17 || 33 || 51.5 || 146 || 4.4 || 25 || 0 || 1 || 0.0 || 3.0 || 50.8 || 0 || 0 || — || 0 || 0 || 4 || 36 || 2 || 1
|-
! colspan="2"| Career<ref>{{cite web | url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/post/ | title=Aaron Rodgers Career Game Log | website=[[Pro-Football-Reference.com]] }}</ref> !! 23 !! 22 !! 11–11 !! 518 !! 807 !! 64.2 !! 6,040 !! 7.5 !! 75 !! 45 !! 14 !! 5.6 !! 1.7 !! 98.1 !! 56 !! 285 !! 5.1 !! 28 !! 4 !! 59 !! 403 !! 14 !! 6
|}
===College===
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|College statistics}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="8"| Passing
! colspan="4"| Rushing
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starter}} !! {{abbr|Cmp|Pass completions}} !! {{abbr|Att|Pass attempts}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Avg|Average yards per pass attempts}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions}} !! {{abbr|Rate|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Avg|Average yards per rush}} !! {{abbr|TD|Rushing touchdowns}}
|-
! 2002 !! [[Butte College|Butte]]
| 11 || 11 || '''10–1''' || 164 || 265 || 61.9 || 2,408 || 9.1 || 28 || 4 || 170.1 || 101 || 294 || 2.9 || 7
|-
! [[2003 NCAA Division I-A football season|2003]] !! [[2003 California Golden Bears football team|California]]
| 13 || 10 || 7–3 || '''215'''|| '''349'''|| 61.6 || '''2,903'''|| '''8.3'''|| 19 || 5 || 146.6 || '''86'''|| '''210'''|| '''2.4'''|| '''5'''
|-
! [[2004 NCAA Division I-A football season|2004]] !! [[2004 California Golden Bears football team|California]]
| 12 || 12 || 10–2 || 209 || 316 || '''66.1'''|| 2,566 || 8.1 || '''24'''|| '''8'''|| '''154.4'''|| 74 || 126 || 1.7 || 3
|-
! colspan="2"| FBS career<ref>{{cite web | url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1.html | title=Aaron Rodgers College Stats, School, Draft, Gamelog, Splits }}</ref> !! 25 !! 22 !! 17–5 !! 424 !! 665 !! 63.8 !! 5,469 !! 8.2 !! 43 || 13 !! 150.3 !! 160 !! 336 !! 2.1 !! 8
|}
==Career highlights==
===Awards den honors===
;NFL
* [[Super Bowl XLV]] champion
* [[Super Bowl MVP]] (XLV)
* 4× [[NFL Most Valuable Player]] (2011, 2014, 2020, 2021)
* 4× First-team [[All-Pro]] ([[2011 All-Pro Team|2011]], [[2014 All-Pro Team|2014]], [[2020 All-Pro Team|2020]], [[2021 All-Pro Team|2021]])
* Second-team All-Pro ([[2012 All-Pro Team|2012]])
* 10× [[Pro Bowl]] ([[2010 Pro Bowl|2009]], [[2012 Pro Bowl|2011]], [[2013 Pro Bowl|2012]], [[2015 Pro Bowl|2014]]–[[2017 Pro Bowl|2016]], [[2019 Pro Bowl|2018]]–[[2022 Pro Bowl|2021]])<ref>{{Cite web |title=NFL Pro Bowl Selections Career Leaders |url=https://www.pro-football-reference.com/leaders/pro_bowls_career.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
* 4× [[List of National Football League season passer rating leaders|NFL passer rating leader]] (2011, 2012, 2020, 2021)<ref>{{cite web |title=NFL Passer Rating Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_rating_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 2× [[List of National Football League season passing touchdowns leaders|NFL passing touchdowns leader]] (2016, 2020)<ref>{{cite web |title=NFL Passing Touchdowns Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* [[List of National Football League annual pass completion percentage leaders|NFL completion percentage leader]] (2020)<ref>{{cite web |title=NFL Pass Completion % Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_cmp_perc_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 3× [[Total quarterback rating]] leader: [[2011 NFL season|2011]], [[2020 NFL season|2020]], [[2021 NFL season|2021]]
* [[NFL 2010s All-Decade Team]]<ref>{{cite web |last=Battista |first=Judy |author-link=Judy Battista |date=April 6, 2020 |title=NFL 2010s All-Decade Team: Tom Brady, Aaron Donald headliners |url=https://www.nfl.com/news/nfl-2010s-all-decade-team-tom-brady-aaron-donald-headliners-0ap3000001108338 |access-date=June 23, 2023 |website=NFL.com}}</ref>
* [[Bart Starr Award]] (2014)<ref>{{Cite web |date=January 15, 2014 |title=Aaron Rodgers wins 2014 Bart Starr Award |url=https://www.packers.com/news/aaron-rodgers-wins-2014-bart-starr-award-12441847 |access-date=June 23, 2023 |website=Packers.com}}</ref>
* [[Bert Bell Award]] (2011)<ref>{{cite web |title=Bert Bell Award (Player of the Year) Winners |url=https://www.pro-football-reference.com/awards/bert-bell-award.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 4× [[PFWA NFL Most Valuable Player Award|PFWA NFL Most Valuable Player]] (2011, 2014, 2020, 2021)<ref>{{cite web | last=Spofford | first=Mike | title=Packers QB Aaron Rodgers named PFWA Most Valuable Player for 2021 | website=Packers.com| date=January 26, 2022 | url=https://www.packers.com/news/packers-qb-aaron-rodgers-named-pfwa-most-valuable-player-for-2021 | access-date=December 19, 2025}}</ref>
* [[PFWA NFL Offensive Player of the Year Award|PFWA NFL Offensive Player of the Year]]: (2011)<ref>{{Cite web |title=Offensive Player of the Year|url=https://www.profootballwriters.org/on-field-awards/pfwa-nfl-offensive-player-of-the-year/ |access-date=January 19, 2023 |website=PFWA |language=en-US}}</ref>
* [[PFWA Good Guy Award]] (2011)
* [[NFL Moment of the Year]] ([[2015 NFL season|2015]])
* 2× [[Sporting News]] Offensive Player of the Year (2011, 2014)<ref>{{Cite web |last=Treacy |first=Dan |date=February 1, 2023 |title=History of Sporting News' NFL awards: Full list of past winners, voting results from 1954–2023 |url=https://www.sportingnews.com/us/nfl/news/nfl-awards-history-winners-results/qdey5fuegm3zgbeuqlxgoymv |access-date=January 20, 2024 |website=Sporting News}}</ref>
* 2× GMC Never Say Never Award (2013, 2014)<ref name="Never">{{Cite web |last=Demovsky |first=Rob |date=February 2, 2014 |title=Rodgers-to-Cobb TD recognized |url=https://www.espn.com/blog/green-bay-packers/post/_/id/7150/rodgers-to-cobb-td-recognized |url-status=live |archive-url=https://web.archive.org/web/20250701183928/https://www.espn.com/blog/green-bay-packers/post/_/id/7150/rodgers-to-cobb-td-recognized |archive-date=July 1, 2025 |access-date=July 1, 2025 |website=ESPN.com}}</ref>
* 3× [[Kansas City Committee of 101 awards#Offensive Player of the Year Awards|NFC Offensive Player of the Year]] (2011, 2014, 2020)<ref name=KC101off/>
* 3× [[FedEx Air & Ground NFL Players of the Week#FedEx Air & Ground Players of the Year winners|FedEx Air NFL Player of the Year]] (2010, 2014, 2020)<ref>{{Cite web |last=Kasprzak |first=M. J. |date=February 2, 2011 |title=Aaron Rodgers Earns 2010 FedEx Air Player of the Year |url=https://bleacherreport.com/articles/594763-aaron-rodgers-earns-2010-fedex-air-player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20190123010833/https://bleacherreport.com/articles/594763-aaron-rodgers-earns-2010-fedex-air-player-of-the-year |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Bleacher Report}}</ref><ref>{{Cite web |date=February 1, 2015 |title=Aaron Rodgers and Le'Veon Bell Named 2014 FedEx Air & Ground NFL Players of the Year at "4th Annual NFL Honors" |url=https://www.marketwatch.com/press-release/aaron-rodgers-and-leveon-bell-named-2014-fedex-air-ground-nfl-players-of-the-year-at-4th-annual-nfl-honors-2015-02-01 |url-status=dead |archive-url=https://web.archive.org/web/20190123071334/https://www.marketwatch.com/press-release/aaron-rodgers-and-leveon-bell-named-2014-fedex-air-ground-nfl-players-of-the-year-at-4th-annual-nfl-honors-2015-02-01 |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=MarketWatch}}</ref>
* 14× ''[[NFL Top 100]]'' selections (most all-time)
;NCAA
* [[Insight Bowl]] Offensive MVP ([[2003 Insight Bowl|2003]])<ref name="Green Bay Bio" />
* First-team All-[[Pac-10]] (2004)<ref name="calbears1" />
* California Golden Bears Co-Offensive MVP (2004)<ref>{{Cite web |date=December 13, 2004 |title=Arrington, Rodgers and Riddle Named Team MVPs |url=http://www.calbears.com/sports/m-footbl/spec-rel/121304aab.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121453/http://www.calbears.com/sports/m-footbl/spec-rel/121304aab.html |archive-date=June 9, 2012 |website=California Golden Bears Athletics}}</ref>
;NBA
* 2021 [[NBA Championship]] (as minority owner)<ref name="AR NBA1">{{Cite web |last=Baer |first=Jack |date=July 21, 2021 |title=NBA Finals: Aaron Rodgers, Bucks co-owner, set to get another ring amid Packers trade rumors |url=https://sports.yahoo.com/aaron-rodgers-bucks-co-owner-another-ring-packers-trade-rumors-044134828.html |url-status=live |archive-url=https://web.archive.org/web/20210723073539/https://sports.yahoo.com/aaron-rodgers-bucks-co-owner-another-ring-packers-trade-rumors-044134828.html |archive-date=July 23, 2021 |access-date=July 29, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
;Media
* 2011 [[Associated Press Male Athlete of the Year]]
* 2011 [[The Sporting News#Athlete of the Year|''The Sporting News'' Athlete of the Year]]<ref>{{cite web | last=Hille | first=Bob | title=History of The Sporting News' Athlete of the Year awards: Full list of past winners, 1968-2023 | website=Sporting News | date=December 19, 2023 | url=https://www.sportingnews.com/us/archives/news/sporting-news-athlete-year-awards-full-list-past-winners/b5057b347246de26b7015930 | access-date=December 19, 2025}}</ref>
* 4× [[ESPY Award]] winner – [[Best NFL Player ESPY Award|Best NFL Player]] (2011, 2012, 2015, 2017)<ref>{{Cite web |date=July 14, 2011 |title=Aaron Rodgers wins Best NFL Player award at ESPY Awards |url=https://www.sportsnet.ca/football/nfl/aaron-rodgers-wins-best/ |access-date=January 19, 2023 |website=Sportsnet.ca}}</ref><ref>{{Cite web |last=Yuille |first=Sean |date=July 12, 2012 |title=ESPYS 2012: Aaron Rodgers Beats Out Calvin Johnson, Others For Best NFL Player |url=https://www.prideofdetroit.com/2012/7/12/3154707/espys-2012-best-nfl-player-aaron-rodgers-calvin-johnson |access-date=January 19, 2023 |website=Pride Of Detroit|publisher=SB Nation |language=en}}</ref><ref>{{Cite web |last=Mosendz |first=Polly |date=July 16, 2015 |title=Who Won What at the ESPYs |url=https://www.newsweek.com/round-who-won-what-espys-354546 |access-date=January 19, 2023 |website=Newsweek |language=en}}</ref><ref>{{Cite web |last=Wagner-McGough |first=Sean |date=July 12, 2017 |title=Aaron Rodgers beats Tom Brady, Ezekiel Elliott for Best NFL Player at the ESPYs |url=https://www.cbssports.com/nfl/news/aaron-rodgers-beats-tom-brady-ezekiel-elliott-for-best-nfl-player-at-the-espys/ |access-date=January 19, 2023 |website=CBSSports.com |language=en}}</ref>
;State/Local
* De Wisconsin Legislature approve a proposal wey declare December 12, 2012 (stylized as 12/12/12) "Aaron Rodgers Day" in honor of Rodgers, wey ein jersey number plus de Packers be 12.<ref name="12-12-12 proclaimed Aaron Rodgers Day">{{Cite web |last=Peterson |first=Eric |date=May 9, 2012 |title=12–12–12 proclaimed Aaron Rodgers Day |url=http://www.fox11online.com/dpp/sports/packers_and_nfl/12-12-12-proclaimed-aaron-rodgers-day |url-status=dead |archive-url=https://web.archive.org/web/20120518140840/http://www.fox11online.com/dpp/sports/packers_and_nfl/12-12-12-proclaimed-aaron-rodgers-day |archive-date=May 18, 2012 |access-date=May 19, 2012 |publisher=Fox11}}</ref><ref name="USA TODAY Arod Day">{{Cite web |last=Davis |first=Charles |date=May 9, 2012 |title=Wisconsin declares Dec. 12, 2012, Aaron Rodgers Day |url=https://www.usatoday.com/sports/football/nfl/packers/story/2012-05-09/Aaron-Rodgers-Day/54862416/1 |url-status=dead |archive-url=https://web.archive.org/web/20120517044032/http://www.usatoday.com/sports/football/nfl/packers/story/2012-05-09/Aaron-Rodgers-Day/54862416/1 |archive-date=May 17, 2012 |access-date=May 19, 2012 |website=USA Today}}</ref>
;Golf
* 2023 AT&T Pebble Beach Pro Am winner<ref>{{Cite web |last=Porter |first=Kyle |date=February 5, 2023 |title=2023 AT&T Pebble Beach Pro-Am: Packers QB Aaron Rodgers wins amateur portion of event with Ben Silverman |url=https://www.cbssports.com/golf/news/2023-at-t-pebble-beach-pro-am-packers-qb-aaron-rodgers-wins-amateur-portion-of-event-with-ben-silverman/ |access-date=April 5, 2023 |website=CBSSports.com |language=en}}</ref>
===Records===
====NFL records====
;Career
* Career passer rating (minimum 1,500 attempts): 102.5
* Career TD–INT ratio (minimum 1,500 attempts): 4.4–1
* Consecutive attempts without an interception (402)<ref>{{Cite web |date=December 16, 2018 |title=Aaron Rodgers' record streak without interception ends at 402 pass attempts |url=https://abcnews.go.com/Sports/aaron-rodgers-record-streak-interception-ends-402-pass/story?id=59851408 |url-status=live |archive-url=https://web.archive.org/web/20200724202334/https://abcnews.go.com/Sports/aaron-rodgers-record-streak-interception-ends-402-pass/story?id=59851408 |archive-date=July 24, 2020 |access-date=December 6, 2019 |website=ABC News}}</ref>
* Fastest to 400 passing touchdowns (193 games)<ref>{{Cite web |last=Demovsky |first=Rob |date=December 6, 2020 |title=Packers' Rodgers fastest to 400 career TD passes |url=https://www.espn.com/nfl/story/_/id/30465452/green-bay-packers-qb-aaron-rodgers-fastest-400-career-touchdown-passes |url-status=live |archive-url=https://web.archive.org/web/20210217222722/https://www.espn.com/nfl/story/_/id/30465452/green-bay-packers-qb-aaron-rodgers-fastest-400-career-touchdown-passes |archive-date=February 17, 2021 |access-date=May 24, 2022 |website=[[ESPN.com]] |language=en}}</ref>
* Career sacks taken: 600<ref name="f403">{{cite web | last=Alper | first=Josh | title=Aaron Rodgers becomes most-sacked QB in history, gets called for late hit | website=NBC Sports | date=December 29, 2024 | url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/aaron-rodgers-becomes-most-sacked-qb-in-history-gets-called-for-late-hit | access-date=January 15, 2025}}</ref><ref>{{Cite web |title=NFL Sacked Career Leaders (since 1960) |url=https://www.pro-football-reference.com/leaders/pass_sacked_career.htm |access-date=February 20, 2025 |website=Pro Football Reference |ref={{sfnref|PFR}}}}</ref>
;Single season den games
* Passer rating insyd a season: 122.5 (2011)<ref name="Prisco">{{Cite web |last=Prisco |first=Pete |date=January 4, 2012 |title=Postseason awards: It's close, but passer rating makes Rodgers MVP |url=http://www.cbssports.com/nfl/story/16714574/postseason-awards-its-close-but-passer-rating-makes-rodgers-mvp |url-status=dead |archive-url=https://web.archive.org/web/20120311144147/http://www.cbssports.com/nfl/story/16714574/postseason-awards-its-close-but-passer-rating-makes-rodgers-mvp |archive-date=March 11, 2012 |access-date=January 6, 2012 |website=CBS Sports}}</ref><ref name="pro-football-reference1920">{{Cite web |title=NFL Passer Rating Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_rating_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20181225031832/https://www.pro-football-reference.com/leaders/pass_rating_single_season.htm |archive-date=December 25, 2018 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
* Lowest interception percentage insyd a season: 0.3 (2018)<ref name="passintpfr" />
* Consecutive games plus a passer rating over 100.0 insyd a season: 12 (2011)<ref name="sifqy">{{Cite web |title=Most consecutive games with a passer rating over 100.0 in a season |url=http://pfref.com/tiny/sifqy |url-status=dead |archive-url=https://web.archive.org/web/20211201204420/https://stathead.com/tools/tiny.fcgi?id=sifqy |archive-date=December 1, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
* Consecutive games plus a passer rating over 110.0 insyd a season: 11 (2011)<ref>{{Cite web |title=Most consecutive games with a passer rating over 110.0 in a season |url=http://pfref.com/tiny/8BeIw |url-status=live |archive-url=https://web.archive.org/web/20211201203057/https://stathead.com/tools/tiny.fcgi?id=8BeIw |archive-date=December 1, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
====Green Bay Packers records====
* Most passing touchdowns (475)<ref name="careergb">{{Cite web |title=Green Bay Packers Career Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/career-passing.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
* Career completion percentage (65.3)<ref name="careergb" />
== Touchdown celebration ==
Since becoming an NFL starter insyd 2008, Rodgers cam be known for ein unique touchdown celebration, wich he den ein teammates dub de "Championship Belt." After a scoring play, Rodgers dey celebrate by making a motion as if he dey put an invisible championship belt on around ein waist.<ref>{{Cite web |last=Sayler |first=Ryan |date=January 10, 2011 |title=The Evolution of Aaron Rodgers' Weird "Belt Dance" |url=http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120416003749/http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |archive-date=April 16, 2012 |access-date=May 10, 2012 |website=Real Fantasy}}</ref><ref>{{Cite web |date=January 16, 2011 |title=Aaron Rodgers | Championship Belt Celebration |url=http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |url-status=live |archive-url=https://web.archive.org/web/20120322064628/http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |archive-date=March 22, 2012 |access-date=May 10, 2012 |website=SportsGrid}}</ref> Teammate Greg Jennings say of de celebration: "''It's just something fun that he does. We get excited when we see it cause we know that he's made a play or we've made a play as offense."''<ref name="youtube1">{{Cite web |date=January 25, 2011 |title=Aaron Rodgers Championship Belt Special on ESPN |url=https://www.youtube.com/watch?v=mcwa2EvQ61Y |url-status=live |archive-url=https://web.archive.org/web/20111225110056/http://www.youtube.com/watch?v=mcwa2EvQ61Y |archive-date=December 25, 2011 |access-date=May 10, 2012 |publisher=ESPN |via=YouTube}}</ref> De gesture draw de praise of WWE wrestler Triple H wey e cam be common for Green Bay fans to mimic during games.<ref>{{Cite web |last=Anderson |first=Kyle |date=February 7, 2011 |title=Aaron Rodgers Wins Super Bowl MVP, Celebrates With Championship Belt |url=http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |url-status=dead |archive-url=https://web.archive.org/web/20191206042749/http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |archive-date=December 6, 2019 |access-date=December 6, 2019 |publisher=MTV}}</ref> Na he sanso celebrate by doing de shoryuken, a jumping uppercut move from de ''Street Fighter'' series.<ref>{{Cite web |last=Kunnath |first=Avinash |date=February 17, 2011 |title=Aaron Rodgers Best Touchdown Celebration: Championship Belt, Super Mario Jump, Or Shoryuken? |url=https://bayarea.sbnation.com/california-golden-bears/2011/2/17/1998750/aaron-rodgers-best-touchdown-celebration-championship-belt-super-mario-jump-shoryuken |access-date=January 19, 2023 |website=SB Nation Bay Area |language=en}}</ref>
== Alternative medicine advocacy ==
Rodgers be vocal about ein use of alternative medicine,<ref>{{Cite web |last=Mole |first=Beth |date=February 23, 2022 |title=Aaron Rodgers' go-to cleanse could involve oily enemas, bloodletting, vomiting |url=https://arstechnica.com/science/2022/02/everything-you-didnt-need-to-know-about-aaron-rodgers-oily-enema-cleanse/ |access-date=August 8, 2022 |website=[[Ars Technica]] |language=en}}</ref><ref>{{Cite web |last=McLaughlin |first=Kelly |date=November 3, 2021 |title=Aaron Rodgers reportedly petitioned the NFL to have an alternative treatment count as being vaccinated against COVID-19 |url=https://sports.yahoo.com/aaron-rodgers-reportedly-petitioned-nfl-163711629.html |access-date=August 8, 2022 |website=[[Yahoo! Sports]] |language=en}}</ref> wey he be a proponent of de legalization of psychedelic drugs.<ref>{{cite magazine|last=Chavkin|first=Daniel|date=June 23, 2023|title=Aaron Rodgers Touts Legalization of Psychedelics at Conference|url=https://www.si.com/extra-mustard/2023/06/23/new-york-jets-aaron-rodgers-touts-psychedelics-legalization|access-date=June 23, 2023|magazine=[[Sports Illustrated]]|language=en}}</ref> He reveal insyd 2022 say na he previously make offseason trips to Peru, wer he consume ayahuasca.<ref>{{Cite web |last=Demovsky |first=Rob |date=August 8, 2022 |title=NFL says Green Bay Packers QB Aaron Rodgers' use of ayahuasca didn't violate drug policy |url=https://www.espn.com/nfl/story/_/id/34371733/nfl-says-green-bay-packers-qb-aaron-rodgers-use-ayahuasca-violate-drug-policy |access-date=August 8, 2022 |website=[[ESPN.com]] |language=en |agency=[[Associated Press]]}}</ref>
=== Views on COVID-19 ===
Rodgers be one of de most prominent American athletes to choose he no go get vaccinated against de [[COVID-19]] virus,<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref> wey na he be critical of de NFL dema health den safety protocols during de COVID-19 pandemic.<ref>{{Cite web |last=Wood |first=Ryan |date=November 5, 2021 |title=Packers quarterback Aaron Rodgers blasts 'woke mob' over COVID-19 news on Pat McAfee show, rips NFL's 'draconian' protocols |url=https://www.jsonline.com/story/sports/nfl/packers/2021/11/05/packers-quarterback-aaron-rodgers-talks-covid-19-sounds-off-nfl-protocols/6280790001/ |access-date=January 5, 2024 |website=[[Milwaukee Journal Sentinel]] |language=en}}</ref> Ein stances on de COVID-19 vaccine be criticized by scientists, health officials, den sam former players den commentators, secof concerns say na Rodgers dey spread vaccine misinformation wey he dey potentially risk de health of ein teammates.<ref>{{Cite web |last1=Belson |first1=Ken |last2=Anthes |first2=Emily |date=November 8, 2021 |title=Scientists Fight a New Source of Vaccine Misinformation: Aaron Rodgers |url=https://www.nytimes.com/2021/11/08/sports/football/aaron-rodgers-vaccine.html |access-date=January 5, 2024 |work=[[The New York Times]] |language=en}}</ref>
During de NFL season, Rodgers frequently appear on ''The Pat McAfee Show''.<ref>{{Cite magazine|last=Hladik|first=Matt|date=January 26, 2021|title=Aaron Rodgers Explains Why He Appears on the Pat McAfee Show|url=https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|url-status=live|archive-url=https://web.archive.org/web/20210924043905/https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|archive-date=September 24, 2021|access-date=December 1, 2021|magazine=The Spun by [[Sports Illustrated]]}}</ref> One such interview insyd 2021 make headlines after Rodgers make several false den misleading statements about COVID-19,<ref name="Rosenberg">{{Cite magazine|last=Rosenberg|first=Michael|date=November 5, 2021|title=The Problem Is Aaron Rodgers Thinks He Has All the Answers|url=https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|url-status=live|archive-url=https://web.archive.org/web/20211108000052/https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|archive-date=November 8, 2021|access-date=November 8, 2021|magazine=[[Sports Illustrated]]|language=en-us}}</ref><ref>{{Cite news|last=Kornfield|first=Meryl|date=November 5, 2021|title=Aaron Rodgers said he did the research on covid vaccines. Here's how he was wrong, according to experts|url=https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|url-status=live|archive-url=https://web.archive.org/web/20211109160437/https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|archive-date=November 9, 2021|access-date=November 15, 2021|newspaper=[[The Washington Post]]}}</ref> wey dey imply say na unvaccinated people no be de group most affected by de pandemic den dat [[ivermectin]] be beneficial for people plus COVID-19.<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |last=Schad |first=Tom |date=November 5, 2021 |title=Fact check: 6 of Aaron Rodgers' false and misleading claims about COVID-19 vaccine |url=https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |url-status=live |archive-url=https://web.archive.org/web/20211108002751/https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=[[USA Today]] |language=en-US}}</ref><ref>{{Cite web |last=Sutelan |first=Edward |date=November 14, 2021 |title=Fact-checking Aaron Rodgers' bizarre COVID beliefs and 'woke mob' claim made on Pat McAfee Show |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |url-status=live |archive-url=https://web.archive.org/web/20211108035450/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=Sporting News |language=en}}</ref><ref>{{Cite web |last=Reinwald |first=Caroline |date=November 6, 2021 |title=Aaron Rodgers vaccine fact check: Doctor responds to quarterback's concerns |url=https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |url-status=live |archive-url=https://web.archive.org/web/20211108035459/https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |archive-date=November 8, 2021 |access-date=November 8, 2021 |publisher=[[WISN-TV]] |language=en}}</ref> Dese den similar claims lead sam reporters to describe Rodgers as a conspiracy theorist.<ref name="Rosenberg" /><ref>{{Cite web |last=Jones |first=Ja'han |date=November 9, 2021 |title=Aaron Rodgers should keep Martin Luther King Jr. out of his foolish Covid claims |url=https://www.msnbc.com/the-reidout/reidout-blog/aaron-rodgers-martin-luther-king-jr-covid-vaccine-rcna4872 |access-date=November 13, 2021 |publisher=MSNBC |language=en}}</ref>
== Political den social commentary ==
Rodgers voice support give [[Robert F. Kennedy Jr.]] den ein presidential campaign of 2024.<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref> Kennedy reportedly include Rodgers on ein "short list" of possible vice presidential running mates, along plus odas, wey dey include [[Jesse Ventura]] den [[Nicole Shanahan]].<ref name=":0">{{Cite news|last=O’Brien|first=Rebecca Davis|date=March 12, 2024|title=Aaron Rodgers and Jesse Ventura Top R.F.K. Jr.'s List for Running Mate|url=https://www.nytimes.com/2024/03/12/us/politics/rfk-jr-aaron-rodgers-jesse-ventura.html|access-date=March 13, 2024|work=The New York Times|language=en-US|issn=0362-4331}}</ref><ref name="OBrienMar172024">{{Cite news|last=O'Brien|first=Rebecca Davis|date=March 17, 2024|title=Nicole Shanahan Emerges as a Top Candidate to Be R.F.K. Jr.'s Running Mate|url=https://www.nytimes.com/2024/03/17/us/politics/nicole-shanahan-rfk-jr-running-mate.html|access-date=May 30, 2024|work=[[The New York Times]]}}</ref>
On [[Adam Breneman]] ein podcast insyd 2022, former Packers backup quarterback [[DeShone Kizer]] talk say Rodgers express interest insyd 9/11 conspiracy theories at one of de first meetings between de two quarterbacks. Kizer describe dema discussion of conspiracy theories as "a real thought experiment".<ref name="nypost-2022-11-29">{{cite news|last1=Hendricks|first1=Jaclyn|date=November 29, 2022|title=DeShone Kizer: Aaron Rodgers pressed me on 9/11 conspiracies|url=https://nypost.com/2022/11/29/deshone-kizer-aaron-rodgers-pressed-me-on-9-11-conspiracies/|access-date=January 8, 2023|work=[[The New York Post]]}}</ref><ref name="si-2022-11-29">{{cite magazine|last1=Salvador|first1=Joseph|date=November 29, 2022|title=Former Packers QB Says Aaron Rodgers Once Asked Him Whether He Believes in 9/11|url=https://www.si.com/nfl/2022/11/29/packers-deshone-kizer-aaron-rodgers-once-asked-him-if-he-believes-in-9-11-conspiracy-theories|access-date=January 8, 2022|magazine=[[Sports Illustrated]]|language=en-us}}</ref> Rodgers sanso promote de Tartarian architecture conspiracy theory.<ref name="tart">{{Cite web |last=Silverman |first=Robert |date=March 8, 2024 |title=Aaron Rodgers Dabbles in the 'QAnon of Architecture' |url=https://www.yahoo.com/entertainment/aaron-rodgers-dabbles-qanon-architecture-234934271.html |access-date=January 15, 2025 |website=Yahoo! Entertainment}}</ref>
Insyd a January 2024 appearance on ''The Pat McAfee Show'', Rodgers, widout evidence, imply say na comedian [[Jimmy Kimmel]] be an acquaintance of disgraced financier den sex offender [[Jeffrey Epstein]], den dat Kimmel ein name go possibly appear in soon to be released court documents listing Epstein ein associates.<ref>{{Cite web |last=Simonetti |first=Isabella |date=January 9, 2024 |title=ESPN's Pat McAfee Said He Doesn't 'Take Back Anything' After Skewering Colleague |url=https://www.wsj.com/business/media/pat-mcafee-show-espn-aaron-rodgers-ede1d63b |access-date=January 9, 2024 |website=WSJ |language=en-US}}</ref> Kimmel deny de allegations den threatened to sue Rodgers for defamation if he repeat de claim.<ref>{{Cite web |last=Kimmel |first=Jimmy |author-link=Jimmy Kimmel |date=January 2, 2024 |title=X Post |url=https://twitter.com/jimmykimmel/status/1742324477323833546 |access-date=January 9, 2024 |website=X}}</ref> Insyd a follow-up appearance on McAfee ein show de following week, Rodgers state say: "''I'm glad that Jimmy is not on the list. I really am. I don't think he's the P-word [pedophile]."''<ref>{{Cite web |last=France |first=Lisa |date=January 9, 2024 |title=Aaron Rodgers blames media in response to Jimmy Kimmel's comments about him |url=https://www.cnn.com/2024/01/09/entertainment/jimmy-kimmel-aaron-rodgers-monologue/index.html |access-date=January 9, 2024 |website=CNN |language=en}}</ref>
During a February 2024 appearance on de conspiracy-focused ''Look Into It'' podcast wey [[Eddie Bravo]] host, Rodgers espouse numerous conspiracy theories on medicine, immigration, den John F. Kennedy.<ref>{{Cite web |last=Keeley |first=Sean |date=March 14, 2024 |title=Here's all the dumb shit Aaron Rodgers recently said on a conspiracy theory podcast |url=https://awfulannouncing.com/nfl/aaron-rodgers-conspiracy-theory-podcast-tartaria-immigrants-trump-biden.html |access-date=April 17, 2024 |website=Awful Announcing |language=en}}</ref> Na ein claims include say na dem create [[HIV/AIDS|AIDS]] den COVID by de government for de sake of pharmaceutical industry profits (sanso spy discredited HIV/AIDS origins theories den Operation Denver).<ref>{{Cite web |last=Buzinski |first=Jim |date=April 17, 2024 |title=Aaron Rodgers says AIDS was created by the U.S. government in the 1980s |url=https://www.outsports.com/2024/4/17/24091797/aaron-rodgers-says-aids-was-created-by-the-u-s-government-in-the-1980s/ |access-date=April 17, 2024 |website=outsports.com |language=en}}</ref>
Insyd 2024, CNN reporter [[Pamela Brown (journalist)|Pamela Brown]] report say na Rodgers insyd 2013 share false conspiracy theories about de Sandy Hook massacre, wey dey claim say na de attack be an "inside job" perpetrated by de government. Na CNN simultaneously report an allegation by an anonymous source say na Rodgers for several years prior say "''Sandy Hook never happened....All those children never existed. They were all actors.''"<ref name="SandyHook1">{{Cite web |last1=Brown |first1=Pamela |last2=Tapper |first2=Jake |date=March 14, 2024 |title=RFK Jr.'s VP prospect Aaron Rodgers has shared false Sandy Hook conspiracy theories in private conversations |url=https://www.cnn.com/2024/03/13/politics/aaron-rodgers-sandy-hook-conspiracy-theories/index.html |access-date=March 17, 2024 |website=CNN.com |language=en}}</ref> In response, Rodgers say, "''I am not and have never been of the opinion that the events did not take place" but did not say whether he had ever believed the Sandy Hook massacre was an "inside job.''"<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref>
== Personal life ==
=== Family den relationships ===
Rodgers get two bros; de younger, [[Jordan Rodgers|Jordan]], play quarterback at Vanderbilt University wey he get a brief NFL career plus de Jacksonville Jaguars den Tampa Bay Buccaneers.<ref>{{Cite web |title=Jordan Rodgers Vanderbilt Bio |url=http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-url=https://web.archive.org/web/20111126203900/http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-date=November 26, 2011 |access-date=June 19, 2017 |website=VUCommodores.com}}</ref><ref>{{Cite web |last=Imig |first=Paul |date=April 27, 2013 |title=Rodgers' younger brother Jordan signs with Jacksonville |url=http://www.foxsportswisconsin.com/fox-sports-networks/story/Rodgers-brother-Jordan-signs-with-Jackso?blockID=896957 |url-status=live |archive-url=https://web.archive.org/web/20220310191855/https://www.foxsports.com/wisconsin/story/rodgers-younger-brother-jordan-signs-with-jacksonville-042713 |archive-date=March 10, 2022 |access-date=June 19, 2017 |work=Fox Sports}}</ref><ref>{{Cite web |last=Eisenband |first=Jeff |date=October 8, 2018 |title=Jordan Rodgers Remembers His 'Good Little' Football Career |url=http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |url-status=dead |archive-url=https://web.archive.org/web/20190308081753/http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |archive-date=March 8, 2019 |access-date=March 7, 2019 |website=ThePostGame.com}}</ref> Although na dem raise Rodgers den ein bros Christian, insyd an interview insyd 2017 he state say he no longer affiliate einself plus any organized religion.<ref>{{Cite web |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=Aaron Rodgers, unmasked |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |url-status=live |archive-url=https://web.archive.org/web/20211114183324/http://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |archive-date=November 14, 2021 |access-date=March 7, 2019 |website=[[ESPN.com]]}}</ref>
Rodgers be de godfather to Cade Cobb, de second son of ein long-time NFL teammate, [[Randall Cobb (American football)|Randall Cobb]].<ref>{{cite web |last=Demovsky |first=Rob |date=October 28, 2021 |title=The 'beautiful, chaotic mess' that brought Randall Cobb's family back to Green Bay |url=https://www.espn.com/blog/green-bay-packers/post/_/id/51394/the-beautiful-chaotic-mess-that-brought-randall-cobbs-family-back-to-green-bay |accessdate=September 1, 2023 |work=[[ESPN.com]]}}</ref>
Na Rodgers dey insyd a relationship plus actress [[Olivia Munn]] from 2014 to 2017 den plus former professional racing driver [[Danica Patrick]] from 2018 to 2020.<ref name="peoplemag">{{Cite web |last=Mizoguchi |first=Karen |date=April 7, 2017 |title=Olivia Munn and Aaron Rodgers Break Up |url=http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |url-status=live |archive-url=https://web.archive.org/web/20170408081606/http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |archive-date=April 8, 2017 |access-date=April 7, 2017 |website=[[People (magazine)|People]]}}</ref><ref name="AP">{{Cite web |date=January 15, 2018 |title=Danica Patrick finds love away from track with Aaron Rodgers |url=https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |url-status=live |archive-url=https://web.archive.org/web/20180219090141/https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |archive-date=February 19, 2018 |access-date=February 18, 2018 |work=[[Associated Press News]]}}</ref><ref>{{Cite web |date=July 16, 2020 |title=Danica, Rodgers call off two-year relationship |url=https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |url-status=live |archive-url=https://web.archive.org/web/20210203195658/https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |archive-date=February 3, 2021 |access-date=February 7, 2021 |website=[[ESPN.com]]}}</ref> He start dey date actress [[Shailene Woodley]] insyd de second half of 2020.<ref>{{Cite web |last=Weinberg |first=Lindsay |date=February 2, 2021 |title=Inside Shailene Woodley and Aaron Rodgers' "Private and Low Key" Romance |url=https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |url-status=live |archive-url=https://web.archive.org/web/20210207071957/https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |archive-date=February 7, 2021 |access-date=February 7, 2021 |website=[[E!]]}}</ref> Insyd an appearance on ''The Tonight Show Starring Jimmy Fallon'' insyd 2021, Woodley confirm say na she be engaged to Rodgers.<ref>{{Cite web |last=Kubota |first=Samantha |date=February 22, 2021 |title=Shailene Woodley engaged to Aaron Rodgers, says she's 'still learning' about football |url=https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |url-status=live |archive-url=https://web.archive.org/web/20210223055422/https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |archive-date=February 23, 2021 |access-date=February 23, 2021 |website=[[Today.com]]}}</ref> On February 16, 2022, na Rodgers den Woodley call off dema engagement.<ref>{{Cite web |last=Wang |first=Jessica |date=February 16, 2022 |title=Shailene Woodley and Aaron Rodgers split, call off engagement |url=https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |url-status=live |archive-url=https://web.archive.org/web/20220409131033/https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |archive-date=April 9, 2022 |access-date=February 16, 2022 |website=[[Yahoo!]] |language=en-US}}</ref>
Insyd December 2024, na Rodgers state say na he dey date a woman dem name Brittani. Insyd June 2025, Rodgers state say dem marry a few months prior.<ref>{{Cite web |last=Comiter |first=Jordana |date=June 10, 2025 |title=Who Is Aaron Rodgers' Wife, Brittani? All About Her Private Relationship with the NFL Quarterback |url=https://people.com/who-is-brittani-aaron-rodgers-11718036 |access-date=June 22, 2025 |website=People.com |language=en}}</ref><ref>{{cite web |last=Hooks |first=Kalan |date=June 10, 2025 |title=Aaron Rodgers announces marriage at Steelers minicamp |url=https://www.espn.com/nfl/story/_/id/45481936/aaron-rodgers-pittsburgh-steelers-announces-marriage |access-date=June 10, 2025 |website=[[ESPN]]}}</ref>
=== Honorary memberships den business ventures ===
Na dem initiate Rodgers as an honorary member of Tau Kappa Epsilon (TKE) on January 5, 2012, at de Sigma-Xi Chapter at St. Norbert College.<ref>{{Cite web |last=Zegers |first=Dan |date=January 6, 2012 |title=MEET FRATERS AARON RODGERS & GRAHAM HARRELL |url=https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |url-status=live |archive-url=https://web.archive.org/web/20221229085550/https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |archive-date=December 29, 2022 |access-date=December 29, 2022 |publisher=Tau Kappa Epsilon}}</ref>
Insyd April 2018, na dem annouce Rodgers as a limited partner insyd de Milwaukee Bucks ownership group, wey dey make am de first active NFL player plus an ownership stake insyd an NBA franchise.<ref>{{Cite web |last=Demovsky |first=Rob |date=April 20, 2018 |title=Aaron Rodgers buys minority stake in Bucks: 'A dream come true' |url=https://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |url-status=live |archive-url=https://web.archive.org/web/20180422052450/http://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |archive-date=April 22, 2018 |access-date=April 22, 2018 |website=[[ESPN.com]]}}</ref> De team later win de NBA Finals insyd 2021.<ref>{{Cite news|last=Deb|first=Sopan|date=July 21, 2021|title=The Milwaukee Bucks Win the N.B.A. Championship|url=https://www.nytimes.com/2021/07/20/sports/basketball/milwaukee-bucks-nba-finals-championship.html|access-date=February 12, 2026|work=The New York Times|language=en-US|issn=0362-4331}}</ref>
== Media appearances ==
Na Rodgers be a longtime spokesperson for State Farm Insurance wey na he frequently feature insyd dema commercials. Insyd de commercials, Rodgers often dey highlight ein "Championship Belt" touchdown celebration, wich State Farm rename as de "Discount Double Check".<ref>{{Cite web |title=State Farm® State of Imitation (Aaron Rodgers) |url=https://www.youtube.com/watch?v=j9Rv7czl9cU |url-status=live |archive-url=https://web.archive.org/web/20121017234148/http://www.youtube.com/watch?v=j9Rv7czl9cU |archive-date=October 17, 2012 |access-date=May 10, 2012 |publisher=State Farm |via=YouTube}}</ref> Rodgers sanso be featured insyd Pizza Hut advertisements,<ref>{{Cite web |last=Rovell |first=Darren |author-link=Darren Rovell |date=September 4, 2012 |title=Pizza Hut uses Aaron Rodgers in new ads |url=https://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |url-status=live |archive-url=https://web.archive.org/web/20161229100812/http://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=[[ESPN.com]]}}</ref> as well as numerous local Wisconsin-based advertisements.<ref name="milcomm">{{Cite web |last=Kirchen |first=Rich |date=August 20, 2015 |title=Aaron Rodgers' commercial work in Wisconsin appears to be dwindling |url=http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |url-status=live |archive-url=https://web.archive.org/web/20151008232237/http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |archive-date=October 8, 2015 |access-date=December 29, 2016 |website=Milwaukee Business Journal}}</ref>
Insyd May 2015, Rodgers appear as a contestant on ''Celebrity Jeopardy!''; he defeat ''Shark Tank'' investor [[Kevin O'Leary]] den astronaut den future United States Senator [[Mark Kelly]], winning $50,000 for ein charity. Insyd April 2021, Rodgers get a two-week stint as guest host on ''Jeopardy!'' from April 5–16.<ref>{{Cite web |last=Demovsky |first=Rob |date=January 12, 2021 |title=Green Bay Packers QB Aaron Rodgers says he'll be a 'Jeopardy!' guest host |url=https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |url-status=live |archive-url=https://web.archive.org/web/20210116152354/https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |archive-date=January 16, 2021 |access-date=January 16, 2021 |publisher=[[ESPN]]}}</ref><ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers sanso make numerous cameo appearances on television, wey dey include insyd a 2013 episode of ''The Office'', a 2019 episode of ''Game of Thrones'', den a 2015 episode of de sketch comedy television series ''Key & Peele''.<ref>{{Cite web |last=Zaldivar |first=Gabe |date=May 10, 2013 |title=Aaron Rodgers Judges Andy Bernard Breakdown on 'The Office' |url=https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |url-status=live |archive-url=https://web.archive.org/web/20210720173445/https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |archive-date=July 20, 2021 |access-date=July 20, 2021 |website=Bleacher Report}}</ref><ref>{{Cite web |date=May 13, 2019 |title=Video NFL star makes surprise cameo on 'Game of Thrones' |url=https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |url-status=live |archive-url=https://web.archive.org/web/20211018165222/https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |archive-date=October 18, 2021 |access-date=October 18, 2021 |website=ABC News |language=en}}</ref><ref>{{Cite web |last=Dubin |first=Jared |date=January 28, 2015 |title=WATCH: Key & Peele, Aaron Rodgers spoof player introductions |url=https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |url-status=live |archive-url=https://web.archive.org/web/20180831104426/https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |archive-date=August 31, 2018 |access-date=August 30, 2018 |website=CBS Sports}}</ref> He sanso tape a cameo as ''Jeopardy!'' host for an episode of ''The Conners''.<ref>{{Cite web |last=Cwik |first=Chris |date=May 8, 2021 |title=Aaron Rodgers guest starring as 'Jeopardy!' host on 'The Conners,' prompting speculation about future |url=https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |url-status=live |archive-url=https://web.archive.org/web/20210508190417/https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |archive-date=May 8, 2021 |access-date=May 8, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd 2021, Rodgers take part insyd ''The Match IV'', wich be de fourth installment insyd de exhibition match play golf series. Na he be paired plus professional golfer [[Bryson DeChambeau]]. De team go up against [[Phil Mickelson]] den Tom Brady.<ref>{{Cite web |last=Wells |first=Adam |date=May 26, 2021 |title=Mickelson, Tom Brady vs. DeChambeau, Aaron Rodgers Set for Capital One's 'The Match' |url=https://bleacherreport.com/articles/10003839-mickelson-tom-brady-vs-dechambeau-aaron-rodgers-set-for-capital-ones-the-match |access-date=May 26, 2021 |website=BleacherReport |publisher=Turner Broadcasting System, Inc.}}</ref> DeChambeau den Rodgers win de match 3 den 2.<ref>{{Cite web |last=VanHaaren |first=Tom |date=July 6, 2021 |title=Bryson DeChambeau, Aaron Rodgers beat Phil Mickelson, Tom Brady in 'The Match' |url=https://www.espn.co.uk/golf/story/_/id/31773982/bryson-dechambeau-aaron-rodgers-beat-phil-mickelson-tom-brady-match |access-date=May 26, 2022 |website=[[ESPN.com]]}}</ref> Rodgers sanso take part insyd de sixth edition of ''The Match'', wer na he team up plus Brady against fellow quarterbacks [[Josh Allen]] den [[Patrick Mahomes]].<ref>{{Cite web |date=April 18, 2022 |title=Tom Brady and Aaron Rodgers to Play Patrick Mahomes and Josh Allen in 'The Match' on June 1 |url=https://www.si.com/golf/news/tom-brady-aaron-rodgers-to-play-patrick-mahomes-josh-allen-in-the-match-june-1 |access-date=May 26, 2022 |website=Morning Read |language=en}}</ref> Rodgers den Brady defeat Mahomes den Allen 1 up.<ref>{{Cite web |last=Hamel |first=Riley |date=June 1, 2022 |title=Aaron Rodgers buries a birdie at the last, teams with Tom Brady to take down Patrick Mahomes, Josh Allen in Capital One's: The Match VI |url=https://golfweek.usatoday.com/lists/tracker-shot-to-shot-updates-of-the-match-vi-at-wynn-las-vegas/ |access-date=June 28, 2022 |website=Golfweek |language=en-US}}</ref>
== Humanitarian den charitable efforts ==
Rodgers be de founder, den de co-creator, along plus David Gruber, of itsAaron,<ref>{{Cite web |last=Littman |first=Chris |date=December 4, 2014 |title=Aaron Rodgers' surprise visit makes school dean scream with joy |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |url-status=live |archive-url=https://web.archive.org/web/20191017184232/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |archive-date=October 17, 2019 |access-date=October 17, 2019 |website=Sporting News}}</ref> a charity plus a mission of "creating awareness for organizations den people wey dey change de world".<ref name="Rodgers Charity">{{Cite web |title=It's Aaron & Gruber Law |url=https://www.gruber-law.com/itsaaron/ |url-status=live |archive-url=https://web.archive.org/web/20250523173120/https://www.gruber-law.com/itsaaron/ |archive-date=May 23, 2025 |access-date=July 1, 2025 |website=Gruber Law |language=en}}</ref><ref>{{Cite web |date=September 4, 2013 |title=Gruber Law Brings Awareness Through 'Its Aaron' with Aaron Rodgers |url=https://www.gruber-law.com/itsaaron/ |archive-url=https://web.archive.org/web/20190414173233/https://www.gruber-law.com/itsaaron/ |archive-date=April 14, 2019 |access-date=March 7, 2019 |website=Gruber Law Offices}}</ref>
He sanso be a supporter of de MACC Fund,<ref name="Nickel">{{Cite web |last=Nickel |first=Lori |date=May 14, 2013 |title=Aaron Rodgers Shines at MACC Fund Event |url=https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |url-status=live |archive-url=https://web.archive.org/web/20250306103414/https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |archive-date=March 6, 2025 |access-date=February 2, 2014 |website=Milwaukee Journal Sentinel}}</ref><ref name="Demovsky">{{Cite web |last=Demovsky |first=Rob |date=December 31, 2013 |title=Aaron Rodgers address 'crazy rumors' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |url-status=live |archive-url=https://web.archive.org/web/20140204035709/http://espn.go.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |archive-date=February 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> Raise Hope for Congo,<ref name="Garber">{{Cite web |last=Garber |first=Greg |date=January 1, 2014 |title=Aaron Rodgers makes real difference:Packers quarterback uses his clout to bring awareness to Raise Hope For Congo |url=https://www.espn.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |url-status=live |archive-url=https://web.archive.org/web/20140104044126/http://espn.go.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |archive-date=January 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> den oda humanitarian den charitable efforts.<ref>{{Cite web |title=Aaron Rodgers: Charity Work & Causes |url=https://www.looktothestars.org/celebrity/aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20211115164124/https://www.looktothestars.org/celebrity/aaron-rodgers |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=Look to the Stars |language=en}}</ref><ref>{{Cite web |date=March 1, 2021 |title=Aaron Rodgers donates $1 million to aid 80 small businesses in hometown |url=https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |url-status=live |archive-url=https://web.archive.org/web/20211115164225/https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=NFL.com |language=en-US}}</ref>
Rodgers ein ''[[List of Jeopardy! tournaments and events|Celebrity Jeopardy!]]'' win earn $50,000 for de MACC Fund.<ref name="Kaduk2015">{{Cite web |last=Kaduk |first=Kevin |date=May 12, 2015 |title=Aaron Rodgers wins his episode of Celebrity Jeopardy |url=https://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |url-status=live |archive-url=https://web.archive.org/web/20150514165207/http://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=[[Yahoo! Sports]]}}</ref><ref>{{Cite web |last=Hanzus |first=Dan |date=May 12, 2015 |title=Aaron Rodgers comes up clutch on Celebrity Jeopardy |url=https://www.nfl.com/news/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy-0ap3000000492438 |url-status=live |archive-url=https://web.archive.org/web/20150514155518/http://www.nfl.com/news/story/0ap3000000492438/article/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=NFL.com}}</ref> During ein 2021 appearance as ''Jeopardy!'' guest host, de show make a charitable donation equal to de cumulative winnings of de contestants (wey dey include de runners-up) for those ten shows.<ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers be a supporter of ein alma mater, University of California, Berkeley. He donate funds to renovate de athletic facilities<ref>{{Cite web |last=Kercheval |first=Ben |date=June 11, 2019 |title=Aaron Rodgers gives Cal football 'seven-figure gift' for locker room renovations, scholarship |url=https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |url-status=live |archive-url=https://web.archive.org/web/20210709182238/https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=CBS Sports |language=en}}</ref> wey he sanso establish an endowed scholarship give transfer students at de school. Insyd 2021, dem honor am by de school for ein charitable work.<ref>{{Cite web |date=June 1, 2021 |title=2021's Best and Brightest Alumni, Faculty Honored at Berkeley Charter Gala |url=https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |url-status=live |archive-url=https://web.archive.org/web/20210709182728/https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=Cal Alumni Association}}</ref>
Insyd 2021, Rodgers donate $1 million to help small businesses insyd Chico den Butte County, California.<ref>{{Cite web |date=March 1, 2021 |title=Packers QB Aaron Rodgers donates $1 million to help his hometown's small businesses |url=https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |url-status=dead |archive-url=https://web.archive.org/web/20230119205343/https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |archive-date=January 19, 2023 |access-date=January 19, 2023 |website=Packers.com |language=en-US}}</ref>
Insyd 2024, Rodgers raise $3 million for charities plus a flag football tournament.<ref>{{Cite web |last=Williams |first=Randall |date=May 4, 2024 |title=Aaron Rodgers Is Bullish on Flag Football, Uses to Raise Millions for Charity |url=https://www.bloomberg.com/news/articles/2024-05-04/nfl-qb-aaron-rodgers-says-olympic-flag-football-might-be-next-chapter |access-date=May 30, 2024 |website=Bloomberg.com}}</ref>
== References ==
<references />
== Read further ==
* {{cite AV media |people=Chopra, Gotham and Liam Hughes (directors) |date=December 17, 2024 |title=Aaron Rodgers: Enigma |url=https://www.netflix.com/title/81757010 |work= |type=Television production |language=English|publisher=Co-published by Religion of Sports, Skydance Sports, and NFL Films |via=Netflix |access-date=February 14, 2025}}
*{{Cite magazine |last=Helfand |first=Zach |date=September 7, 2024 |title=The Beautiful Mystery of Rooting for Aaron Rodgers |url=https://www.newyorker.com/culture/the-weekend-essay/the-beautiful-mystery-of-rooting-for-aaron-rodgers |access-date=February 14, 2025 |magazine=The New Yorker |language=en-US |issn=0028-792X}}
*{{Cite news |first=Tim |last=Keown |date=November 13, 2024 |title=Inside Aaron Rodgers' complicated relationship with the Jets |url=https://www.espn.com/nfl/story/_/id/42348968/aaron-rodgers-new-york-jets-complicated-struggle |access-date=February 14, 2025 |website=ESPN |language=en}}
*{{Cite magazine |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=The Search For Aaron Rodgers |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |access-date=February 14, 2025 |magazine=[[ESPN The Magazine]] |language=en-US}}
*{{cite book| first=Ian |last=O'Connor |title=Out of the Darkness: The Mystery of Aaron Rodgers |date=August 20, 2024 |publisher=Mariner Books |isbn=9780063297869}}
*{{Cite news |last=Rosenblatt |first=Zack |date=September 9, 2024 |title=How Aaron Rodgers earned his hometown's unconditional love |url=https://www.nytimes.com/athletic/5754871/2024/09/09/aaron-rodgers-jets-chico-california-covid-funds-conspiracy-theories/ |access-date=February 14, 2025 |work=The Athletic |language=en-US |url-access=subscription}}
*{{Cite magazine |first=Jason |last=Wilde |date=August 31, 2012 |title=Nobody Special: A Profile of Aaron Rodgers |url=https://www.milwaukeemag.com/nobody-special-aaron-rodgers-profile/ |access-date=February 14, 2025 |website=Milwaukee Magazine |language=en-US}}
== External links ==
k7wyirx559bz0gkaiz7ghtnxxnjn6kq
111301
111300
2026-08-29T23:28:17Z
DaSupremo
9
Improve article
111301
wikitext
text/x-wiki
{{Databox}}
'''Aaron Charles Rodgers''' (born December 2, 1983) be an American professional football quarterback give de Pittsburgh Steelers of de National Football League (NFL). He play college football give de California Golden Bears, setting de school ein record for lowest single-season den career interception rates before he be selected by de Green Bay Packers insyd de first round of de 2005 NFL draft.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{cite web |date=April 23, 2005 |title=Aaron Rodgers Selected by Green Bay |url=https://calbears.com/sports/2005/4/23/207736054 |access-date=September 25, 2025 |website=California Golden Bears Athletics}}</ref> He be regarded as one of de greatest den most talented quarterbacks of all time.<ref name="GOAT2">*{{Cite web |date=August 30, 2018|title=Where will Rodgers finish among the greatest QBs of all time?|url=http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|url-status=live|archive-url=https://web.archive.org/web/20181114060238/http://www.nfl.com/videos/good-morning-football/0ap3000000952230/Where-will-Rodgers-finish-among-the-greatest-QBs-of-all-time|archive-date=November 14, 2018|access-date=November 13, 2018|publisher=National Football League|type=Television production}}<li>{{Cite web |last=Siegel|first=Alan|date=February 28, 2018|title=The top 25 NFL quarterbacks of all-time|url=https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|url-status=live|archive-url=https://web.archive.org/web/20200724211140/https://touchdownwire.usatoday.com/2018/02/28/top-25-nfl-quarterbacks-of-all-time/21/|archive-date=July 24, 2020|access-date=November 13, 2018|work=[[USA Today]]|quote=By the time he's done, Rodgers may be No. 1 on this list. At 35, the seven-time Pro Bowler and two-time NFL MVP, who led the Packers to victory in Super Bowl XLV, is still going strong. He holds the NFL record in single-season and career passer rating (122.5, 103.2) and is creeping up on the leaders in nearly every major passing category.}}</li><li>{{Cite web |last=Schein|first=Adam|date=January 18, 2021|title=NFL Divisional Round aftermath: Aaron Rodgers most talented QB ever? Chiefs in trouble?|url=https://www.nfl.com/news/nfl-divisional-round-aftermath-aaron-rodgers-most-talented-qb-ever-chiefs-in-tro|access-date=April 4, 2023|website=[[NFL.com]]}}</li>*{{Cite web |last=Miller|first=Dalton|date=May 27, 2021|title=Ranking the Top Quarterbacks in NFL History from Tom Brady to Warren Moon|url=https://www.profootballnetwork.com/ranking-top-quarterbacks-in-nfl-history/|access-date=April 5, 2023|work=Pro Football Network}}
*{{Cite web |last=Schwab|first=Frank|date=February 1, 2023|title=What is Tom Brady's place among the 5 greatest QBS in NFL history?|url=https://sports.yahoo.com/what-is-tom-bradys-place-among-the-5-greatest-qbs-in-nfl-history-161857912.html|access-date=April 4, 2023|work=[[Yahoo! Sports]]}}</ref>
After backing up [[Brett Favre]] for de first three years of ein NFL career, Rodgers cam be de Packers dema starting quarterback insyd 2008. Insyd de 2010 season, he lead dem to a victory insyd Super Bowl XLV, earning de Super Bowl MVP. Na dem name am Associated Press Athlete of de Year insyd 2011,<ref name="Male Athlete of the year">{{Cite news|date=December 21, 2011|title=Rodgers named Male Athlete of the Year|work=[[Fox Sports]]|agency=[[Associated Press]]|url=http://msn.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|url-status=dead|access-date=May 13, 2011|archive-url=https://web.archive.org/web/20190718082529/https://www.foxsports.com/nfl/story/Green-Bay-Packers-Aaron-Rodgers-2011-AP-Male-Athlete-of-Year-122111|archive-date=July 18, 2019}}</ref> wey na dem vote am league MVP by de Associated Press for de 2011, 2014, 2020, den 2021 NFL seasons. Rodgers be de fifth player to win NFL MVP insyd consecutive seasons, joining [[Peyton Manning]], Favre, [[Joe Montana]] den [[Jim Brown]]. Rodgers lead de NFL six times insyd touchdown-to-interception ratio (2011, 2012, 2014, 2018, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Leaders – Passing Touchdown/Interception Ratio |url=https://www.footballdb.com/leaders/yearly-passing-tdintratio |url-status=live |archive-url=https://web.archive.org/web/20190407190912/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=April 7, 2019 |access-date=April 7, 2019 |website=FootballDB.com}}</ref> six times insyd lowest passing interception percentage (2009, 2014, 2018, 2019, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passing Interception Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-intpct |url-status=live |archive-url=https://web.archive.org/web/20200724202503/https://www.footballdb.com/leaders/yearly-passing-intpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> four times insyd passer rating (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Passer Rating Leaders |url=https://www.footballdb.com/leaders/yearly-passing-rating |url-status=live |archive-url=https://web.archive.org/web/20200724211550/https://www.footballdb.com/leaders/yearly-passing-rating |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den four times insyd touchdown passing percentage (2011, 2012, 2020, 2021);<ref>{{Cite web |title=NFL Yearly Touchdown Pass Percentage Leaders |url=https://www.footballdb.com/leaders/yearly-passing-tdpct |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.footballdb.com/leaders/yearly-passing-tdpct |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> three times insyd total touchdowns (2011, 2016, 2020); twice insyd touchdown passes (2016, 2020)<ref>{{Cite web |title=NFL Yearly Touchdown Passes Leaders |url=https://www.footballdb.com/leaders/yearly-passing-touchdowns |url-status=live |archive-url=https://web.archive.org/web/20200724202559/https://www.footballdb.com/leaders/yearly-passing-touchdowns |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> den once insyd yards per attempt (2011) den completion percentage (2020).<ref>{{Cite web |title=NFL Yearly Passing Yards per Attempt Leaders |url=https://www.footballdb.com/leaders/yearly-passing-ydsattempt |url-status=live |archive-url=https://web.archive.org/web/20200724202800/https://www.footballdb.com/leaders/yearly-passing-ydsattempt |archive-date=July 24, 2020 |access-date=May 22, 2020 |website=FootballDB.com}}</ref> Insyd 2023, na dem trade Rodgers to de New York Jets, wer he spend two seasons plus de team. Released by de Jets after de 2024 season, Rodgers sign plus de Steelers, whom he lead to a division title dat season.
Ranking first on de NFL ein all-time regular-season career passer rating list,<ref>{{Cite web |last=Brizuela |first=James |date=September 16, 2025 |title=Ravens' Lamar Jackson Has Surpassed Aaron Rodgers in Major NFL Career Stat |url=https://www.newsweek.com/sports/nfl/ravens-lamar-jackson-has-surpassed-aaron-rodgers-major-nfl-career-stat-2130770 |access-date=September 16, 2025 |website=[[Newsweek]]}}</ref> Rodgers be among de most efficient quarterbacks of all time. Apart from a regular-season career passer rating of over 100 (de first to ever have a career rating over 100), he sanso dey hold de best touchdown-to-interception ratio den de lowest passing interception percentage insyd NFL history while he sanso get de highest passer rating insyd NFL history thru out de entire 2010s decade. Insyd de postseason, he be second in both touchdown passes den touchdown-to-interception ratio, fourth insyd passing yards, den eighth insyd all-time passer rating. Insyd de regular season, he get de best touchdown-to-interception ratio insyd NFL history at 4.34,<ref name="Football DB">{{Cite web |title=NFL Career Leaders – Passing Touchdown/Interception Ratio |url=http://www.footballdb.com/leaders/career-passing-tdintratio |archive-url=https://web.archive.org/web/20200508102359/https://www.footballdb.com/leaders/yearly-passing-tdintratio |archive-date=May 8, 2020 |access-date=November 3, 2014 |website=FootballDB.com}}</ref> he dey hold de league ein second lowest career interception percentage at 1.4 percent<ref name="a">{{Cite web |title=NFL Career Pass Interception % Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |url-status=live |archive-url=https://web.archive.org/web/20110815065956/http://www.pro-football-reference.com/leaders/pass_int_perc_career.htm |archive-date=August 15, 2011 |access-date=September 24, 2015 |work=[[Pro Football Reference]]}}</ref> den de highest single-season passer rating record of 122.5.<ref>{{Cite web |last=Mayer |first=Larry |date=September 12, 2012 |title=Bears gearing up to battle Rodgers |url=http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |url-status=dead |archive-url=https://web.archive.org/web/20150925095614/http://www.chicagobears.com/news/article-1/Bears-gearing-up-to-battle-Rodgers/e6d6b0b1-8aaf-427b-b4cc-ddd4d0544ba3 |archive-date=September 25, 2015 |access-date=September 24, 2015 |publisher=[[Chicago Bears]]}}</ref> Rodgers sanso be a four-time winner of de Best NFL Player ESPY Award.
== Early life ==
Ba dem born Aaron Charles Rodgers on December 2, 1983, insyd Chico, California,<ref>{{Cite magazine|title=Aaron Rodgers – No. 12 – QB|url=http://sportsillustrated.cnn.com/football/nfl/players/7200|url-status=dead|archive-url=https://web.archive.org/web/20110719095151/http://sportsillustrated.cnn.com/football/nfl/players/7200/|archive-date=July 19, 2011|access-date=February 6, 2011|magazine=[[Sports Illustrated]]}}</ref> de son of Darla Leigh (née Pittman) den Edward Wesley Rodgers. Na ein poppie be a Texas-born chiropractor wey play football as an offensive lineman give de Chico State Wildcats from 1973 to 1976.<ref name="about1">{{Cite web |last=Powell |first=Kimberly |date=October 15, 2018 |title=Ancestry of Aaron Rodgers |url=https://www.thoughtco.com/family-tree-of-aaron-rodgers-1421929 |url-status=live |archive-url=https://web.archive.org/web/20111211212214/http://genealogy.about.com/od/famous_family_trees/ss/aaron-rodgers.htm |archive-date=December 11, 2011 |access-date=May 10, 2012 |website=ThoughtCo.com}}</ref><ref name="Jackel2005">{{Cite web |last=Jackel |first=Pete |date=October 6, 2005 |title=Focus on Football: Rodgers preparing for his moment |url=http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |url-status=live |archive-url=https://web.archive.org/web/20110127115346/http://www.journaltimes.com/sports/article_235efc6d-0241-5c9c-8d10-8b5e02ae4420.html |archive-date=January 27, 2011 |access-date=March 14, 2012 |website=RacineSportsZone.com |publisher=JournalTimes.com}}</ref> Rodgers be of English, Irish den German ancestry.<ref name="about1" /> De family move go Ukiah, California, wer he attend Oak Manor Elementary School.<ref name="FreeThrows">{{Cite news|date=January 3, 1993|title='Free throws' are his forte|url=https://newspaperarchive.com/ukiah-daily-journal/1993-01-03/|url-status=live|archive-url=https://web.archive.org/web/20211201192340/https://newspaperarchive.com/browse/us/ca/ukiah/ukiah-daily-journal/|archive-date=December 1, 2021|access-date=March 14, 2012|work=Ukiah Daily Journal|via=Newspaper Archive|page=1}}</ref> Edward Rodgers toss a football plus ein sons Luke, Aaron den [[Jordan Rodgers]], wey he flow dem make dem no told drink den no party insyd college anaa dem go limit demaselves insyd sports like he do. Aaron take dis advice to heart.<ref name="Jackel2005" /> At de age of ten, he be featured on de front page of de ''Ukiah Daily Journal'' for ein top performance at a local basketball free throw competition.<ref name="FreeThrows" />
Later, de family move go Beaverton, Oregon, wer Rodgers attend Vose Elementary School den Whitford Middle School, wey he play baseball insyd de Raleigh Hills Little League at shortstop, center field den pitcher.<ref name="Oregonian">{{Cite web |date=February 5, 2011 |title=Green Bay quarterback Aaron Rodgers has strong ties to Beaverton |url=http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |url-status=live |archive-url=https://web.archive.org/web/20110216014347/http://www.oregonlive.com/beaverton/index.ssf/2011/02/green_bay_quarterback_aaron_rodgers_has_strong_ties_to_beaverton.html |archive-date=February 16, 2011 |access-date=February 5, 2011 |work=[[The Oregonian]]}}</ref>
De Rodgers family return to Chico insyd 1997, wey Aaron attend Pleasant Valley High School, starting for two years at quarterback den garnering 4,421 passing yards.<ref>{{Cite web |last=Davidson |first=Joe |date=September 5, 2019 |title=Green Bay Packers quarterback Aaron Rodgers donates 354 new helmets to California high schools |url=https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |url-status=live |archive-url=https://web.archive.org/web/20190925105424/https://www.staradvertiser.com/2019/09/05/sports/sports-breaking/green-bay-packers-quarterback-aaron-rodgers-donates-354-new-helmets-to-california-high-schools/ |archive-date=September 25, 2019 |access-date=September 13, 2019 |work=[[Honolulu Star-Advertiser]]}}</ref> He set single-game records of six touchdowns den 440 all-purpose yards. Rodgers set a single-season school record plus 2,466 total yards insyd 2001.<ref>{{Cite web |last=Carlton |first=Jimmy |date=April 26, 2018 |title=Of brains, Butte and baseball: How a tiny teenager became #Packers MVP Aaron Rodgers |url=https://onmilwaukee.com/articles/packersaaronrodgersjourney |access-date=May 30, 2024 |website=OnMilwaukee}}</ref> He graduate from Pleasant Valley High School insyd spring 2002, after scoring 1310 insyd de SAT den plus an A− average.<ref>{{Cite web |title=#12 Aaron Rodgers |url=http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |url-status=live |archive-url=https://web.archive.org/web/20110716022313/http://gnb.scout.com/a.z?s=61&p=8&c=1&nid=2983568 |archive-date=July 16, 2011 |access-date=February 6, 2011 |website=Packer Report |publisher=Scout with FoxSports.com}}</ref><ref>{{Cite news|date=November 20, 2002|title=JC Quarterback Commits to Cal, Butte's Rodgers Could Join the Competition to Replace Boller Next Year|url=http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|url-status=live|archive-url=https://web.archive.org/web/20181113165752/http://nl.newsbank.com/nl-search/we/Archives?p_product=CC&s_site=contracostatimes&p_multi=CC&p_theme=realcities&p_action=search&p_maxdocs=200&p_topdoc=1&p_text_direct-0=1064A22FC0F69599&p_field_direct-0=document_id&p_perpage=10&p_sort=YMD_date:D|archive-date=November 13, 2018|access-date=May 11, 2012|work=Contra Costa Times|location=Walnut Creek, California|via=NewsBank|quote=[He] scored 1310 on the SAT, so Cal's academic reputation was important to him.}}</ref><ref>{{Cite news|last=Crouse|first=Karen|date=January 31, 2011|title=Packers' Rodgers Has Deep Roots in Chico|url=https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|url-status=live|archive-url=https://web.archive.org/web/20190426170034/https://www.nytimes.com/2011/01/31/sports/football/31rodgers.html|archive-date=April 26, 2019|access-date=December 5, 2019|work=[[The New York Times]]|page=D1|quote=Despite his athletic prowess, an A-minus average and an SAT score of 1310, Rodgers did not receive an NCAA Division I scholarship offer coming out of high school.}}</ref>
== College career ==
Despite ein impressive high school record, Rodgers attract little interest from Division I programs.<ref>{{Cite web |last=Kalland |first=Robby |date=September 3, 2015 |title=How Aaron Rodgers went from not being recruited to a star at Cal |url=https://www.cbssports.com/college-football/news/how-aaron-rodgers-went-from-not-being-recruited-to-a-star-at-cal/ |access-date=May 30, 2024 |website=CBSSports.com}}</ref> Insyd a 2011 interview plus ''E:60'', he attribute de relative lack of attention insyd de recruiting process to ein unimposing physical stature as a high school player at {{convert|5|ft|10|in|m|abbr=on}} den {{convert|165|lb|kg}}. Na Rodgers want to attend Florida State den play under head coach [[Bobby Bowden]], buh na dem reject am.<ref name="E60 Youtube">{{Cite web |date=October 27, 2011 |title=E:60 – Aaron Rodgers |url=https://www.youtube.com/watch?v=blrmdIfXPwI |url-status=live |archive-url=https://web.archive.org/web/20120302212553/https://www.youtube.com/watch?v=blrmdIfXPwI |archive-date=March 2, 2012 |access-date=May 13, 2012 |publisher=ESPN |via=YouTube}}</ref> Na he only be offered an opportunity to compete for a scholarship as a walk-on from University of Illinois.<ref>{{Cite news|last=McGrath|first=Jim|date=June 29, 2011|title=Green Bay QB Rodgers Visits All-Pro Campers at W&M|work=Williamsburg Yorktown Daily|url=http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|url-status=dead|access-date=August 22, 2013|archive-url=https://web.archive.org/web/20130921054645/http://www.wydailyarchives.com/local-news/6783-green-bay-qb-rodgers-visits-all-pro-campers-at-wam.html|archive-date=September 21, 2013}}</ref> He decline de invitation, wey na he consider quitting football to play baseball instead anaa giving up entirely on de idea of playing insyd professional sports den attending law school after completing ein undergraduate degree.<ref name="Babb">{{Cite news|last=Babb|first=Kent|date=December 15, 2015|title=For Aaron Rodgers, road to the NFL started at an apparent dead end|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|url-status=live|access-date=November 30, 2018|archive-url=https://web.archive.org/web/20181130205037/https://www.washingtonpost.com/sports/redskins/for-aaron-rodgers-road-to-the-nfl-started-at-an-apparent-dead-end/2015/12/15/8fe12800-a359-11e5-ad3f-991ce3374e23_story.html|archive-date=November 30, 2018}}</ref>
He then be recruited to play football at Butte College insyd Oroville, a junior college about {{convert|15|mi|km}} southeast of Chico.<ref>{{Cite book |last=Sandler |first=Michael |url=https://archive.org/details/aaronrodgersgree0000sand |title=Aaron Rodgers and the Green Bay Packers: Super Bowl XLV |date=August 1, 2011 |publisher=Bearport Publishing |isbn=9781617723094 |url-access=registration}}</ref>
=== Butte ===
==== 2002 season ====
Rodgers throw 26 touchdowns insyd ein freshman season at Butte,<ref>{{Cite web |title=Aaron Rodgers |url=https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |url-status=live |archive-url=https://web.archive.org/web/20211028170413/https://www.cccco.edu/About-Us/Notable-Alumni/Aaron-Rodgers |archive-date=October 28, 2021 |access-date=October 13, 2021 |website=California Community Colleges Chancellor's Office}}</ref><ref>{{Cite web |title=Stats & Records |url=http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-url=https://web.archive.org/web/20081202112615/http://www.butte.edu/departments/athletics/football/StatsRecords.html |archive-date=December 2, 2008 |access-date=November 18, 2011 |website=butte.edu |publisher=[[Butte College]]}}</ref> leading de school to a 10–1 record, de NorCal Conference championship,<ref>{{Cite web |date=November 8, 2008 |title=Title-tilt bound: Butte secures NorCal championship |url=https://www.chicoer.com/20081108/title-tilt-bound-butte-secures-norcal-championship/ |access-date=May 30, 2024 |work=Chico Enterprise-Record}}</ref> den a {{nowrap|No. 2}} national ranking. While der, na he be discovered by de California Golden Bears ein head coach [[Jeff Tedford]], wey na he dey recruite Butte tight end Garrett Cross.<ref>{{Cite web |last=McGrath |first=Dan |date=November 11, 2004 |title=Cal QB Rodgers has the pedigree |url=https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-url=https://web.archive.org/web/20191205183533/https://www.chicagotribune.com/news/ct-xpm-2004-11-11-0411110322-story.html |archive-date=December 5, 2019 |access-date=September 13, 2019 |work=Chicago Tribune}}</ref> Na Tedford be surprised to learn say Rodgers no be recruited earlier. Secof Rodgers ein good high school scholastic record, he be eligible to transfer to de University of California, Berkeley after one year of junior college instead of de typical two.<ref name="Cal">{{Cite news|last=Adams|first=Bruce|date=August 3, 2003|title=Cal's QB hope: JC transfer Rodgers has what Tedford likes|work=San Francisco Chronicle|url=https://www.sfchronicle.com/sports/article/Cal-s-QB-hope-JC-transfer-Rodgers-has-what-2598626.php|url-status=live|access-date=22 February 2026}}</ref>
=== California ===
==== 2003 season ====
As a junior college transfer, Rodgers get three years of eligibility at Cal. Na dem name am de starting quarterback insyd de fifth game of de 2003 season, beating de only team wey offer am a {{nowrap|Division I}} opportunity out of high school, Illinois.<ref>{{Cite web |date=October 14, 2014 |title=Aaron Rodgers: I wanted to join Illini; they passed |url=https://www.chicagotribune.com/2014/10/14/aaron-rodgers-i-wanted-to-join-illini-they-passed/ |access-date=May 30, 2024 |work=Chicago Tribune}}</ref> As a sophomore, he help lead de Golden Bears to a 7–3 record as a starter.<ref name="calbears1">{{Cite web |title=Player Bio: Aaron Rodgers |url=http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |url-status=dead |archive-url=https://web.archive.org/web/20110727024226/http://www.calbears.com/sports/m-footbl/mtt/rodgers_aaron00.html |archive-date=July 27, 2011 |access-date=December 30, 2010 |work=The University of California Official Athletic Site}}</ref><ref>{{Cite web |last=King |first=Randy |date=December 26, 2003 |title=Virginia Tech finishes on wrong foot with Insight Bowl loss to Cal |url=https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |url-status=live |archive-url=https://web.archive.org/web/20191208021513/https://www.roanoke.com/sports/college/va_tech/virginia-tech-finishes-on-wrong-foot-with-insight-bowl-loss/article_6e776ea8-ae9d-11e7-9aa2-4357db843999.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |work=The Roanoke Times}}</ref>
Insyd ein second career start, Rodgers lead de team to a 21–7 halftime lead against #3 USC. Secof injury, na dem replace Rodgers insyd de second half by Reggie Robertson.<ref name="calfans" /><ref>{{Cite web |date=September 27, 2003 |title=Cal-USC Postgame Quotes |url=http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121444/http://www.calbears.com/sports/m-footbl/recaps/092703aac.html |archive-date=June 9, 2012 |website=California Golden Bears |quote=After the interception for the touchdown, I went over to him and said 'Do you want to take a couple of series off?' and he said 'Yes.' We put Reggie (Robertson) in and Reggie did a nice job for us."}}</ref> De Bears win insyd triple overtime, 34–31.<ref name="calfans">{{Cite web |date=September 27, 2003 |title=Cal fans storm field after win |url=http://espn.go.com/ncf/recap?gameId=232700025 |url-status=dead |archive-url=https://web.archive.org/web/20161119182933/https://www.espn.com/college-football/recap?gameId=232700025 |archive-date=November 19, 2016 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |last=Faraudo |first=Jeff |date=September 29, 2009 |title=Cal's triple-overtime thriller against USC in 2003 produced multiple heroes |url=https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |url-status=live |archive-url=https://web.archive.org/web/20191208021406/https://www.eastbaytimes.com/2009/09/29/cals-triple-overtime-thriller-against-usc-in-2003-produced-multiple-heroes/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=East Bay Times}}</ref> Rodgers pass for 394 yards wey na dem name am game MVP insyd de Insight Bowl against Virginia Tech.<ref>{{Cite web |title=Insight Bowl – Virginia Tech vs California Box Score, December 26, 2003 |url=https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |url-status=live |archive-url=https://web.archive.org/web/20180312084010/https://www.sports-reference.com/cfb/boxscores/2003-12-26-california.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |work=[[Sports Reference]]}}</ref><ref>{{Cite book |last=Tsuchiya |first=Anita |url=https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |title=Aaron Rodgers: Biography of a Super Bowl MVP |date=July 30, 2012 |publisher=Hyperink Inc |isbn=9781614646129 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203201742/https://books.google.com/books?id=MJ5-BwAAQBAJ&q=aaron%2520rodgers%2520insight%2520bowl%2520mvp&pg=PT14 |archive-date=February 3, 2021 |url-status=live}}</ref>
Insyd 2003, Rodgers tie de school season record for 300-yard games plus five wey he set a school record for de lowest percentage of passes dem intercept at 1.43%.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref>
==== 2004 season ====
As a junior, Rodgers lead Cal to a 10–1 record den top-five ranking at de end of de regular season, plus dema only loss a 23–17 loss at {{nowrap|No. 1}} USC.<ref>{{Cite web |title=2004 California Golden Bears Schedule and Results |url=https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |url-status=live |archive-url=https://web.archive.org/web/20180312085053/https://www.sports-reference.com/cfb/schools/california/2004-schedule.html |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref> Insyd dat game, Rodgers set a school record for consecutive passes dem plete plus 26 wey he tie an NCAA record plus 23 consecutive passes dem plete insyd one game.<ref>{{Cite web |last=Lee |first=Ted |date=October 10, 2004 |title=It was there for the taking |url=https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-url=https://web.archive.org/web/20191205183922/https://247sports.com/college/california/Article/It-was-there-for-the-taking-104130375/ |archive-date=December 5, 2019 |access-date=September 13, 2019 |website=BearTerritory.net}}</ref> Na he set a Cal single-game record for passing completion percentage of 85.3.<ref>{{Cite web |last=Lowry |first=Matthew |date=November 15, 2019 |title=Trojans Throwback: 2004 USC vs California |url=https://www.conquestchronicles.com/football/2019/11/15/20966700/trojans-throwback-2004-usc-vs-california |access-date=May 30, 2024 |work=Conquest Chronicles}}</ref><ref>{{Cite web |last=Wharton |first=David |date=October 10, 2004 |title=Rodgers Can't See It Through to Completion |url=https://www.latimes.com/archives/la-xpm-2004-oct-10-sp-uscside10-story.html |access-date=May 30, 2024 |work=Los Angeles Times}}</ref> Rodgers dey hold de Cal career record for lowest percentage of passes dem intercept at 1.95 percent.<ref name="cstv.com">{{Cite web |title=Cal Records |url=http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |url-status=dead |archive-url=https://web.archive.org/web/20071122202146/http://www.cstv.com/auto_pdf/p_hotos/s_chools/cal/sports/m-footbl/auto_pdf/pdf-07FB121to150-072007 |archive-date=November 22, 2007 |access-date=May 13, 2012 |website=CSTV.com}}</ref> Rodgers ein performance set up de Golden Bears at first den goal plus 1:47 remaining den a chance for de game-winning touchdown. On de first play of USC ein goal line stand, Rodgers throw an incomplete pass. Na dis be followed by a second-down sack by [[Manuel Wright]].<ref name="Cal Vs USC 2004" /> After a timeout den Rodgers ein incomplete pass on third down, USC stop Cal ein run play to win de game.<ref name="Cal Vs USC 2004" /> Rodgers comment say na e be "frustrating dat we no fi get de job done."<ref name="Cal Vs USC 2004">{{Cite web |date=October 9, 2004 |title=Trojans' defense stymies Cal QB at first-and-goal |url=http://scores.espn.go.com/ncf/recap?gameId=242830030 |url-status=dead |archive-url=https://web.archive.org/web/20170817065913/http://scores.espn.com/ncf/recap?gameId=242830030 |archive-date=August 17, 2017 |access-date=May 13, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Overall, he fini de 2004 season plus 2,566 passing yards, 24 touchdowns, den eight interceptions. Ein 66.1% pass completion percentage lead de Pac-10.<ref>{{Cite web |title=Aaron Rodgers 2004 Game Log |url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |url-status=live |archive-url=https://web.archive.org/web/20180312084136/https://www.sports-reference.com/cfb/players/aaron-rodgers-1/gamelog/2004/ |archive-date=March 12, 2018 |access-date=March 11, 2018 |website=[[Sports Reference]]}}</ref><ref>{{Cite web |title=2004 Pacific-10 Conference Leaders |url=https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |url-status=live |archive-url=https://web.archive.org/web/20180328231847/https://www.sports-reference.com/cfb/conferences/pac-10/2004-leaders.html |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Sports Reference]]}}</ref> He fini ninth insyd Heisman Trophy voting.<ref>{{Cite web |title=2004 Heisman Trophy Voting |url=https://www.sports-reference.com/cfb/awards/heisman-2004.html |access-date=December 2, 2022 |website=[[Sports Reference]] |language=en}}</ref>
After na dem pick Texas over Cal for a Rose Bowl berth, na dem award de fourth-ranked Bears a spot insyd de Holiday Bowl, wich dem loose to Texas Tech, 45–31.<ref>{{Cite web |date=December 15, 2017 |title=2004 Holiday Bowl: Cal caught in Texas Tech's Air Raid |url=https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208021644/https://www.sandiegouniontribune.com/sports/sd-sp-countdown-2004-holiday-bowl-texas-tech-vs-cal-1215-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> After de season, Rodgers decide to forgo ein senior season to enter de 2005 NFL draft.<ref>{{Cite web |date=January 6, 2005 |title=Who to watch in 2005 |url=http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |url-status=live |archive-url=https://web.archive.org/web/20190426144539/http://www.newsreview.com/chico/who-to-watch-in-2005/content?oid=33331 |archive-date=April 26, 2019 |access-date=February 15, 2012 |website=Chico News & Review}}</ref>
== Professional career ==
=== 2005 NFL draft ===
Na Rodgers be expected to be selected early insyd de 2005 NFL draft as he post impressive numbers as a junior plus Cal, throwing for 2,320 yards plus a 67.5 completion rate insyd de regular season. He throw for 24 touchdowns den only eight interceptions insyd ein last college season, impressing chaw NFL scouts. Na dem comment say na he be a "talented strong-armed junior"<ref name="Draft Insider">{{Cite web |title=NFL Draft – QB Aaron Rodgers |url=http://www.draftinsiders.com/node/1288 |url-status=dead |archive-url=https://web.archive.org/web/20120111054622/http://www.draftinsiders.com/node/1288 |archive-date=January 11, 2012 |access-date=December 9, 2011 |website=DraftInsiders.com}}</ref> wey dey "combine arm strength, mechanics den delivery to make all de throws", buh dem note say ein stats fi be inflated secof playing insyd a quarterback-friendly system den dat he go need to adjust to de more elaborate defensive schemes of de NFL.<ref name="Draft Insider" />
Before de draft, na Rodgers be confident say he go be drafted to de San Francisco 49ers, de team he support den grow up near,<ref name="Bensiger">{{Cite AV media |url=https://www.youtube.com/watch?v=8_a6O3vdlU0 |title=In Depth with Graham Bensinger: Aaron Rodgers: Thought I'd be a 49er |date=December 21, 2016 |last=Bensinger |first=Graham |type=Television production, YouTube video |access-date=December 26, 2016 |archive-url=https://ghostarchive.org/varchive/youtube/20211212/8_a6O3vdlU0 |archive-date=December 12, 2021 |url-status=live |orig-year=2010}}</ref> wey possess de No. 1 overall pick insyd de draft.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> De 49ers, however, draft quarterback [[Alex Smith]] out of Utah instead, wey Rodgers slid all de way down to de 24th overall pick by de Green Bay Packers. Na Rodgers say he experience much angst den restlessness wen waiting to be selected several hours into de draft, as na he expect einself to be selected much sooner.<ref name="Bensiger" /> Rodgers ein slip to de 24th selection den de Packers choosing to pick [[Brett Favre]] ein future replacement cam be one of de biggest stories of de draft, though na he still be de second quarterback dem select. Na ein drop insyd de draft later be ranked number one on de NFL Network ein Top 10 Draft Day Moments.<ref>{{Cite web |last=Currie |first=David |date=April 27, 2017 |title=NFL Draft: Top 10 Moments – Aaron Rodgers falling to Tim Tebow trade |url=https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |url-status=live |archive-url=https://web.archive.org/web/20200727131640/https://www.skysports.com/nfl/news/12119/9829525/nfl-draft-top-10-moments-from-missed-picks-to-long-waits |archive-date=July 27, 2020 |access-date=September 13, 2019 |website=Sky Sports}}</ref> Chaw teams wey dey draft between de second den 23rd positions get positional needs more pressing dan quarterback.<ref name="ESPN Column">{{Cite web |last=Clayton |first=John |date=April 23, 2005 |title=Clayton: Waiting is the hardest part |url=https://www.espn.com/nfl/draft05/columns/story?columnist=clayton_john&id=2044646 |url-status=live |archive-url=https://web.archive.org/web/20160702194839/http://espn.go.com/nfl/draft05/columns/story?id=2044646&columnist=clayton_john |archive-date=July 2, 2016 |access-date=April 27, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |title=2005 NFL Draft Listing |url=https://www.pro-football-reference.com/years/2005/draft.htm |url-status=live |archive-url=https://web.archive.org/web/20170921001516/https://www.pro-football-reference.com/years/2005/draft.htm |archive-date=September 21, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers be one of six quarterbacks wey [[Jeff Tedford]] coach to be drafted insyd de first round of an NFL draft, joining [[Trent Dilfer]], [[Akili Smith]], [[David Carr (American football)|David Carr]], [[Joey Harrington]] den [[Kyle Boller]].<ref>{{Cite news|last=Greenberg|first=Steve|date=November 20, 2012|title=Jeff Tedford developed Aaron Rodgers, but recent QBs struggled|work=Sporting News|url=http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|url-status=live|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20161230042613/http://www.sportingnews.com/ncaa-football/news/4333266-jeff-tedford-fired-cal-aaron-rodgers-trent-dilfer-joey-harrington-kyle-boller|archive-date=December 30, 2016}}</ref>
=== Green Bay Packers ===
==== Backup years: 2005–2007 ====
Insyd August 2005, Rodgers agree to a reported five-year, $7.7 million deal wey include $5.4 million in guaranteed money wey e get de potential to pay am as much as $24.5 million if na dem meet all incentives den escalators.<ref name="Sportrac Contract">{{Cite web |title=Aaron Rodgers Contract Breakdown |url=https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |url-status=live |archive-url=https://web.archive.org/web/20210506052810/https://www.spotrac.com/nfl/green-bay-packers/aaron-rodgers-3745/transactions/ |archive-date=May 6, 2021 |access-date=November 15, 2021 |website=Spotrac.com |language=en-US}}</ref>
Rodgers spend ein rookie season as de Packers dema backup quarterback behind Brett Favre.<ref>{{Cite web |title=2005 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2005.htm |url-status=live |archive-url=https://web.archive.org/web/20211107183417/https://www.pro-football-reference.com/teams/gnb/2005.htm |archive-date=November 7, 2021 |access-date=December 8, 2019 |website=[[Pro Football Reference]]}}</ref> Na de Packers be 4–12 at dis point wey he receive ein first extended look insyd de opening preseason game against de San Diego Chargers after replacing Favre.<ref name="Chargers Vs Packers 2005 Preseason">{{Cite web |date=August 11, 2005 |title=Favre completes nine of 10 passes for 91 yards, TD |url=http://scores.espn.go.com/nfl/recap?gameId=250811009 |archive-url=https://web.archive.org/web/20180127084112/https://www.espn.com/nfl/recap?gameId=250811009 |archive-date=January 27, 2018 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd ein first NFL game, Rodgers plete two out of seven passes wey na dem sack am twice. He continue to struggle thru de preseason, before ending de preseason by converting two third downs den throwing a touchdown pass to tight end [[Ben Steele]] against de Tennessee Titans.<ref name="GB Vs Tennesee">{{Cite web |date=September 1, 2005 |title=Green Bay 21, Tennessee 17 |url=http://scores.espn.go.com/nfl/recap?gameId=250901010 |url-status=dead |archive-url=https://web.archive.org/web/20131105175854/http://scores.espn.go.com/nfl/recap?gameId=250901010 |archive-date=November 5, 2013 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Once de regular season begin, Rodgers see very little action dat year. He play against de New Orleans Saints insyd de fourth quarter of a 52–3 victory, wey he plete ein first career pass to fullback [[Vonta Leach]] for 0 yards.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> On {{nowrap|December 19, 2005,}} Rodgers enter de game against de Baltimore Ravens at de end of de third quarter insyd a 48–3 loss.<ref name="Green Bay Bio" /> He plete eight of 15 passes for 65 yards den an interception.<ref name="Packers Vs. Ravens 2005">{{Cite web |date=December 20, 2005 |title=Boller outplays Favre in Ravens' rout of Packers |url=http://scores.espn.go.com/nfl/recap?gameId=251219033 |url-status=dead |archive-url=https://web.archive.org/web/20121023103816/http://scores.espn.go.com/nfl/recap?gameId=251219033 |archive-date=October 23, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref>
After de Packers dema losing season, na dem fire den replace head coach [[Mike Sherman]] by [[Mike McCarthy]].<ref name="Packers Fire Sherman">{{Cite news|date=January 2, 2006|title=Packers fire coach Mike Sherman|work=Yahoo! Sports|url=https://sports.yahoo.com/nfl/news?slug=packerssherman|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20140426105024/https://sports.yahoo.com/nfl/news?slug=packerssherman|archive-date=April 26, 2014}}</ref><ref name="Packers to hire 49ers">{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=January 12, 2006 |title=Packers to hire 49ers' McCarthy as coach |url=https://www.espn.com/nfl/news/story?id=2288985 |url-status=live |archive-url=https://web.archive.org/web/20121014050433/http://sports.espn.go.com/nfl/news/story?id=2288985 |archive-date=October 14, 2012 |access-date=May 11, 2012 |website=[[ESPN.com]]}}</ref> Rodgers then be placed insyd McCarthy ein "Quarterback school" for six hours a day several times a week.<ref name="Journal Sentinel">{{Cite web |last=Silverstein |first=Tom |date=September 7, 2008 |title=The Education of Aaron Rodgers |url=http://www.jsonline.com/sports/packers/32579374.html |url-status=live |archive-url=https://web.archive.org/web/20101223123643/http://www.jsonline.com/sports/packers/32579374.html |archive-date=December 23, 2010 |access-date=May 11, 2012 |website=Milwaukee Journal Sentinel}}</ref> Dis focus on working on Rodgers ein motor skills such as hand-eye coordination, finger dexterity, den mechanics.<ref name="New York Times QB School">{{Cite news|last=Bishop|first=Greg|date=December 2, 2011|title=The Education of a Quarterback|work=The New York Times|url=https://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|url-status=live|access-date=May 11, 2012|archive-url=https://web.archive.org/web/20120501123445/http://www.nytimes.com/2011/12/03/sports/football/the-education-of-the-packers-aaron-rodgers.html|archive-date=May 1, 2012}}</ref> McCarthy sanso work on Rodgers ein release point, moving am from right beside de ear hole of ein helmet to further below am, to give am a smoother release.<ref name="Aaron Rodgers Leader of The Pack">{{Cite book |last=Reischel |first=Rob |title=Aaron Rodgers: Leader of the Pack: An Intimate Portrait of a Super Bowl MVP |date=March 1, 2011 |publisher=Triumph Books |isbn=978-1-60078-645-7 |language=English}}</ref> Wen de 2006 preseason begin, Rodgers play as de backup insyd all four games; he plete 22 out 38 passes for 323 yards den three touchdowns.<ref name="Green Bay Bio">{{Cite web |title=Aaron Rodgers |url=http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |url-status=live |archive-url=https://web.archive.org/web/20180526022654/http://www.packers.com/team/roster/Aaron-Rodgers/fe1a862d-b24a-4123-b43e-c116b59395cc |archive-date=May 26, 2018 |access-date=May 11, 2012 |website=Green Bay Packers}}</ref> Rodgers see very little action during de 2006 season, buh did step insyd briefly on {{nowrap|October 2}} against de Philadelphia Eagles wen Favre lef de game secof injury.<ref name="Green Bay Bio" /> On {{nowrap|November 19, 2006,}} Rodgers break ein left foot while playing against de New England Patriots insyd a 35–0 defeat at home, filling insyd for an injured Favre, wey Rodgers miss de remainder of de 2006 season.<ref name="Journal Sentinel" />
Following de team ein season-ending victory at Chicago, Favre announce say he go stay plus de Packers for de 2007 season, again postponing Rodgers ein hopes of becoming de Packers dema starting quarterback.<ref name="Favre">{{Cite web |last=Silverstein |first=Tom |date=January 7, 2007 |title=Favre leaves lasting impression |url=http://www.jsonline.com/news/milwaukee/29212859.html |url-status=dead |archive-url=https://web.archive.org/web/20120908152601/http://www.jsonline.com/news/milwaukee/29212859.html |archive-date=September 8, 2012 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref> Prior to de 2007 season, rumors surface about a potential trade involving Rodgers insyd wich he go be traded to de Oakland Raiders for wide receiver [[Randy Moss]].<ref>{{Cite web |date=March 18, 2007 |title=Packers GM insists QB Rodgers not on trading block |url=https://www.espn.com/nfl/news/story?id=2803272 |url-status=live |archive-url=https://web.archive.org/web/20121107040642/http://sports.espn.go.com/nfl/news/story?id=2803272 |archive-date=November 7, 2012 |access-date=December 30, 2010 |website=[[ESPN.com]]}}</ref> However, Moss be traded to de Patriots during de second day of de 2007 NFL draft, wey Rodgers stay insyd Green Bay.<ref>{{Cite web |last=Pasquarelli |first=Len |author-link=Len Pasquarelli |date=April 29, 2007 |title=Pats acquire WR Moss from Raiders for draft pick |url=https://www.espn.com/nfl/draft07/news/story?id=2853116 |url-status=live |archive-url=https://web.archive.org/web/20171229132248/http://www.espn.com/nfl/draft07/news/story?id=2853116 |archive-date=December 29, 2017 |access-date=January 1, 2018 |website=[[ESPN.com]]}}</ref>
Rodgers step in wen na Favre injure insyd de second quarter against de Dallas Cowboys on ''Thursday Night Football'' on {{nowrap|November 29, 2007}}.<ref name="Cowboys Versus Packers 2007">{{Cite web |date=November 30, 2007 |title=Cowboys hold off Favre-less Packers to clinch playoff berth |url=http://scores.espn.go.com/nfl/recap?gameId=271129006 |url-status=dead |archive-url=https://web.archive.org/web/20121111035600/http://scores.espn.go.com/nfl/recap?gameId=271129006 |archive-date=November 11, 2012 |access-date=May 12, 2012 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers plete 18 passes for 201 yards, plus no interceptions.<ref name="Cowboys Versus Packers 2007" /> He sanso throw ein first touchdown pass buh na he be sacked three times.<ref name="Cowboys Versus Packers 2007" /> Rodgers bring de team back from a 17-point deficit to a 3-point deficit, buh de Cowboys go on to win 37–27.<ref name="Cowboys Versus Packers 2007" />
==== 2008: Transition to starter ====
[[File:AaronRodgers.jpg|left|thumb|Rodgers going down de tunnel at Lambeau Field insyd 2008]]
Favre ein retirement announcement on {{nowrap|March 4, 2008,}} open up de Packers dema starting quarterback position to Rodgers for de 2008 season. Although Favre decide to return from retirement, he be traded to de New York Jets, wich mean say Rodgers go cam be de starter.<ref>{{Cite web |last=Nickel |first=Lori |date=March 9, 2008 |title=Rodgers preparing to assume control |url=http://www.jsonline.com/story/index.aspx?id=726140 |url-status=dead |archive-url=https://web.archive.org/web/20081007044908/http://www.jsonline.com/story/index.aspx?id=726140 |archive-date=October 7, 2008 |access-date=May 12, 2012 |website=Milwaukee Journal Sentinel}}</ref>
Rodgers quickly prove say na he be one of de best quarterbacks insyd de league by passing for 4,038 yards insyd ein first season as a starter as well as throwing for 28 touchdowns den only 13 interceptions. As of de 2025 season, dis still dey stand as de most interceptions he throw insyd a season.<ref>{{Cite web |title=Aaron Rodgers 2008 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |url-status=live |archive-url=https://web.archive.org/web/20180313183821/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2008/ |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Plus Rodgers making ein debut as a starter, de Packers beat de Minnesota Vikings 24–19 at Lambeau Field. Dis mark de first time since 1992 wey a quarterback oda dan Favre start a regular season game give de Packers. Rodgers end de game plus 178 yards passing den two touchdowns (one passing den one rushing).<ref name="Rodgers Debut">{{Cite web |last=Jenkins |first=Chris |date=September 10, 2008 |title=Solid debut frees Rodgers from post-Favre scrutiny |url=http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |url-status=live |archive-url=https://web.archive.org/web/20130921062040/http://usatoday30.usatoday.com/sports/football/2008-09-10-3743073550_x.htm |archive-date=September 21, 2013 |access-date=May 13, 2012 |website=USA Today |agency=Associated Press}}</ref> Insyd just ein second NFL start de following week, na dem vote Rodgers de FedEx Air award winner after passing for 328 yards den three touchdowns insyd a win against de Lions.<ref name="FedEx Air and Ground Winners Week 2 2008">{{Cite web |date=September 20, 2008 |title=FedEx Air and Ground Week 2 2008 Winners |url=http://www.nfl.com/videos?videoId=09000d5d80af20df |url-status=live |archive-url=https://web.archive.org/web/20090108060338/http://www.nfl.com/videos?videoId=09000d5d80af20df |archive-date=January 8, 2009 |access-date=September 20, 2008 |website=NFL Network |publisher=National Football League}}</ref>
During de fourth week of de season, Rodgers ein streak of 157 consecutive pass attempts widout an interception end wen na he be intercepted by [[Derrick Brooks]] of de Tampa Bay Buccaneers. Na de streak be de third-longest insyd franchise history behind [[Bart Starr]] (294) den Brett Favre (163).<ref name="Buccaneers">{{Cite web |date=September 29, 2008 |title=Buccaneers' defense rattles Rodgers in win over Packers |url=http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081001100738/http://www.nfl.com/gamecenter/recap?game_id=29582&displayPage=tab_recap&season=2008&week=REG4&override=true |archive-date=October 1, 2008 |access-date=September 29, 2008 |publisher=National Football League}}</ref> Rodgers suffer a severe shoulder sprain insyd de game buh he continue to start den play well insyd a win against de Seattle Seahawks two weeks later.<ref name="Rodgers">{{Cite web |last=Jenkins |first=Chris |date=December 26, 2008 |title=Packers' Rodgers learns lessons from trying season |url=http://seattletimes.nwsource.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-url=https://web.archive.org/web/20150226064522/http://old.seattletimes.com/html/sports/2008562174_apfbnpackersrodgersreflects.html |archive-date=February 26, 2015 |access-date=May 13, 2012 |website=The Seattle Times}}</ref> Despite early successes, Rodgers be unable to win a close game during de season despite seven opportunities to do so.<ref name="Rodgers" /><ref name="Bears cap unlikely rally with OT win to stay alive in playoff race">{{Cite web |date=December 23, 2008 |title=Bears cap unlikely rally with OT win to stay alive in playoff race |url=http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |url-status=dead |archive-url=https://web.archive.org/web/20081225222724/http://www.nfl.com/gamecenter/recap?game_id=29767&displayPage=tab_recap&season=2008&week=REG16&override=true |archive-date=December 25, 2008 |access-date=December 23, 2008 |publisher=National Football League |agency=Associated Press}}</ref>
On {{nowrap|October 31, 2008}}, Rodgers sign a six-year, {{nowrap|$65 million}} contract extension thru de 2014 season.<ref name="Packers Sign Rodgers Through 2014">{{Cite web |date=October 31, 2008 |title=Packers sign QB Rodgers to $65M extension through 2014 |url=https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |url-status=live |archive-url=https://web.archive.org/web/20201204181536/https://www.nfl.com/news/packers-sign-qb-rodgers-to-65m-extension-through-2014-09000d5d80c1a549 |archive-date=December 4, 2020 |access-date=April 27, 2022 |publisher=National Football League |language=en-US |agency=Associated Press}}</ref><ref name="Contracts: Rodgers vs. Romo">{{Cite web |last=Silverstein |first=Tom |date=November 5, 2008 |title=Contracts: Rodgers vs. Romo |url=http://www.jsonline.com/sports/packers/33941369.html |url-status=live |archive-url=https://web.archive.org/web/20081205152249/http://www.jsonline.com/sports/packers/33941369.html |archive-date=December 5, 2008 |access-date=November 6, 2008 |website=JSOnline |publisher=Milwaukee Journal-Sentinel}}</ref> Insyd Rodgers ein first full season plus de team, de Packers fini plus a 6–10 record wey dem miss de playoffs.<ref>{{Cite web |title=2008 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2008.htm |url-status=live |archive-url=https://web.archive.org/web/20180907044946/https://www.pro-football-reference.com/teams/gnb/2008.htm |archive-date=September 7, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2009 ====
For de opening game of de 2009 season, Rodgers record ein first win insyd a comeback situation. Na de Packers dey trail at de beginning of de fourth quarter wen Rodgers plete a fifty-yard touchdown pass to wide receiver [[Greg Jennings]] plus about a minute remaining insyd de game to contribute to de 21–15 victory over de Chicago Bears.<ref>{{Cite web |last=Jenkins |first=Chris |date=December 8, 2019 |title=Rodgers brings Pack back for 21–15 win over Bears |url=https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |url-status=dead |archive-url=https://web.archive.org/web/20191208022530/https://www.hollandsentinel.com/article/20090914/NEWS/309149882 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Holland Sentinel}}</ref>
Na dem name Rodgers NFC Offensive Player of de Month for {{nowrap|October 2009}}, wen he pass for 988 yards, he plete 74.5 percent of ein passes, wey he record a passer rating over 110 for all three games he play during de month.<ref name="Rodgers, Sharper, Knox win NFC player of month honors">{{Cite web |last=Rosenthal |first=Gregg |date=October 29, 2009 |title=Rodgers, Sharper, Knox win NFC player of month honors |url=http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |url-status=live |archive-url=https://web.archive.org/web/20140112100938/http://profootballtalk.nbcsports.com/2009/10/29/rodgers-sharper-knox-win-nfc-player-of-month-honors/ |archive-date=January 12, 2014 |access-date=May 13, 2012 |website=ProFootballTalk.com}}</ref>
After a 4–4 start to de season den a 38–28 loss to de previously winless Buccaneers,<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – November 8th, 2009 |url=https://www.pro-football-reference.com/boxscores/200911080tam.htm |url-status=live |archive-url=https://web.archive.org/web/20171108032603/https://www.pro-football-reference.com/boxscores/200911080tam.htm |archive-date=November 8, 2017 |access-date=November 4, 2017 |website=[[Pro Football Reference]]}}</ref> de team begin to heat up. Rodgers lead de Packers to five straight wins, insyd wich he throw for a total of 1,324 yards, nine touchdowns, den two interceptions.<ref>{{Cite web |title=Aaron Rodgers – Games 9–13 in 2009 |url=http://pfref.com/tiny/3NZjQ |url-status=live |archive-url=https://web.archive.org/web/20211201192346/https://stathead.com/tools/tiny.fcgi?id=3NZjQ |archive-date=December 1, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers win two of dema last three games, finishing de second half of de season plus a 7–1 record den an overall 11–5 record; good enough to secure a wild card playoff berth wey dem clinch de fifth seed insyd de playoffs.<ref>{{Cite web |title=Aaron Rodgers 2009 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180101211154/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2009/ |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2009 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2009.htm |url-status=live |archive-url=https://web.archive.org/web/20171115032207/https://www.pro-football-reference.com/teams/gnb/2009.htm |archive-date=November 15, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers set a new franchise record by scoring 461 total points (third insyd de league), breaking de previous record wey de 1996 Super Bowl team (456) hold.<ref>{{Cite web |title=2009 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2009/ |url-status=live |archive-url=https://web.archive.org/web/20180504033136/https://www.pro-football-reference.com/years/2009/ |archive-date=May 4, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=1996 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/1996/ |url-status=live |archive-url=https://web.archive.org/web/20100211094812/http://www.pro-football-reference.com/years/1996/ |archive-date=February 11, 2010 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers cam be de first quarterback insyd NFL history ever to throw for 4,000 yards insyd both of ein first two years as a starter.<ref name="Rodgers Proscout.com">{{Cite web |last=Huber |first=Bill |date=May 9, 2012 |title=Wisconsin Makes 12–12–12 'Aaron Rodgers Day' |url=http://gnb.scout.com/2/1185173.html |url-status=dead |archive-url=https://web.archive.org/web/20130701070113/http://gnb.scout.com/2/1185173.html |archive-date=July 1, 2013 |access-date=May 13, 2012 |work=Fox Sports}}</ref> He fini de season fourth insyd passing yards (4,434), touchdown passes (30), passer rating (103.2), den yards per attempt (8.2) as well as eighth insyd completion percentage (64.7%), while he sanso cam second among quarterbacks insyd rushing yards (316).<ref>{{Cite web |title=Quarterbacks by rushing yards, 2009 season |url=http://pfref.com/tiny/dkEhS |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=dkEhS |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Ein passing yardage make am second all-time insyd Packers history, behind only [[Lynn Dickey]] ein all-time single-season record.<ref>{{Cite web |title=Individual Records – Passing |url=http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |url-status=live |archive-url=https://web.archive.org/web/20210126102232/http://prod.static.packers.clubs.nfl.com/assets/docs/2010mediaguide_records.pdf#page=6 |archive-date=January 26, 2021 |access-date=January 8, 2011 |publisher=Packers.com}}</ref> Na ein passer rating of 103.2 sanso be third-highest insyd team history at de time, behind only [[Bart Starr]] ein 105.0 rating insyd 1966 den 104.3 rating insyd 1968 (minimum 150 attempts).<ref>{{Cite web |title=Green Bay Packers, 1950–2009, highest passer rating. |url=http://pfref.com/tiny/a4QtT |url-status=live |archive-url=https://web.archive.org/web/20211201192343/https://stathead.com/tools/tiny.fcgi?id=a4QtT |archive-date=December 1, 2021 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref>
[[File:Aaron_Rodgers_-_December_27,_2009_2.jpg|thumb|Rodgers insyd 2009, before a snap]]
Insyd de Wild Card Round, de Packers play de Arizona Cardinals, de same team wey na dem previously beat de week before, 33–7.<ref>{{Cite web |last=Baum |first=Bob |date=January 4, 2010 |title=Rodgers shreds Cardinals backups in 33–7 rout |url=https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208022718/https://www.sandiegouniontribune.com/sdut-rodgers-shreds-cardinals-backups-in-33-7-rout-2010jan03-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Rodgers den Cardinals quarterback [[Kurt Warner]] put on a show wey dem later rank second on NFL Network ein ''Top 10 Quarterback Duels''.<ref>{{Cite web |title=Top Ten Quarterback Duels |url=http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |url-status=live |archive-url=https://web.archive.org/web/20180101135801/http://www.nfl.com/videos/nfl-network-top-ten/0ap2000000273976/Top-Ten-Quarterback-Duels |archive-date=January 1, 2018 |access-date=January 1, 2018 |publisher=National Football League}}</ref> Na Rodgers ein first pass be intercepted by [[Dominique Rodgers-Cromartie]].<ref>{{Cite web |title=Wild Card – Green Bay Packers at Arizona Cardinals – January 10th, 2010 |url=https://www.pro-football-reference.com/boxscores/201001100crd.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003908/https://www.pro-football-reference.com/boxscores/201001100crd.htm |archive-date=August 21, 2017 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Rodgers settle down after dat miscue, however, wey he fini de game completing 28 of 42 passes for 423 yards, plus four touchdown passes all insyd a second-half comeback. Ein 423 passing yards be de most by any quarterback insyd ein first playoff game as well as ein four touchdown passes den five total touchdowns.<ref>{{Cite book |last=Cohen |first=Robert W. |url=https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |title=The 50 Greatest Players in Green Bay Packers History |date=September 1, 2018 |publisher=Rowman & Littlefield |isbn=9781493031894 |language=en |access-date=September 13, 2019 |archive-url=https://web.archive.org/web/20210203205326/https://books.google.com/books?id=1HleDwAAQBAJ&q=rodgers%2520423%2520first%2520playoff%2520game&pg=PA46 |archive-date=February 3, 2021 |url-status=live}}</ref> Warner shred de Packers dema second-ranked defense, completing 29 of 33 passes for 379 yards, five touchdowns, no interceptions, den a passer rating of 154.1. Despite Rodgers ein offensive efforts, de Packers loose de game wen he fumble on a controversial play insyd overtime. Na dem return de ball by [[Karlos Dansby]] for de winning touchdown insyd de 51–45 Cardinals victory.<ref>{{Cite news|last=Crouse|first=Karen|date=January 10, 2010|title=Cardinals' Defense Ends Shootout With Packers in Overtime|work=The New York Times|url=https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20190824010502/https://www.nytimes.com/2010/01/11/sports/football/11cardinals.html|archive-date=August 24, 2019}}</ref> Na e be de highest scoring playoff game insyd NFL history.<ref>{{Cite web |date=January 10, 2015 |title=Remembering The Day of the Highest Scoring Playoff Game in NFL History |url=http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |url-status=live |archive-url=https://web.archive.org/web/20191208022939/http://www.thepostgame.com/blog/throwback/201501/highest-scoring-playoff-game-nfl-history |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=ThePostGame.com}}</ref>
Secof ein regular season performance, Rodgers earn a trip to ein first Pro Bowl as de NFC ein third quarterback, behind [[Drew Brees]] den Brett Favre. However, after Favre drop out secof injury wey Brees replace am secof ein participation insyd Super Bowl XLIV, Rodgers cam be de NFC ein starter.<ref>{{Cite web |title=2009 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2009/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180821031640/https://www.pro-football-reference.com/years/2009/probowl.htm |archive-date=August 21, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
==== 2010: Super Bowl XLV season ====
Insyd 2010, Rodgers lead de Packers to a 2–0 start, buh then dem loose three of dema next four games, wey dey include back-to-back overtime losses. De two overtime defeats bring Rodgers ein record insyd overtime games to 0–5.<ref>{{Cite web |title=2010 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2010.htm |url-status=live |archive-url=https://web.archive.org/web/20180313175307/https://www.pro-football-reference.com/teams/gnb/2010.htm |archive-date=March 13, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
At midseason, Rodgers already throw nine interceptions dem compare to only throwing seven all of de previous season, wey na he be 16th insyd de league plus an 85.3 passer rating.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 1–8 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#40-47-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Over de remainder of de regular season, however, ein play improve as he throw 16 touchdowns to only two interceptions, he plete 71.4% of ein passes, wey he get a passer rating of 122.0.<ref>{{Cite web |title=Aaron Rodgers, 2010, games 9–16 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161220230909/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2010/#48-54-sum:stats |archive-date=December 20, 2016 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref>
Insyd {{nowrap|Week 13}}, insyd a 34–16 victory over de San Francisco 49ers, Rodgers get 298 passing yards den three touchdowns to earn ein first career NFC Offensive Player of de Week honor.<ref>{{Cite web |title=AP Game Story: Packers Topple 49ers, 34–16 |url=https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |url-status=live |archive-url=https://web.archive.org/web/20191208221408/https://www.packers.com/news/ap-game-story-packers-topple-49ers-34-16-3110714 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=packers.com}}</ref><ref>{{Cite web |title=2010 NFL Week 13 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_13.htm |url-status=live |archive-url=https://web.archive.org/web/20180319084545/https://www.pro-football-reference.com/years/2010/week_13.htm |archive-date=March 19, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd {{nowrap|Week 14}}, he sustain ein second concussion of de season. Na dem put backup [[Matt Flynn (American football)|Matt Flynn]] into de game as Rodgers ein replacement. De Packers loose de game 7–3 to de Lions.<ref>{{Cite web |last=Lage |first=Larry |date=December 12, 2010 |title=Rodgers suffers concussion in Packers' 7–3 loss to Lions |url=https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |url-status=live |archive-url=https://web.archive.org/web/20191208023253/https://journaltimes.com/sports/rodgers-suffers-concussion-in-packers---loss-to-lions/article_24c36598-063c-11e0-aefa-001cc4c03286.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The Journal Times |agency=Associated Press}}</ref> Against de Patriots, Rodgers miss de next week ein regular season start, ending ein streak of consecutive starts at 45, wich be tied for de second longest insyd team history.<ref name="Green Bay Packers QB Matt Flynn has fine 1st road start">{{Cite web |author=<!-- not stated --> |date=June 16, 2015 |title=Matt Flynn has plenty to learn at minicamp as new Patriots backup QB |url=https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |url-status=live |archive-url=https://web.archive.org/web/20211206085002/https://www.foxsports.com/stories/nfl/matt-flynn-has-plenty-to-learn-at-minicamp-as-new-patriots-backup-qb |archive-date=December 6, 2021 |access-date=March 3, 2026 |website=Fox Sports |publisher= |location=}}</ref>
After dema road loss to de Patriots, de Packers find demaselves at 8–6 wey dem for win dema final two regular season games to qualify for de playoffs. Rodgers turn around de team ein performance; dem win dema final two regular season games, one of dem against de New York Giants, wer Rodgers plete 25 of 37 passes for 404 yards, plus four touchdown passes, den plus a passer rating of 139.9.<ref>{{Cite news|date=December 26, 2010|title=NFL: Rodgers, Packers hammer Giants|url=https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|url-status=live|archive-url=https://web.archive.org/web/20191208023159/https://www.nhregister.com/news/article/NFL-Rodgers-Packers-hammer-Giants-11611517.php|archive-date=December 8, 2019|access-date=December 8, 2019|website=New Haven Register|agency=Associated Press}}</ref> Na e be ein first regular season 400-yard passing game. For ein effort against de Giants, he earn ein second NFC Offensive Player of de Week honor for de 2010 season.<ref>{{Cite web |title=2010 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2010/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002511/https://www.pro-football-reference.com/years/2010/week_16.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de next game, dem defeat de Bears by a score of 10–3 insyd de regular season finale.<ref name="Packers 10, Bears 3: Nothing Comes Easy">{{Cite web |last=Wilde |first=Jason |date=January 2, 2011 |title=Packers 10, Bears 3: Nothing Comes Easy |url=http://www.channel3000.com/sports/26347682/detail.html |url-status=dead |archive-url=https://web.archive.org/web/20110208054239/http://www.channel3000.com/sports/26347682/detail.html |archive-date=February 8, 2011 |access-date=January 24, 2011 |website=Channel3000.com}}</ref>
Na dem name Rodgers de FedEx Air NFL Player of de Year for ein passing performance insyd de 2010 season.<ref>{{Cite web |title=Aaron Rodgers voted FedEx Air NFL Player of the Year |url=http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |url-status=dead |archive-url=https://web.archive.org/web/20110225154931/http://www.packers.com/news-and-events/article-1/Aaron-Rodgers-Voted-FedEx-Air-NFL-Player-Of-The-Year/de736981-d76c-48d7-b86b-f29738dd1fbe |archive-date=February 25, 2011 |access-date=February 2, 2011 |publisher=Packers.com}}</ref>
[[File:Aaron_Rodgers_-_January_2,_2011_4.jpg|right|thumb|Rodgers dey greet de fans insyd Lambeau Field during de 2010 season ein finale against de Bears]]
Plus a 10–6 record, de Packers enter de playoffs as a Wild Card den de {{nowrap|No. 6}} seed. Insyd de Wild Card Round, dem defeat de {{nowrap|No. 3}} seeded Eagles 21–16.<ref>{{Cite web |date=January 9, 2011 |title=Rodgers, Packers Beat Eagles 21–16 |url=https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |url-status=live |archive-url=https://web.archive.org/web/20191208023430/https://newyork.cbslocal.com/2011/01/09/rodgers-packers-beat-eagles-21-16/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=CBS – New York}}</ref> Insyd de Divisional Round, Rodgers plete 31 of 36 pass attempts for 366 yards den four touchdowns insyd a 48–21 blowout victory over de {{nowrap|No. 1}} seeded Atlanta Falcons.<ref>{{Cite news|last=Newberry|first=Paul|date=January 16, 2011|title=Rodgers stars in Green Bay's 48–21 rout of Falcons|publisher=AP via Yahoo Sports|url=https://sports.yahoo.com/nfl/recap?gid=20110115001|url-status=live|access-date=January 24, 2011|archive-url=https://web.archive.org/web/20110119180042/https://sports.yahoo.com/nfl/recap?gid=20110115001|archive-date=January 19, 2011}}</ref> Na e be de most points dem score insyd Packers postseason history.<ref>{{Cite web |title=Green Bay Packers Playoff History |url=https://www.pro-football-reference.com/teams/gnb/playoffs.htm |url-status=live |archive-url=https://web.archive.org/web/20161220082023/http://www.pro-football-reference.com/teams/gnb/playoffs.htm |archive-date=December 20, 2016 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> During de contest, Rodgers tie an NFL record for consecutive playoff games plus at least three touchdown passes (3 games). Rodgers sanso set an NFL record by becoming de only quarterback to pass for ten touchdowns dem combine thru three consecutive playoff games. On {{nowrap|January 23, 2011,}} Rodgers get a 55.4 passer rating as de Packers beat de {{nowrap|No. 2}} seed Chicago Bears 21–14 win insyd de NFC Championship.<ref>{{Cite news|date=January 23, 2011|title=NFC championship: Aaron Rodgers leads Packers past Bears 21–14|work=East Bay Times|agency=Associated Press|url=https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|url-status=live|access-date=September 13, 2019|archive-url=https://web.archive.org/web/20200724211418/https://www.eastbaytimes.com/2011/01/23/nfc-championship-aaron-rodgers-leads-packers-past-bears-21-14/|archive-date=July 24, 2020}}</ref>
After winning de NFC Championship, de Packers earn a trip to Super Bowl XLV against de Pittsburgh Steelers. Insyd de game, Rodgers plete 24 of 39 pass attempts for 304 yards den three touchdowns insyd de 31–25 win, wey na dem name am Super Bowl MVP for ein performance.<ref name="Layden2011">{{Cite magazine|last=Layden|first=Tim|date=February 14, 2011|title=Green And Golden: Behind the poise and precision of quarterback Aaron Rodgers and the gutsy contributions of a host of role players, the Packers burnished their championship legacy with a memorable 31—25 victory over Pittsburgh in Super Bowl XLV|url=http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|url-status=dead|archive-url=https://web.archive.org/web/20131029203436/http://sportsillustrated.cnn.com/vault/article/magazine/MAG1181765/index.htm|archive-date=October 29, 2013|access-date=February 11, 2011|magazine=Sports Illustrated}}</ref><ref>{{Cite web |date=February 6, 2011 |title=Aaron Rodgers tosses 3 TD passes as Packers drop Steelers to win Super Bowl XLV |url=http://espn.go.com/nfl/recap?gameId=310206009 |url-status=dead |archive-url=https://web.archive.org/web/20110225151826/http://espn.go.com/nfl/recap?gameId=310206009 |archive-date=February 25, 2011 |access-date=February 7, 2011 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Dis ultimately go be ein only Super Bowl appearance plus de Packers.
From ein playoff performance, Rodgers cam be only se third player insyd NFL history to pass for over 1,000 yards insyd a single postseason wey he sanso cam be one of only four quarterbacks to record over 300 yards passing, plus at least three touchdown passes, den no interceptions insyd a Super Bowl.<ref>{{Cite web |title=Super Bowl, 300+ pass yds, 3+ TD, 0 Int |url=http://pfref.com/tiny/1posa |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=1posa |archive-date=December 1, 2021 |access-date=December 7, 2016 |website=[[Pro Football Reference]]}}</ref> He fini plus 1,094 passing yards, nine touchdown passes, two rushing touchdowns, den two interceptions, while completing 68.2% of ein passes for a passer rating of 109.8.<ref>{{Cite web |title=Aaron Rodgers Career Playoff Stats |url=https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |url-status=live |archive-url=https://web.archive.org/web/20220427191344/https://www.statmuse.com/nfl/ask/aaron-rodgers-career-playoff-stats |archive-date=April 27, 2022 |access-date=April 27, 2022 |website=StatMuse |language=en}}</ref> From dis postseason, Rodgers sanso cam be de only player to pass for at least 900 yards den rush for at least two touchdowns insyd a single postseason.<ref>{{Cite web |title=Playoffs, 900+ pass yds, 2 rush TDs |url=https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |url-status=live |archive-url=https://web.archive.org/web/20200728195759/https://www.pro-football-reference.com/play-index/tiny.fcgi?id=849Td |archive-date=July 28, 2020 |access-date=December 12, 2016 |website=[[Pro Football Reference]]}}</ref> Na dem rank am 11th by ein fellow players on de ''NFL Top 100'' Players of 2011.<ref>{{Cite web |title=2011 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20210308170627/https://www.pro-football-reference.com/awards/2011-nfl-top-100.htm |archive-date=March 8, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2011: First MVP ====
[[File:Aaron_Rodgers_drops_back_(cropped).jpg|thumb|Rodgers dey drop back for a pass insyd 2011.]]
Secof de 2011 NFL lockout, de Packers den Rodgers no schedule unofficial off-season workouts, despite chaw teams doing so.<ref name="allgbp">{{Cite web |last=Burke |first=Kris |date=July 2, 2011 |title=No Workouts? No Problem for the Packers |url=http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-url=https://web.archive.org/web/20161229101517/http://allgbp.com/2011/07/02/no-workouts-no-problem-for-the-packers/ |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=All Green Bay Packers}}</ref> Rodgers den de Packers quickly quel any concerns over dema readiness by defeating de Saints, wey schedule off-season workouts, 42–34. He get 312 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 8, 2011 |title=Rodgers throws 3 TDs, Packers outlast Saints 42–34 |url=https://www.dailyherald.com/article/20110908/sports/709089632/ |url-status=live |archive-url=https://web.archive.org/web/20191208023757/https://www.dailyherald.com/article/20110908/sports/709089632/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Daily Herald |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 1 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_1.htm |url-status=live |archive-url=https://web.archive.org/web/20180830192658/https://www.pro-football-reference.com/years/2011/week_1.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> After de game, Rodgers say insyd de press conference, ''"I was going to ask myself, what would have happened if we had offseason workouts? I mean, could we have started any faster and scored more points tonight?"''<ref>{{Cite web |last=Darlington |first=Jeff |date=May 25, 2016 |title=Drew Brees' absence no big deal, but July 16 deadline looms |url=https://www.nfl.com/news/drew-brees-absence-no-big-deal-but-july-16-deadline-looms-09000d5d82956d8b |url-status=live |archive-url=https://web.archive.org/web/20161208145630/http://www.nfl.com/news/story/09000d5d82956d8b/article/drew-brees-absence-no-big-deal-but-july-16-deadline-looms |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref>
Insyd Week 4, a 49–23 victory over de Denver Broncos, Rodgers get 408 passing yards, four touchdowns, den one interception wey he run for two touchdowns to earn anoda NFC Offensive Player of de Week honor.<ref>{{Cite web |date=October 2, 2011 |title=Rodgers' big day helps Packers beat Broncos 49–23 |url=https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |url-status=live |archive-url=https://web.archive.org/web/20191208025355/https://www.duluthnewstribune.com/sports/2314618-rodgers-big-day-helps-packers-beat-broncos-49-23 |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Duluth News Tribune}}</ref><ref>{{Cite web |title=2011 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180401100045/https://www.pro-football-reference.com/years/2011/week_4.htm |archive-date=April 1, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, a 24–3 victory over de St. Louis Rams, Rodgers convert on a career-high 93-yard touchdown pass to [[Jordy Nelson]].<ref>{{Cite web |last=Jenkins |first=Chris |date=October 16, 2011 |title=Packers stay perfect at 6–0, beat Rams 24–3 |url=http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |url-status=live |archive-url=https://web.archive.org/web/20181211010230/http://archive.sltrib.com/article.php?id=52728156&itype=cmsid |archive-date=December 11, 2018 |access-date=December 10, 2018 |website=The Salt Lake Tribune}}</ref> Insyd Week 9, a 45–38 victory over de Chargers, he get 247 passing yards den four touchdowns to earn ein third NFC Offensive Player of de Week honor for de 2011 season.<ref>{{Cite web |date=November 6, 2011 |title=Packers survive Chargers' late push as Aaron Rodgers delivers again |url=https://www.espn.com/nfl/game?gameId=311106024 |url-status=live |archive-url=https://web.archive.org/web/20191210232803/https://www.espn.com/nfl/game?gameId=311106024 |archive-date=December 10, 2019 |access-date=December 8, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref><ref>{{Cite web |title=2011 NFL Week 9 Leaders & Scores |url=https://www.pro-football-reference.com/years/2011/week_9.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231451/https://www.pro-football-reference.com/years/2011/week_9.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers den de Packers get off to a 13–0 start insyd 2011, tying de NFC record for most consecutive wins to start a season, buh na dem be upset by de Kansas City Chiefs 19–14 insyd week 15, ending dema winning streak at 19 games, de second-longest winning streak insyd NFL history.<ref>{{Cite web |title=Green Bay Packers at Kansas City Chiefs – December 18th, 2011 |url=https://www.pro-football-reference.com/boxscores/201112180kan.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211142/https://www.pro-football-reference.com/boxscores/201112180kan.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2011.htm |url-status=live |archive-url=https://web.archive.org/web/20171115033715/https://www.pro-football-reference.com/teams/gnb/2011.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de season plus 4,643 passing yards, 45 touchdown passes, den six interceptions, good for a passer rating of 122.5, wich as of 2024 be de highest single-season passer rating insyd NFL history.<ref>{{Cite web |title=Aaron Rodgers 2011 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |url-status=live |archive-url=https://web.archive.org/web/20180101135748/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2011 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Ein passing yards, touchdown passes, den passer rating set single-season franchise records.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to passer rating, Rodgers lead de league insyd touchdown to interception ratio (7.5, fourth-best all-time), touchdowns passing % (9.0%, second highest all-time), den yards per attempt (9.2, fourth-highest all-time since becoming an official stat insyd 1970), while finishing second insyd both touchdown passes (45, sixth-highest all-time) den completion percentage (68.3%), as well as fifth insyd passing yards. He earn NFC Offensive Player of de Month awards for September, October, den November, den FedEx Air Player of de Week six times (Weeks 4, 5, 6, 7, 9, den 13). Insyd week four, against de Denver Broncos, Rodgers cam be de only quarterback insyd NFL history to record over 400 passing yards plus four touchdown passes, while sanso dey rush for two touchdowns insyd de same game.<ref>{{Cite web |title=List of players with at least 400 passing yards, four passing touchdowns, and two rushing touchdowns in a single game. NFL history |url=http://pfref.com/tiny/Io0Od |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=Io0Od |archive-date=December 1, 2021 |access-date=December 6, 2016 |website=[[Pro Football Reference]]}}</ref> Na he de winner of de 2011 Galloping gobbler as MVP of de Thanksgiving game between de Packers den de Lions, a 27–15 Green Bay victory, wey he tie an NFL record for consecutive games plus at least two touchdown passes (13).
De Packers cam be de fifth team insyd NFL history to finish de regular season plus a 15–1 record.<ref>{{Cite web |last=Kruse |first=Zach |date=January 2, 2012 |title=Green Bay Packers Are 5th 15–1 Team in NFL History: How Did the First 4 Finish? |url=https://bleacherreport.com/articles/1007036-green-bay-packers-are-5th-15-1-team-in-nfl-history-how-did-the-first-4-finish |access-date=May 30, 2024 |website=Bleacher Report |language=en}}</ref> Rodgers play insyd 15 of de 16 games, plus de only exception be Week 17 against de Lions, a game insyd wich Rodgers be rested after de club clinched home-field advantage for de playoffs de previous week. Insyd de game, Rodgers assist backup quarterback Matt Flynn insyd ein stellar 480-yard, six-touchdown performance by helping call some plays.<ref>{{Cite web |last=Samano |first=Simon |date=January 1, 2012 |title=Rodgers preps Flynn, calls plays during backup QB's big day |url=https://www.nfl.com/news/rodgers-preps-flynn-calls-plays-during-backup-qb-s-big-day-09000d5d825a02db |url-status=live |archive-url=https://web.archive.org/web/20190829082359/http://www.nfl.com/news/story/09000d5d825a02db/article/rodgers-preps-flynn-calls-plays-during-backup-qbs-big-day |archive-date=August 29, 2019 |access-date=September 13, 2019 |publisher=National Football League}}</ref> De Packers dema offense set franchise record for points scored insyd a season plus 560, wich as of 2016 be de third-most ever behind only de 2007 Patriots den 2013 Broncos.<ref>{{Cite web |title=All Time Most Points Scored by an NFL Team in a Season |url=https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-url=https://web.archive.org/web/20130802114230/https://www.sportingcharts.com/stats/nfl/all-time/most-points-scored-by-an-nfl-team-in-a-season.aspx |archive-date=August 2, 2013 |access-date=December 6, 2016 |website=Sporting Charts}}</ref>
Rodgers set numerous NFL records insyd 2011. He record a passer rating of over 100.0 insyd thirteen games during de season, wey dey include twelve games in a row (both records), den a passer rating of 110.0 anaa higher insyd twelve games, wey dey include eleven in a row (sanso be records). Rodgers sanso win de league ein MVP award, receiving 48 of de 50 votes (de oda two dey go to [[Drew Brees]]). He sanso fini second, behind Brees, for de AP Offensive Player of de Year award.<ref>{{Cite web |date=February 4, 2012 |title=Saints' Brees wins AP Offensive Player of the Year award |url=https://www.nfl.com/news/saints-brees-wins-ap-offensive-player-of-the-year-award-09000d5d8269e4fe |url-status=live |archive-url=https://web.archive.org/web/20161208145625/http://www.nfl.com/news/story/09000d5d8269e4fe/article/saints-brees-wins-ap-offensive-player-of-the-year-award |archive-date=December 8, 2016 |access-date=December 6, 2016 |publisher=National Football League |agency=Associated Press}}</ref> Rodgers ein 2011 season later be ranked as de third greatest passing season of all time by ESPN insyd 2013, wey na he be regarded as de most efficient.<ref name="Efficient QBS">{{Cite web |last=Seifert |first=Kevin |date=October 3, 2013 |title=Top 10 greatest quarterback seasons |url=https://www.espn.com/blog/nflnation/post/_/id/90974/ |url-status=live |archive-url=https://web.archive.org/web/20141103072453/http://espn.go.com/blog/nflnation/post/_/id/90974/ |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref>
Na de Packers be upset by de eventual Super Bowl champion New York Giants insyd de Divisional Round by de score of 37–20. De Packers dema receiving corps drop six passes insyd de loss wey Rodgers fini de game plus 264 passing yards, two touchdown passes, den an interception on ein last pass attempt.<ref>{{Cite news|last=Wang|first=Gene|date=January 15, 2012|title=NFL playoffs 2012: New York Giants stun Green Bay Packers, 37–20|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|url-status=live|access-date=December 8, 2019|archive-url=https://web.archive.org/web/20180906090329/https://www.washingtonpost.com/sports/redskins/nfl-playoffs-2012-new-york-giants-stun-green-bay-packers-37-20/2012/01/15/gIQAORvp1P_story.html|archive-date=September 6, 2018}}</ref> De 2011 Packers cam be de only team insyd NFL history to go 15–1 wey dem no win a playoff game, as well as dem be de fourth consecutive team to win at least 15 games wey dem no win de Super Bowl.<ref>{{Cite web |last=Emery |first=Mark |date=January 26, 2016 |title=As Carolina Panthers prepare for Super Bowl 50, a look at the fates of six previous teams that won at least 15 in regular season |url=http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |url-status=live |archive-url=https://web.archive.org/web/20161214152104/http://www.nydailynews.com/sports/football/fates-previous-nfl-teams-won-15-plus-article-1.2510117 |archive-date=December 14, 2016 |access-date=December 12, 2016 |website=Daily News |location=New York}}</ref> Na dem name Rodgers to de Pro Bowl for ein 2011 season to go along plus a First-team All-Pro honor.<ref>{{Cite web |title=2011 NFL All-Pros |url=https://www.pro-football-reference.com/years/2011/allpro.htm |url-status=live |archive-url=https://web.archive.org/web/20180830185703/https://www.pro-football-reference.com/years/2011/allpro.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2011 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2011/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180830174119/https://www.pro-football-reference.com/years/2011/probowl.htm |archive-date=August 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> He be voted by ein fellow players as de best player insyd de league on de ''NFL Top 100'' Players of 2012.<ref>{{Cite web |title=2012 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190322201849/https://www.pro-football-reference.com/awards/2012-nfl-top-100.htm |archive-date=March 22, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2012 ====
Rodgers den de Packers start off de 2012 season plus a 30–22 loss to de 49ers.<ref>{{Cite web |last=Jenkins |first=Chris |date=September 10, 2012 |title=49ers stop Rodgers' rally, beat Packers 30–22 |url=https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025344/https://www.sandiegouniontribune.com/sdut-49ers-stop-rodgers-rally-beat-packers-30-22-2012sep09-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=The San Diego Union-Tribune}}</ref> Plus de loss, Rodgers loose ein bet plus de music group Boyz II Men, wey he for wear an Alex Smith jersey during de next week of practice.<ref name="boyz">{{Cite web |last=Hanzus |first=Dan |date=September 8, 2012 |title=Aaron Rodgers' head-scratching bet with Boyz II Men |url=https://www.nfl.com/news/aaron-rodgers-head-scratching-bet-with-boyz-ii-men-0ap1000000059772 |url-status=live |archive-url=https://web.archive.org/web/20161220224204/http://www.nfl.com/news/story/0ap1000000059772/article/aaron-rodgers-headscratching-bet-with-boyz-ii-men |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Had de Packers win de game, Boyz II Men go sing de national anthem during dema next home game at Lambeau.<ref name="boyz" />
Insyd Week 4, a 28–27 victory over de Saints, Rodgers get 319 passing yards, four touchdowns, den one interception to earn NFC Offensive Player of de Week.<ref>{{Cite web |date=September 28, 2012 |title=Rodgers throws late TD, Packers beat Saints 28–27 |url=https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |url-status=live |archive-url=https://web.archive.org/web/20191208025349/https://www.twincities.com/2012/09/28/rodgers-throws-late-td-packers-beat-saints-28-27/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Twin Cities Pioneer Press}}</ref><ref>{{Cite web |title=2012 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020203/https://www.pro-football-reference.com/years/2012/week_4.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de undefeated Houston Texans, he tie de franchise record by throwing six touchdown passes, insyd a 42–24 victory, to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Houston Texans – October 14th, 2012 |url=https://www.pro-football-reference.com/boxscores/201210140htx.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081312/https://www.pro-football-reference.com/boxscores/201210140htx.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2012 NFL Week 6 Leaders & Scores |url=https://www.pro-football-reference.com/years/2012/week_6.htm |url-status=live |archive-url=https://web.archive.org/web/20210308120125/https://www.pro-football-reference.com/years/2012/week_6.htm |archive-date=March 8, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> De Texans allow only six total touchdown passes during de season up to dat point.<ref>{{Cite web |title=2012 Houston Texans, opponent TD log |url=https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |url-status=live |archive-url=https://web.archive.org/web/20180724093239/https://www.pro-football-reference.com/teams/htx/2012.htm#all_opp_td_log |archive-date=July 24, 2018 |access-date=December 31, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dis spark a five-game winning streak wich Rodgers plete 65.7% of ein passes for 1,320 yards, 17 touchdowns, two interceptions, den a passer rating of 119.1.<ref>{{Cite web |title=Rodgers, 2012, games 6–10 |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227055845/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012/#75-79-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> During dat stretch, na dem name Rodgers NFC Offensive Player of de Month for October.<ref>{{Cite web |date=March 27, 2015 |title=Packers QB Rodgers leads group of NFC's best for October |url=https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |url-status=live |archive-url=https://web.archive.org/web/20200724202413/https://www.foxnews.com/sports/packers-qb-rodgers-leads-group-of-nfcs-best-for-october |archive-date=July 24, 2020 |access-date=September 13, 2019 |publisher=Fox News}}</ref> Insyd Week 15, Rodgers throw for 291 yards den three touchdowns to lead de Packers past de Bears, 21–13, making dem NFC North champions for de second consecutive year.<ref>{{Cite web |date=December 16, 2012 |title=Packers bounce Bears to clinch NFC North |url=https://www.wtsp.com/article/sports/nfl/packers-bounce-bears-to-clinch-nfc-north/67-376020825 |access-date=December 8, 2019 |publisher=WTSP}}</ref> Insyd de season finale, despite Rodgers go 28 of 40 for 365 yards, four touchdowns, no interceptions den a passer rating of 131.8, de Packers loose 37–34 against de Vikings.<ref>{{Cite web |date=December 30, 2012 |title=Vikings beat Packers 37–34, earn playoff berth |url=https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |url-status=live |archive-url=https://web.archive.org/web/20191208025350/https://www.heraldnet.com/sports/vikings-beat-packers-37-34-earn-playoff-berth/ |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=HeraldNet.com |agency=Associated Press}}</ref> Dis end de Packers dema twelve-game winning streak against NFC North opponents.
De Packers fini plus an 11–5 record, first insyd de NFC North, wey dem clinch de #3-seed insyd de NFC playoffs.<ref>{{Cite web |title=2012 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2012 |url-status=live |archive-url=https://web.archive.org/web/20180127072019/https://www.pro-football-reference.com/years/2012/ |archive-date=January 27, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers lead de league for de second straight year insyd passer rating (108.0) touchdowns passing % (7.1%), den touchdown-to-interception ratio (4.875), while finishing second insyd touchdown passes (39), third insyd completion percentage (67.2%), fifth insyd yards per attempt (7.78), den eighth insyd passing yards (4,295).<ref>{{Cite web |title=Aaron Rodgers 2012 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |url-status=live |archive-url=https://web.archive.org/web/20180101135930/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2012 |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd de playoffs, de Packers defeat de Minnesota Vikings 24–10 insyd de Wild Card Round. Rodgers plete 23 of 33 passes to ten different players for 274 yards den a touchdown.<ref>{{Cite web |date=January 5, 2013 |title=Ponder-less Vikings fall to Packers in wild-card game |url=https://www.nfl.com/news/ponder-less-vikings-fall-to-packers-in-wild-card-game-0ap1000000122612 |url-status=live |archive-url=https://web.archive.org/web/20191208025349/http://www.nfl.com/news/story/0ap1000000122612/printable/ponderless-vikings-fall-to-packers-in-wildcard-game |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=NFL.com}}</ref> De 49ers beat dema 45–31 insyd de Divisional Round.<ref>{{Cite web |last=Farmer |first=Sam |date=January 13, 2013 |title=NFC playoffs: 49ers topple Packers 45–31 |url=https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |url-status=live |archive-url=https://web.archive.org/web/20191208025348/https://www.chicagotribune.com/news/ct-xpm-2013-01-13-ct-spt-0113-packers-49ers-nfc-playoffs-20130113-story.html |archive-date=December 8, 2019 |access-date=December 8, 2019 |website=Chicago Tribune}}</ref> Rodgers plete 26 of 39 passes for 257 yards, two touchdowns, den an interception, while sanso dey rush for 28 yards, insyd de losing effort. He earn ein third career Pro Bowl nomination for ein performance insyd de 2012 season.<ref>{{Cite web |title=2012 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2012/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180316023449/https://www.pro-football-reference.com/years/2012/probowl.htm |archive-date=March 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2013.<ref>{{Cite web |title=2013 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200406154219/https://www.pro-football-reference.com/awards/2013-nfl-top-100.htm |archive-date=April 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2013 ====
On April 26, 2013, de Packers den Rodgers agree to a 5-year, $110 million contract extension wey dey make am de highest paid player insyd NFL history.<ref>{{Cite web |last1=Schefter |first1=Adam |last2=Mortensen |first2=Chris |date=April 26, 2013 |title=Source: Rodgers agrees to $110M extension |url=https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |url-status=live |archive-url=https://web.archive.org/web/20210414204446/https://www.espn.com/nfl/story/_/id/9215794/green-bay-packers-sign-aaron-rodgers-five-year-110-million-contract-extension-according-source |archive-date=April 14, 2021 |access-date=April 14, 2021 |website=[[ESPN.com]] |agency=Associated Press}}</ref> De Packers begin dema 2013 season against de reigning NFC champions, de 49ers, de team wey sanso end dema playoff run de previous season. Rodgers go 21 for 37 insyd completions, 333 yards, three touchdowns den an interception insyd de 34–28 loss.<ref>{{Cite web |title=Green Bay Packers at San Francisco 49ers – September 8th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309080sfo.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080800/https://www.pro-football-reference.com/boxscores/201309080sfo.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers get a career-high 480 passing yards to tie de franchise record insyd de 38–20 home-opener win against de Washington Redskins. He earn NFC Offensive Player of de Week for ein effort against de Redskins.<ref>{{Cite web |title=Washington Redskins at Green Bay Packers – September 15th, 2013 |url=https://www.pro-football-reference.com/boxscores/201309150gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081525/https://www.pro-football-reference.com/boxscores/201309150gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2013 NFL Week 2 Leaders & Scores |url=https://www.pro-football-reference.com/years/2013/week_2.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020211/https://www.pro-football-reference.com/years/2013/week_2.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 335 passing yards insyd de first half set a club record.<ref name="w930">{{cite web |last=Huber |first=Bill |date=September 15, 2013 |title=Monster Half Propels Rodgers to Record Day |url=https://247sports.com/nfl/green-bay-packers/Article/monster-half-propels-rodgers-to-record-day-105030089/ |access-date=October 23, 2024 |website=247Sports}}</ref> He sanso cam be de first quarterback since [[Y. A. Tittle]] insyd 1962 to throw for at least 480 yards, four touchdowns den no interceptions insyd a game.<ref>{{Cite web |title=480+ passing yards, 4+ passing touchdowns, no interceptions, NFL history |url=http://pfref.com/tiny/rQ3Cc |url-status=live |archive-url=https://web.archive.org/web/20211201192342/https://stathead.com/tools/tiny.fcgi?id=rQ3Cc |archive-date=December 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> De following week, Rodgers see ein NFL record of 41 consecutive games widout throwing multiple interceptions come to an end insyd a loss to de Cincinnati Bengals by de score of 34–30.<ref>{{Cite web |last=White |first=Scott |date=September 22, 2013 |title=Aaron Rodgers doesn't play usual mistake-free football |url=https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |url-status=live |archive-url=https://web.archive.org/web/20201025173245/https://www.cbssports.com/nfl/news/aaron-rodgers-doesnt-play-usual-mistake-free-football/ |archive-date=October 25, 2020 |access-date=September 13, 2019 |website=CBS Sports}}</ref><ref>{{Cite web |title=Green Bay Packers at Cincinnati Bengals – September 22nd, 2013 |url=https://www.pro-football-reference.com/boxscores/201309220cin.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081320/https://www.pro-football-reference.com/boxscores/201309220cin.htm |archive-date=August 29, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref>
After de loss to de Bengals, de Packers start rolling, winning dema next four games. Against de Ravens, de Packers loose two receivers: [[Randall Cobb (American football)|Randall Cobb]] den [[James Jones (wide receiver)|James Jones]]. Na Cobb be sidelined plus a broken leg den Jones plus a sprained PCL.<ref>{{Cite web |title=Green Bay Packers' Randall Cobb, James Jones injured |url=https://www.nfl.com/news/green-bay-packers-randall-cobb-james-jones-injured-0ap2000000261308 |url-status=live |archive-url=https://web.archive.org/web/20170722195052/http://www.nfl.com/news/story/0ap2000000261308/article/green-bay-packers-randall-cobb-james-jones-injured |archive-date=July 22, 2017 |access-date=September 13, 2019 |publisher=National Football League}}</ref> Against de Cleveland Browns, na dem cart tight end [[Jermichael Finley]] off de field plus a bruised spinal cord, leaving Rodgers widout three of ein top four offensive weapons.<ref>{{Cite web |last=Lee |first=Caroline |date=October 21, 2013 |title=Jermichael Finley, Packers tight end, in ICU with neck injury |url=https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |url-status=live |archive-url=https://web.archive.org/web/20190203150423/https://www.upi.com/blog/2013/10/21/Jermichael-Finley-Packers-tight-end-in-ICU-with-neck-injury/6991382371391/ |archive-date=February 3, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref> De next week against de Vikings, Rodgers plete 24 of 29 passes insyd a 44–31 victory.<ref>{{Cite web |title=Green Bay Packers at Minnesota Vikings – October 27th, 2013 |url=https://www.pro-football-reference.com/boxscores/201310270min.htm |url-status=live |archive-url=https://web.archive.org/web/20170829080251/https://www.pro-football-reference.com/boxscores/201310270min.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
At home against de Bears insyd Week 9, na Rodgers be sacked by [[Shea McClellin]]. He fracture ein left clavicle insyd de process, den de speculation for ein return dem range from a few weeks to an indefinite timetable wey cam be a weekly spectacle of whether anaa wen he fi be cleared to san play.<ref>{{Cite web |date=November 5, 2013 |title=Aaron Rodgers has fractured collarbone, could miss a month |url=http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |url-status=live |archive-url=https://web.archive.org/web/20131111030547/http://www.denverpost.com/sports/ci_24458844/aaron-rodgers-has-fractured-collarbone-could-miss-month |archive-date=November 11, 2013 |access-date=November 6, 2013 |website=[[The Denver Post]] |agency=Associated Press}}</ref><ref name="Aaron Rodgers wasn">{{Cite web |last=Mortensen |first=Chris |author-link=Chris Mortensen |date=December 22, 2013 |title=Aaron Rodgers wasn't close to return |url=https://www.espn.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |url-status=live |archive-url=https://web.archive.org/web/20141103072203/http://espn.go.com/nfl/story/_/id/10180238/aaron-rodgers-green-bay-packers-was-never-close-playing-pittsburgh-steelers |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=[[ESPN.com]]}}</ref><ref name="Rodgers not ready to play">{{Cite web |last=Dougherty |first=Pete |date=December 19, 2013 |title=Packers' Aaron Rodgers 'looks ready to play' but probably won't |url=https://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |url-status=live |archive-url=https://web.archive.org/web/20150805151227/http://www.usatoday.com/story/sports/nfl/packers/2013/12/19/aaron-rodgers-status-collarbone-practice-steelers/4133453/ |archive-date=August 5, 2015 |access-date=November 3, 2014 |website=USA Today}}</ref> Before Rodgers break ein collarbone, de Packers win four straight games to climb to de top of de NFC North division plus a 5–2 record. Plus Rodgers injured den unable to play, de Packers go winless over de next five weeks to fall to 5–6–1 on de season.<ref>{{Cite web |title=Green Bay Packers 2013 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2013/gamelog/ |access-date=October 23, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
After rallying insyd December behind re-acquired backup quarterback Matt Flynn,<ref name="Backup Flynn">{{Cite web |last=Dunne |first=Tyler |date=December 16, 2013 |title=Stoic Matt Flynn delivers Packers win |url=http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |url-status=live |archive-url=https://web.archive.org/web/20141103071905/http://www.jsonline.com/sports/packers/stoic-matt-flynn-delivers-packers-win-b99164149z1-235971801.html |archive-date=November 3, 2014 |access-date=November 3, 2014 |website=web |publisher=Milwaukee-Wisconsin Journal Sentinel}}</ref> de Packers fight dema way back to a 7–7–1 record going into de final week of de season. On December 26, Packers head coach Mike McCarthy announce Rodgers go return den start insyd de season-finale showdown against de Chicago Bears at Soldier Field for de NFC North championship.<ref>{{Cite news|last=Breech|first=John|date=December 26, 2013|title=Packers make it official: QB Aaron Rodgers will start vs. Bears|work=CBS Sports|url=http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|url-status=live|access-date=December 27, 2013|archive-url=https://web.archive.org/web/20131227003701/http://www.cbssports.com/nfl/eye-on-football/24387732/packers-make-it-official-qb-aaron-rodgers-will-start-vs-bears|archive-date=December 27, 2013}}</ref> Returning from de injury, Rodgers throw for 318 yards, two touchdowns, den two interceptions insyd de regular season finale against de Bears.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – December 29th, 2013 |url=https://www.pro-football-reference.com/boxscores/201312290chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081317/https://www.pro-football-reference.com/boxscores/201312290chi.htm |archive-date=August 29, 2017 |access-date=May 5, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Trailing 27–28 plus under a minute to go insyd de game den facing de third 4th down of de drive, a 4th & 8 from de 48-yard line, Rodgers connect plus Cobb, wey sanso dey return for ein first game since breaking ein leg insyd Week 6, for a 48-yard game-winning touchdown to clinch de NFC North den earn de right to host a home playoff game against de San Francisco 49ers as de fourth seed.<ref>{{Cite magazine|last=Bedard|first=Greg A.|date=December 30, 2013|title=Answered Prayers|url=https://www.si.com/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|url-status=live|archive-url=https://web.archive.org/web/20211201192432/https://www.si.com/nfl/2013/12/30/aaron-rodgers-john-kuhn-randall-cobb-green-bay-packers|archive-date=December 1, 2021|access-date=September 13, 2019|magazine=Sports Illustrated}}</ref> Rodgers win de 2013 GMC Never Say Never Award for de come-from-behind, division-winning touchdown pass. Rodgers fini fifth insyd de league insyd passer rating (104.9), completion percentage (66.6%), den yards per game (282) while he sanso fini second insyd yards per attempt (8.75).<ref>{{Cite web |title=2013 NFL Passing |url=https://www.pro-football-reference.com/years/2013/passing.htm |access-date=July 17, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
Rodgers san lead de Packers to de playoffs, dis time plus an 8–7–1 record wey na dem be up against de team wey eliminate dem last year insyd de Divisional Round of de playoffs, de 49ers.<ref>{{Cite web |title=2013 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2013.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030637/https://www.pro-football-reference.com/teams/gnb/2013.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de 49ers for de fourth consecutive time, 23–20 on a last second field goal at Lambeau Field, insyd de Wild Card Round. Rodgers record only 177 yards passing, ein lowest insyd a playoff game, den one touchdown pass.<ref>{{Cite web |title=Wild Card – San Francisco 49ers at Green Bay Packers – January 5th, 2014 |url=https://www.pro-football-reference.com/boxscores/201401050gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170821043340/https://www.pro-football-reference.com/boxscores/201401050gnb.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> He sanso be ranked No. 11 by ein fellow players on de ''NFL Top 100'' Players of 2014.<ref>{{Cite web |title=2014 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112164602/https://www.pro-football-reference.com/awards/2014-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2014: Second MVP ====
[[File:Aaron_rodgers_2014.jpg|right|thumb|Rodgers insyd 2014]]
De Packers dema 2014 regular season debut cam against de defending Super Bowl champion Seahawks—a game insyd wich dem go go on to loose 36–16.<ref>{{Cite web |title=Green Bay Packers at Seattle Seahawks – September 4th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409040sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182750/https://www.pro-football-reference.com/boxscores/201409040sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 2, de team begin de game plus a 21–3 deficit against de Jets, bug dem cam back wey dem win 31–24.<ref>{{Cite web |title=New York Jets at Green Bay Packers – September 14th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409140gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829120234/https://www.pro-football-reference.com/boxscores/201409140gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> De 18-point comeback mark de biggest comeback insyd Rodgers ein career.<ref>{{Cite web |last=Imig |first=Paul |date=September 14, 2014 |title=Rodgers overcomes 'nerves' to complete biggest comeback of career |url=http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |url-status=live |archive-url=https://web.archive.org/web/20140918022944/http://www.foxsports.com/wisconsin/story/rodgers-overcomes-nerves-to-complete-biggest-comeback-of-career-091414 |archive-date=September 18, 2014 |access-date=September 13, 2019 |work=Fox Sports}}</ref> Insyd de third week of de season, de Packers offense be shut down by de Lions dema defense, 19–7.<ref>{{Cite web |title=Green Bay Packers at Detroit Lions – September 21st, 2014 |url=https://www.pro-football-reference.com/boxscores/201409210det.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211151/https://www.pro-football-reference.com/boxscores/201409210det.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Na de Packers dema 7 points be de fewest points dem allow insyd a game Rodgers fini; na de 223 yards of total Packer offense be de lowest since Rodgers take over at quarterback den ein 162 passing yards sanso be a career low. For de third consecutive season, na de Packers be off to a 1–2 start. Insyd those three games, Rodgers throw five touchdowns den one interception combined, plus a passer rating of 95.1. Amid widespread concern, Rodgers telll de fans den de media, "''R-E-L-A-X. Relax. We're going to be OK."''<ref>{{Cite web |last=Wilde |first=Jason |date=September 23, 2014 |title=R-E-L-A-X (ESPN Wisconsin) |url=http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |url-status=dead |archive-url=https://web.archive.org/web/20151101051643/http://www.espnwisconsin.com/common/page.php?feed=2&id=16201&is_corp=1 |archive-date=2015-11-01 |access-date=December 7, 2014}}</ref>
After dema loss to de Lions, de Packers go on a four-game win streak, during wich, Rodgers throw 13 touchdowns plus no interceptions.<ref>{{Cite web |title=Aaron Rodgers 2014 Game Log (Weeks 4–7) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231025726/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2014/#98-101-sum:stats |archive-date=December 31, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> Insyd Week 4, a 38–17 victory over de Bears, he get 302 passing yards den four touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Green Bay Packers at Chicago Bears – September 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201409280chi.htm |url-status=live |archive-url=https://web.archive.org/web/20170829081419/https://www.pro-football-reference.com/boxscores/201409280chi.htm |archive-date=August 29, 2017 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 4 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_4.htm |url-status=live |archive-url=https://web.archive.org/web/20180321130559/https://www.pro-football-reference.com/years/2014/week_4.htm |archive-date=March 21, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd Week 6, against de Miami Dolphins, Rodgers lead de Packers to a game-winning drive plus less dan two minutes remaining. He plete a 4th & 10 pass to wide receiver Jordy Nelson wey he mimick [[Dan Marino]] ein famous fake spike play by completing a pass to wide receiver [[Davante Adams]] to get to within four yards of de endzone later insyd de drive.<ref>{{Cite web |last=Sherman |first=Rodger |date=October 12, 2014 |title=Packers use fake spike to beat Dolphins |url=https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.sbnation.com/nfl/2014/10/12/6966181/aaron-rodgers-fake-spike-packers-dolphins |archive-date=March 30, 2019 |access-date=March 7, 2019 |website=SBNation.com}}</ref> Rodgers then plete a touchdown pass to tight end [[Andrew Quarless]] to win de game 27–24.<ref name="gmc">{{Cite web |title=2014 GMC Never Say Never Moment |url=http://www.nfl.com/voting/never-say-never/2014/REG/6 |url-status=live |archive-url=https://web.archive.org/web/20161220230141/http://www.nfl.com/voting/never-say-never/2014/REG/6 |archive-date=December 20, 2016 |access-date=December 6, 2016 |publisher=National Football League}}</ref> Dis play go later win Rodgers de GMC Never Say Never Moment of de Year Award.<ref name="gmc" /> Insyd Week 7, a 38–17 victory over de Carolina Panthers, na he be 19-of-22 for 255 passing yards den three touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Carolina Panthers at Green Bay Packers – October 19th, 2014 |url=https://www.pro-football-reference.com/boxscores/201410190gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20180331002513/https://www.pro-football-reference.com/boxscores/201410190gnb.htm |archive-date=March 31, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 7 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_7.htm |url-status=live |archive-url=https://web.archive.org/web/20210928154945/https://www.pro-football-reference.com/years/2014/week_7.htm |archive-date=September 28, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd a Week 8 loss against de Saints, Rodgers fini 28 of 39 for 418 yards, plus one touchdown pass den two interceptions, ending ein 212 consecutive attempts widout an interception streak<ref name="packsaintsoct">{{Cite web |last=Imig |first=Paul |date=October 27, 2014 |title=5 things we learned: Packers at Saints |url=http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |url-status=live |archive-url=https://web.archive.org/web/20170105180746/http://www.foxsports.com/wisconsin/story/5-things-we-learned-packers-at-saints-102714 |archive-date=January 5, 2017 |access-date=January 5, 2017 |work=Fox Sports}}</ref>—de second longest insyd team history. Insyd de game, Rodgers injure ein hamstring wich appear to get an effect on ein play for de remainder of de game.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 27, 2014 |title=Aaron Rodgers of Green Bay Packers injures hamstring in loss |url=https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |url-status=live |archive-url=https://web.archive.org/web/20200818134022/https://www.espn.com/nfl/story/_/id/11771642/aaron-rodgers-green-bay-packers-injures-hamstring-loss |archive-date=August 18, 2020 |access-date=September 13, 2019 |website=[[ESPN.com]]}}</ref>
[[File:Rodgers_handing_off_2014.jpg|left|thumb|Rodgers handing de ball off to running back [[Eddie Lacy]] insyd 2014]]
Insyd Week 10, against de Chicago Bears, Rodgers cam be de second player insyd NFL history den de first since [[Daryle Lamonica]] insyd 1969 to throw six touchdown passes insyd de first half.<ref>{{Cite news|last=Armas|first=Genaro C.|date=November 10, 2014|title=Aaron Rodgers Throws 6 TD Passes in 1st Half As Packers Crush Bears 55–14|work=[[HuffPost]]|url=http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|url-status=live|access-date=November 27, 2014|archive-url=https://web.archive.org/web/20141112143148/http://www.huffingtonpost.com/2014/11/10/aaron-rodgers-packers-bears-record-half_n_6130674.html|archive-date=November 12, 2014}}</ref> Rodgers fini 18 of 27 for 315 yards den six touchdowns despite only playing one drive insyd de second half to earn NFC Offensive Player of de Week.<ref name="nbcchi" /><ref>{{Cite web |title=2014 NFL Week 10 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_10.htm |url-status=live |archive-url=https://web.archive.org/web/20180330020149/https://www.pro-football-reference.com/years/2014/week_10.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Rodgers set multiple records during de game: most touchdown passes of 70 anaa more yards plus 16—breaking de record dem wey Brett Favre den [[Peyton Manning]] hold, most consecutive touchdown passes widout an interception at home—he sanso break de record wey Favre den Manning, wey he cam be de first quarterback to ever have 10 touchdown passes against de same team insyd a season.<ref name="nbcchi">{{Cite web |last=Neveau |first=James |date=November 12, 2014 |title=Aaron Rodgers Suffered Back Injury vs. Bears |url=http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |url-status=live |archive-url=https://web.archive.org/web/20170105180011/http://www.nbcchicago.com/news/sports/Aaron-Rodgers-Suffered-Back-Injury-vs-Bears--282427431.html |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=NBC Chicago}}</ref> De 55–14 victory tie de Packers dema 55–7 win vs. De Titans insyd 2009 for de most points wey a Rodgers-led offense score.
Insyd a Week 11 game against de 7–2 Eagles, Rodgers set a record for most consecutive attempts at home widout an interception, breaking [[Tom Brady]] ein record of 288 consecutive attempts.<ref>{{Cite web |last=Massey |first=Evan |date=November 16, 2014 |title=Packers' Aaron Rodgers Breaks Tom Brady's Record |url=https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |url-status=live |archive-url=https://web.archive.org/web/20200724201538/https://fansided.com/2014/11/16/packers-aaron-rodgers-breaks-tom-bradys-record/ |archive-date=July 24, 2020 |access-date=September 12, 2019 |website=FanSided}}</ref> Insyd de 53–20 victory, he fini dey go 22 of 36, plus 341 passing yards, three touchdown passes den no interceptions.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – November 16th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20170829074637/https://www.pro-football-reference.com/boxscores/201411160gnb.htm |archive-date=August 29, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
De 8–3 Packers meet de 9–2 Patriots insyd Week 13, at [[Lambeau Field]] insyd na wat be Brady den Rodgers' first time playing against each oda as starters.<ref>{{Cite web |last=Imig |first=Paul |date=November 30, 2014 |title=Rodgers outduels Brady for win in first-ever matchup of elite QBs |url=https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |url-status=live |archive-url=https://web.archive.org/web/20190102094626/https://www.foxsports.com/wisconsin/story/rodgers-outduels-brady-for-win-in-first-ever-matchup-of-elite-qbs-113014 |archive-date=January 2, 2019 |access-date=January 1, 2019 |work=Fox Sports}}</ref> Rodgers fini dey go 24 of 38, plus 368 passing yards den two passing touchdowns insyd de 26–21 Packers victory.<ref>{{Cite web |title=New England Patriots at Green Bay Packers – November 30th, 2014 |url=https://www.pro-football-reference.com/boxscores/201411300gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171228171554/https://www.pro-football-reference.com/boxscores/201411300gnb.htm |archive-date=December 28, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> For ein efforts insyd de month of November, he earn NFC Offensive Player of de Month.<ref>{{Cite web |date=December 4, 2014 |title=Aaron Rodgers among NFC's best for November |url=https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |url-status=live |archive-url=https://web.archive.org/web/20190812115629/https://www.upi.com/Sports_News/2014/12/04/Aaron-Rodgers-among-NFCs-best-for-November/4701417720300/ |archive-date=August 12, 2019 |access-date=September 13, 2019 |website=United Press International}}</ref>
Rodgers suffer a calf injury insyd Week 16, against de Buccaneers, secof severe dehydration he endure from flu-like symptoms he suffer during de week.<ref name="flu">{{Cite web |last=Demovsky |first=Rob |date=December 22, 2014 |title=Aaron Rodgers played with pulled calf |url=https://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |url-status=live |archive-url=https://web.archive.org/web/20170105180655/http://www.espn.com/nfl/story/_/id/12062161/aaron-rodgers-suffered-pulled-calf-muscle-early-green-bay-packers-win |archive-date=January 5, 2017 |access-date=January 5, 2017 |website=[[ESPN.com]]}}</ref>
Insyd de Week 17 game against de Lions, Rodgers re-injure ein left calf while extending a play den throwing a touchdown pass to [[Randall Cobb (American football)|Randall Cobb]], then na e help off de field, wey dem cart am off to de locker room. After missing a series, Rodgers re-enter de game plus de score dem tie 14–14. Despite he be less mobile plus de injury, Rodgers plete 13 of 15 passes for 129 yards den two scores against de league ein second-ranked defense. De Packers win 30–20, winning dema fourth straight NFC North title. Rodgers fini 17 of 22 for 226 yards, two touchdown passes, no interceptions, a 139.6 passer rating, den a rushing touchdown to earn ein fourth NFC Offensive Player of de Week honor for de 2014 season.<ref>{{Cite web |title=Detroit Lions at Green Bay Packers – December 28th, 2014 |url=https://www.pro-football-reference.com/boxscores/201412280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20190330032513/https://www.pro-football-reference.com/boxscores/201412280gnb.htm |archive-date=March 30, 2019 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2014 NFL Week 17 Leaders & Scores |url=https://www.pro-football-reference.com/years/2014/week_17.htm |url-status=live |archive-url=https://web.archive.org/web/20180226175215/https://www.pro-football-reference.com/years/2014/week_17.htm |archive-date=February 26, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
De Packers secure de second seed insyd de NFC, rewarding dem plus a playoff bye den a week off wich help Rodgers rest den rehabilitate ein injured left calf.<ref>{{Cite web |title=2014 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2014 |url-status=live |archive-url=https://web.archive.org/web/20211011053552/https://www.pro-football-reference.com/years/2014/ |archive-date=October 11, 2021 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round, na de Packers be scheduled to play de 13–4 Cowboys, wich mark de first time insyd NFL playoff history wen a team wich go undefeated at home (Packers) play against a team wich go undefeated away (Cowboys).<ref>{{Cite web |last=Imig |first=Paul |date=January 9, 2015 |title=Something has to give: Packers unbeaten at home; Cowboys 8–0 on road |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |url-status=live |archive-url=https://web.archive.org/web/20170101091540/http://www.foxsports.com/wisconsin/story/green-bay-packers-unbeaten-at-home-dallas-cowboys-8-0-on-road-010915 |archive-date=January 1, 2017 |access-date=December 31, 2016 |work=Fox Sports}}</ref> Rodgers help secure a 26–21 victory by finishing 24 of 35 for 316 yards, three touchdowns, no interceptions, den a 125.4 passer rating.<ref>{{Cite web |title=Divisional Round – Dallas Cowboys at Green Bay Packers – January 11th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501110gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171114040923/https://www.pro-football-reference.com/boxscores/201501110gnb.htm |archive-date=November 14, 2017 |access-date=December 15, 2017 |website=[[Pro Football Reference]]}}</ref>
De Packers then travel go Seattle to face de top-seeded Seahawks insyd a rematch of de regular season opener.<ref>{{Cite web |last=Pittman |first=Travis |date=January 11, 2015 |title=Seahawks vs. Packers rematch for NFC Championship |url=https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |url-status=live |archive-url=https://web.archive.org/web/20200724202717/https://www.king5.com/article/sports/nfl/seahawks/seahawks-vs-packers-rematch-for-nfc-championship/281-157563187 |archive-date=July 24, 2020 |access-date=September 12, 2019 |publisher=KING}}</ref> Insyd de NFC Championship Game, na de Packers dey lead 19–7 plus just over five minutes to go, buh na de home team ein offense finally wake up den, plus de assistance of a crucial Packers special teams gaffe on an onside kick, de Seahawks lead 22–19, plus 44 seconds remaining. Rodgers quickly drive downfield to set up a tying field goal, only to watch from de sidelines as de Seahawks win de coin toss insyd overtime wey he proceed to score de game-winning touchdown on dema first possession. Rodgers be 19-for-34 for 178 yards den a touchdown, plus two interceptions insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Seattle Seahawks – January 18th, 2015 |url=https://www.pro-football-reference.com/boxscores/201501180sea.htm |url-status=live |archive-url=https://web.archive.org/web/20170802182804/https://www.pro-football-reference.com/boxscores/201501180sea.htm |archive-date=August 2, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Rodgers fini de regular season first insyd touchdown-to-interception ratio (7.6), lowest interception percentage (1.0%), second insyd passer rating (112.2), yards per attempt (8.4), den touchdown passing percentage (7.1%), third insyd touchdown passes (38), seventh insyd passing yards (4,381), den ninth insyd completion percentage (65.6%).<ref>{{Cite web |title=2014 NFL Leaders and Leaderboards |url=https://www.pro-football-reference.com/years/2014/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20190915221740/https://www.pro-football-reference.com/years/2014/leaders.htm |archive-date=September 15, 2019 |access-date=December 6, 2019 |website=[[Pro Football Reference]]}}</ref> He set an NFL record for most consecutive pass attempts (512) at home widout an interception, den touchdown passes (41).
Na dem vote Rodgers de AP NFL Most Valuable Player for de 2014 season, receiving 31 votes,<ref>{{Cite web |last=Demovsky |first=Rob |date=January 31, 2015 |title=Aaron Rodgers named NFL MVP |url=https://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20161217162150/http://www.espn.com/nfl/story/_/id/12257541/aaron-rodgers-green-bay-packers-named-nfl-mvp |archive-date=December 17, 2016 |access-date=December 12, 2016 |publisher=[[ESPN]]}}</ref> wey dem name am NFC Offensive Player of de Year by de Kansas City Committee of 101<ref name="KC101off">{{Cite web |title=Past NFC Offensive Honorees |url=http://www.101awards.com/awards/past_nfc_offensive_honorees |url-status=dead |archive-url=https://web.archive.org/web/20161220130101/http://www.101awards.com/awards/past_nfc_offensive_honorees |archive-date=December 20, 2016 |access-date=December 13, 2016 |website=101awards.com}}</ref> den Fed-Ex Air NFL Player of de Year.<ref>{{Cite web |date=January 31, 2015 |title=2015 'NFL Honors' complete list of winners |url=https://www.nfl.com/news/2015-nfl-honors-complete-list-of-winners-0ap3000000466415 |url-status=live |archive-url=https://web.archive.org/web/20161018132754/http://www.nfl.com/news/story/0ap3000000466415/article/2015-nfl-honors-complete-list-of-winners |archive-date=October 18, 2016 |access-date=December 12, 2016 |publisher=National Football League}}</ref> He sanso be named to de AP All-Pro team as de first quarterback, receiving 44 votes while runner-up [[Tony Romo]] receive three.<ref>{{Cite web |last=Wesseling |first=Chris |date=January 2, 2015 |title=2014 All-Pro Teams: Analysis of the full rosters |url=https://www.nfl.com/news/2014-all-pro-teams-analysis-of-the-full-rosters-0ap3000000452986 |url-status=live |archive-url=https://web.archive.org/web/20140104005331/http://pro32.ap.org/article/2013-all-pro-team |archive-date=January 4, 2014 |access-date=February 4, 2015 |publisher=National Football League}}</ref> Na dem name am to de Pro Bowl for de 2014 season.<ref>{{Cite web |title=2014 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2014/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180816061701/https://www.pro-football-reference.com/years/2014/probowl.htm |archive-date=August 16, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Na dem rank am as de second best player insyd de league among ein fellow players on de ''NFL Top 100'' Players of 2015.<ref>{{Cite web |title=2015 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20200508061426/https://www.pro-football-reference.com/awards/2015-nfl-top-100.htm |archive-date=May 8, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2015 ====
Insyd 2015, Rodgers get a down year by ein standards. He throw for a career low 3,821 yards insyd wich he play for at least 15 games, although he get 31 touchdowns to just eight interceptions.<ref>{{Cite web |last=Hirschhorn |first=Jason B. |date=July 6, 2016 |title=NFL Top 100: Packers' Aaron Rodgers lands at No. 6 in 2016 |url=https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |url-status=live |archive-url=https://web.archive.org/web/20211115204818/https://www.acmepackingcompany.com/2016/7/6/12058188/nfl-top-100-packers-aaron-rodgers-lands-at-no-6-in-2016 |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=ACME Packing Company |language=en}}</ref> Rodgers plete 60.7 of ein passes per, averaged only 6.7 yards per attempt wey he fini plus a passer rating of 92.7, all career lows. Na Pro Bowl wide receiver Jordy Nelson ein absence secof injury for de season be considered a contributing factor insyd Rodgers ein statistical drop dem compare to previous seasons.<ref>{{Cite web |last=Kelly |first=Danny |date=November 15, 2015 |title=Aaron Rodgers and the Packers miss Jordy Nelson more than we thought they would |url=https://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |url-status=live |archive-url=https://web.archive.org/web/20161226145804/http://www.sbnation.com/2015/11/15/9739584/packers-aaron-rodgers-jordy-nelson-eddie-lacy-randall-cobb |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=sbnation.com}}</ref><ref>{{Cite web |date=January 19, 2016 |title=Packers hope Nelson's return will revitalize offense |url=http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |url-status=live |archive-url=https://web.archive.org/web/20161226145654/http://www.foxsports.com/wisconsin/story/green-bay-packers-mike-mccarthy-aaron-rodgers-jorday-nelson-revitalize-offense-011916 |archive-date=December 26, 2016 |access-date=December 25, 2016 |work=Fox Sports}}</ref><ref>{{Cite web |last=Spofford |first=Mike |date=December 30, 2015 |title=Stats don't matter to Aaron Rodgers |url=http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |url-status=dead |archive-url=https://web.archive.org/web/20161226145201/http://www.packers.com/news-and-events/article-locker-room-report/article-1/Stats-dont-matter-to-Aaron-Rodgers/1671b90e-9210-4c30-8d8e-79abe9d6283c |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=packers.com}}</ref>
Insyd Week 3, a 38–28 victory over de Chiefs, Rodgers get 333 passing yards den five touchdowns to earn NFC Offensive Player of de Week.<ref>{{Cite web |title=Kansas City Chiefs at Green Bay Packers – September 28th, 2015 |url=https://www.pro-football-reference.com/boxscores/201509280gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20220218210924/https://www.pro-football-reference.com/boxscores/201509280gnb.htm |archive-date=February 18, 2022 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2015 NFL Week 3 Leaders & Scores |url=https://www.pro-football-reference.com/years/2015/week_3.htm |url-status=live |archive-url=https://web.archive.org/web/20180330172357/https://www.pro-football-reference.com/years/2015/week_3.htm |archive-date=March 30, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> During Week 9 against de Panthers, he fini plus 369 passing yards, four touchdowns, den one interception. De interception cam plus only 1:47 left insyd de fourth quarter, den following de interception, Rodgers express frustration by throwing down a Microsoft Surface tablet.<ref>{{Cite web |last=Davis |first=Scott |date=November 9, 2015 |title=Aaron Rodgers angrily threw a Microsoft Surface tablet after throwing a crucial interception |url=https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |url-status=live |archive-url=https://web.archive.org/web/20190330032422/https://www.businessinsider.com/aaron-rodgers-throws-microsoft-surface-tablet-2015-11 |archive-date=March 30, 2019 |access-date=September 13, 2019 |website=Business Insider}}</ref> De Packers end up losing de game 29–37.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – November 8th, 2015 |url=https://www.pro-football-reference.com/boxscores/201511080car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101211145/https://www.pro-football-reference.com/boxscores/201511080car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
On December 3, 2015, insyd a Week 13 match-up against de Lions, Rodgers throw a Hail Mary pass wey [[Richard Rodgers (tight end)|Richard Rodgers]] catch for 61 yards plus 0:00 left to beat de Lions 27–23, after dem extend de game secof a facemask penalty dem call on Detroit.<ref name="2015mary">{{Cite web |last=Rosenthal |first=Gregg |date=December 3, 2015 |title=Packers stun Lions on Aaron Rodgers' Hail Mary TD |url=https://www.nfl.com/news/packers-stun-lions-on-aaron-rodgers-hail-mary-td-0ap3000000593884 |url-status=live |archive-url=https://web.archive.org/web/20180408144543/http://www.nfl.com/news/story/0ap3000000593884/article/packers-stun-lions-on-miracle-td-throw-by-rodgers |archive-date=April 8, 2018 |access-date=December 25, 2016 |publisher=National Football League}}</ref> Na de play quickly be dubbed as "The Miracle in Motown."<ref>{{Cite news|last=Bennett|first=Colin|date=December 9, 2015|title=Getaway winner witnesses Motown Miracle|publisher=WTMJ|url=https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|url-status=dead|access-date=March 11, 2018|archive-url=https://web.archive.org/web/20180312083608/https://www.wtmj.com/sports/green-bay-packers/getaway-winner-witnesses-motown-miracle|archive-date=March 12, 2018}}</ref><ref>{{Cite book |last=Aretha |first=David |url=https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |title=Aaron Rodgers: Champion Football Star |date=July 15, 2017 |publisher=Enslow Publishing, LLC |isbn=9780766087170 |access-date=December 1, 2021 |archive-url=https://web.archive.org/web/20210203181206/https://books.google.com/books?id=qABfDwAAQBAJ&q=%2522aaron%2520rodgers%2522 |archive-date=February 3, 2021 |url-status=live}}</ref>
De Packers make de playoffs as de fifth seed insyd de NFC plus a 10–6 record.<ref>{{Cite web |title=2015 Green Bay Packers Statistics & Players |url=https://www.pro-football-reference.com/teams/gnb/2015.htm |url-status=live |archive-url=https://web.archive.org/web/20171010004706/https://www.pro-football-reference.com/teams/gnb/2015.htm |archive-date=October 10, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> Dem defeat de Redskins 35–18 on de road insyd de Wild Card Round of de playoffs. Rodgers fini de game plus 210 yards den two passing touchdowns.<ref>{{Cite web |title=Wild Card – Green Bay Packers at Washington Redskins – January 10th, 2016 |url=https://www.pro-football-reference.com/boxscores/201601100was.htm |url-status=live |archive-url=https://web.archive.org/web/20180308042317/https://www.pro-football-reference.com/boxscores/201601100was.htm |archive-date=March 8, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> Insyd de Divisional Round against de Cardinals, Rodgers throw a 41-yard Hail Mary touchdown pass to [[Jeff Janis]] as time expire to send de game into overtime. However, de Packers loos3 26–20 insyd overtime. Rodgers fini de game 24 for 44 for 261 yards plus two touchdowns den an interception.<ref>{{Cite web |last=Wilde |first=Jason |date=January 17, 2016 |title=Jeff Janis forces OT with Hail Mary catch, but celebration short-lived |url=https://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |url-status=live |archive-url=https://web.archive.org/web/20161213200125/http://www.espn.com/blog/green-bay-packers/post/_/id/27352/little-used-packers-receiver-jeff-janis-forces-ot-on-hail-mary |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=[[ESPN.com]]}}</ref> Dem name am to ein fifth Pro Bowl wey na dem rank am as de sixth best player by ein peers on de ''NFL Top 100'' Players of 2016.<ref>{{Cite web |title=2015 NFL Pro Bowlers |url=https://www.pro-football-reference.com/years/2015/probowl.htm |url-status=live |archive-url=https://web.archive.org/web/20180308103829/https://www.pro-football-reference.com/years/2015/probowl.htm |archive-date=March 8, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=2016 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20190404010429/https://www.pro-football-reference.com/awards/2016-nfl-top-100.htm |archive-date=April 4, 2019 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2016 ====
[[File:Aaron_Rodgers,_Redskins_v_Packers,_Jan_2016.jpg|right|thumb|Rodgers insyd 2016]]
Thru out de first five games of de 2016 season, Rodgers ein struggles from de 2015 season appear to continue.<ref name="pff2016" /> Thru those games, he plete 60.2% of ein passes, dem average 6.5 yards per attempt, wey he post a passer rating of 88.4—all of wich na be similar to ein 2015 numbers.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log (Games 1–5) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/#127-131-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20161227180403/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016#127-131-sum:stats |archive-date=December 27, 2016 |access-date=December 26, 2016 |website=[[Pro Football Reference]]}}</ref> He sanso fumble five times, wey he loose two. Ein lackluster performance thru those games cause much speculation about de causes of ein problems.<ref>{{Cite web |last=Florio |first=Mike |author-link=Mike Florio |date=October 20, 2016 |title=What's wrong with Aaron Rodgers? |url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/whats-wrong-with-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20161226215024/http://profootballtalk.nbcsports.com/2016/10/20/whats-wrong-with-aaron-rodgers/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=NBC Sports |language=en-US}}</ref><ref name="pff2016">{{Cite web |last=Monson |first=Sam |date=October 17, 2016 |title=What's wrong with Aaron Rodgers and the Packers' offense? |url=https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |url-status=live |archive-url=https://web.archive.org/web/20161226214838/https://www.profootballfocus.com/pro-whats-wrong-with-aaron-rodgers-and-the-packers-offense/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=profootballfocus.com}}</ref><ref>{{Cite web |last=Gonzalez |first=Jason |date=October 17, 2016 |title=What's wrong with the Packers? All signs point to Aaron Rodgers |url=http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |url-status=live |archive-url=https://web.archive.org/web/20161226145502/http://www.startribune.com/what-is-wrong-with-the-packers-all-signs-point-to-aaron-rodgers/397340721/ |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=Star Tribune}}</ref><ref>{{Cite web |last=Demovsky |first=Rob |date=October 20, 2016 |title=Experts weigh in on Aaron Rodgers: 'No easy fix' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |url-status=live |archive-url=https://web.archive.org/web/20161226150119/http://www.espn.com/blog/green-bay-packers/post/_/id/34360/no-easy-fix-diagnosing-and-solving-aaron-rodgers-problems |archive-date=December 26, 2016 |access-date=December 26, 2016 |website=[[ESPN.com]]}}</ref>
[[File:Pro_Football_Hall_of_Fame_(23945585187).jpg|thumb|Rodgers ein uniform dem exhibit at de Pro Football Hall of Fame]]
Insyd a Week 7 ''Thursday Night Football'' game against de Bears, Rodgers rebound by recording a franchise record den career-high 39 completions, breaking Brett Favre ein previous record of 36 insyd 1993, sanso be against de Bears.<ref>{{Cite web |date=October 21, 2016 |title=Aaron Rodgers sets Green Bay Packers completion record in win over Chicago Bears |url=http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |url-status=live |archive-url=https://web.archive.org/web/20161213015800/http://www.upi.com/Sports_News/2016/10/21/Aaron-Rodgers-sets-Green-Bay-Packers-completion-record-in-win-over-Chicago-Bears/7021477035992/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=United Press International}}</ref> Rodgers record 326 passing yards for ein first 300-yard passing game since Week 10 of de 2015 season insyd de 26–10 win.<ref name="pfr gamelog" /> De following week against de Atlanta Falcons, Rodgers record a career regular season high of 60 rushing yards,<ref name="pfr gamelog">{{Cite web |title=Aaron Rodgers Career Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/ |url-status=dead |archive-url=https://web.archive.org/web/20111219211828/http://www.pro-football-reference.com/players/R/RodgAa00/gamelog |archive-date=December 19, 2011 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> wey he fini plus four touchdown passes den a 125.5 passer rating.<ref>{{Cite web |last=Dubin |first=Jared |date=October 30, 2016 |title=Packers vs. Falcons highlights, score: Matt Ryan Aaron Rodgers trade lasers all day |url=http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |url-status=live |archive-url=https://web.archive.org/web/20161226215154/http://www.cbssports.com/nfl/news/packers-vs-falcons-highlights-score-matt-ryan-aaron-rodgers-trade-lasers-all-day/ |archive-date=December 26, 2016 |access-date=December 25, 2016 |website=CBS Sports}}</ref>
After a Week 11 loss to de Redskins—de Packers dema fourth in a row, putting dem at 4–6—Rodgers be optimistic about de remainder of de season, saying, "I feel like we fi run de table, I really do."<ref name="runtable1">{{Cite web |last=Demovsky |first=Rob |date=November 23, 2016 |title=Aaron Rodgers: Packers, at 4–6, can close with 6 straight wins |url=https://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |url-status=live |archive-url=https://web.archive.org/web/20170105180337/http://www.espn.com/nfl/story/_/id/18124725/aaron-rodgers-confident-green-bay-packers-run-table |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref> Despite widespread doubt over de likelihood of such a run,<ref name="runtable2">{{Cite web |last=Demovsky |first=Rob |date=January 2, 2016 |title=Aaron Rodgers' magic carries Packers into playoffs on a run-the-table roll |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |url-status=live |archive-url=https://web.archive.org/web/20170103184508/http://www.espn.com/blog/green-bay-packers/post/_/id/36399/aaron-rodgers-magic-carries-packers-into-playoffs-on-a-run-the-table-roll |archive-date=January 3, 2017 |access-date=January 4, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Sipple |first=George |date=January 2, 2017 |title=Packers QB Aaron Rodgers makes good on 'run the table' prediction |url=http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |url-status=live |archive-url=https://web.archive.org/web/20170105175931/http://www.freep.com/story/sports/nfl/lions/2017/01/02/green-bay-packers-aaron-rodgers-run-the-table-detroit-lions/96076972/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=Detroit Free Press}}</ref><ref>{{Cite web |last=Gantt |first=Darin |date=November 24, 2016 |title=Aaron Rodgers: "I feel we can run the table" |url=http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |url-status=live |archive-url=https://web.archive.org/web/20170105180803/http://profootballtalk.nbcsports.com/2016/11/24/aaron-rodgers-i-feel-like-we-can-run-the-table/ |archive-date=January 5, 2017 |access-date=January 4, 2017 |website=profootballtalk.nbcsports.com}}</ref> de Packers go go on to finish de season plus six straight wins—as Rodgers say dem go fi.
Insyd a Week 12 ''Monday Night Football'' game Rodgers appeare to injure ein hamstring on a scrambling play against de Eagles.<ref name="packnews">{{Cite web |last=Silverstein |first=Tom |date=November 29, 2016 |title=Hamstring injury sends Rodgers to tent |url=http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |url-status=live |archive-url=https://web.archive.org/web/20161129161247/http://www.packersnews.com/story/sports/nfl/packers/2016/11/29/hamstring-injury-plagued-aaron-rodgers/94586190/ |archive-date=November 29, 2016 |access-date=December 13, 2016 |website=Milwaukee Journal Sentinel}}</ref> After de play, Rodgers go into an injury tent on de sideline to get ein leg taped up.<ref name="packnews" /> Na Rodgers, however, no miss any snaps insyd de game wey he fini 30 out of 39 for 313 yards plus no sacks anaa interceptions.<ref name="2016eagles" /> Ein 300-yard performance be ein fourth of de season den de first wey de Eagles dema defense allow all season.<ref name="2016eagles">{{Cite web |last=Jackson |first=Zac |date=November 28, 2016 |title=Rodgers, defense step up as Packers snap losing streak |url=http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |url-status=live |archive-url=https://web.archive.org/web/20161213165321/http://profootballtalk.nbcsports.com/2016/11/28/rodgers-defense-step-up-as-packers-snap-losing-streak/ |archive-date=December 13, 2016 |access-date=December 13, 2016}}</ref> De Packers win, 27–13, snapping dema four-game losing streak.
Insyd a 38–10 victory over de Seahawks insyd a Week 14 game, Rodgers den de Packers continue dema recent offensive den defensive success.<ref name="38-10" /><ref name="38-102">{{Cite web |last=Pelissero |first=Tom |date=December 12, 2016 |title=After rout of Seattle, Packers re-emerge as team no one wants to see in January |url=https://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |url-status=live |archive-url=https://web.archive.org/web/20161213014329/http://www.usatoday.com/story/sports/nfl/2016/12/11/aaron-rodgers-seahawks-green-bay-offense/95315604/ |archive-date=December 13, 2016 |access-date=December 13, 2016 |website=USA Today Sports}}</ref> Rodgers fini plus 246 passing yards, three touchdown passes den a 150.8 passer rating. De 150.8 passer rating be de best recorded against Seattle ein defense since head coach [[Pete Carroll]] take over insyd 2010.<ref name="38-10">{{Cite web |last=Wesseling |first=Chris |date=December 11, 2016 |title=Aaron Rodgers, Packers dismantle Seahawks |url=https://www.nfl.com/news/aaron-rodgers-packers-dismantle-seahawks-0ap3000000755388 |url-status=live |archive-url=https://web.archive.org/web/20161213001101/http://www.nfl.com/news/story/0ap3000000755388/article/mvp-candidate-rodgers-packers-dismantle-seahawks |archive-date=December 13, 2016 |access-date=December 13, 2016 |publisher=National Football League}}</ref> Rodgers do dis despite suffering a calf injury early insyd de game.<ref name="38-10" /> Na dem name am NFC Offensive Player of de Week for ein performance against de Seahawks.<ref>{{Cite web |last=Lam |first=Quang M. |date=December 14, 2016 |title=Le'Veon Bell, Rodgers among NFL Players of the Week |url=http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |url-status=dead |archive-url=https://web.archive.org/web/20190330021109/http://www.nfl.com/news/story/0ap3000000756727/article/leveon-bell-rodgers-among-nfl-players-of-the-week |archive-date=March 30, 2019 |access-date=November 12, 2019 |publisher=National Football League}}</ref>
On December 20, 2016, na Rodgers be selected to ein third consecutive Pro Bowl den ein sixth overall insyd ein career.<ref name="probowl2016">{{Cite web |date=December 20, 2016 |title=NFL announces 2017 Pro Bowl rosters |url=https://www.nfl.com/news/nfl-announces-2017-pro-bowl-rosters-0ap3000000760503 |url-status=live |archive-url=https://web.archive.org/web/20181117075658/http://www.nfl.com/news/story/0ap3000000760503/article/nfl-announces-2017-pro-bowl-rosters |archive-date=November 17, 2018 |access-date=December 24, 2016 |publisher=National Football League}}</ref>
During Week 16, Rodgers den [[Drew Brees]] tie de NFL record for most seasons plus at least 35 touchdown passes plus four—a record he share plus Peyton Manning den Tom Brady.<ref name="35tdpass">{{Cite web |title=Most seasons with at least 35 passing touchdowns, career |url=http://pfref.com/tiny/ww1Iz |url-status=live |archive-url=https://web.archive.org/web/20220209214231/https://stathead.com/tools/tiny.fcgi?id=ww1Iz |archive-date=February 9, 2022 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref><ref name="mosttdpass">{{Cite web |title=NFL Single-Season Passing Touchdowns Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20210201232241/https://www.pro-football-reference.com/leaders/pass_td_single_season.htm |archive-date=February 1, 2021 |access-date=December 25, 2016 |website=[[Pro Football Reference]]}}</ref> Insyd de game against de Vikings, Rodgers fini 28 of 38 for 347 yards, four touchdown passes den a rushing touchdown to earn NFC Offensive Player of de Week.<ref name="espnvik2016">{{Cite web |last=Demovsky |first=Rob |date=December 24, 2016 |title=Aaron Rodgers for MVP: Packers QB makes case in win over Vikings |url=https://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |url-status=live |archive-url=https://web.archive.org/web/20161225084224/http://www.espn.com/blog/green-bay-packers/post/_/id/36217/aaron-rodgers-for-mvp-packers-qb-makes-case-in-win-over-vikings |archive-date=December 25, 2016 |access-date=December 25, 2016 |publisher=[[ESPN]]}}</ref><ref>{{Cite web |title=2016 NFL Week 16 Leaders & Scores |url=https://www.pro-football-reference.com/years/2016/week_16.htm |url-status=live |archive-url=https://web.archive.org/web/20180328231416/https://www.pro-football-reference.com/years/2016/week_16.htm |archive-date=March 28, 2018 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref> Ein 300-yard performance be de first allowed by de Vikings dema defense all season.<ref name="espnvik2016" /> He sanso set Packer regular season records for most 4,000-yard passing seasons (6), most completions insyd a season (374), den—plus Jordy Nelson—most touchdowns by a quarterback/wide receiver combination plus (59).<ref name="espnvik2016" /> Na dem name Rodgers NFC Offensive Player of de Month for December.<ref>{{Cite web |date=January 5, 2017 |title=Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |url-status=live |archive-url=https://web.archive.org/web/20200724202520/https://www.packers.com/news/aaron-rodgers-named-nfc-offensive-player-of-the-month-18397458 |archive-date=July 24, 2020 |access-date=September 13, 2019 |website=packers.com}}</ref>
Rodgers help lead de Packers to a NFC North title den a playoff berth insyd 2016.<ref>{{Cite web |title=2016 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2016 |url-status=live |archive-url=https://web.archive.org/web/20180329001215/https://www.pro-football-reference.com/years/2016/ |archive-date=March 29, 2018 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers defeat de Giants insyd de Wild Card Round. Rodgers plete 25 of 40 passes for 364 yards den four touchdowns insyd de victory. Dem defeat de #1-seed Cowboys insyd de Divisional Round. Plua de game tied at 31 plus only 18 seconds remaining plus de ball on dema own 32-yard line, Rodgers throw a 36-yard completion to tight end [[Jared Cook]] to put de Packers insyd Mason Crosby ein field goal range. Crosby convert de 51-yard attempt as time expire to win de game.<ref>{{Cite web |last=Steele |first=David |date=January 15, 2017 |title=Aaron Rodgers-to-Jared-Cook joins list of legendary clutch NFL playoff catches |url=https://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |url-status=live |archive-url=https://web.archive.org/web/20190415003703/http://www.sportingnews.com/us/nfl/news/packers-aaron-rodgers-jared-cook-famous-clutch-catches-montana-clark-eli-manning-tyree-holmes-roethlisberger/ekckgvw6wftx1rbp6bl1kh0pg |archive-date=April 15, 2019 |access-date=September 13, 2019 |website=Sporting News}}</ref> Overall, Rodgers plete 28 of 43 passes for 355 yards, two touchdowns den an interception insyd de victory.<ref>{{Cite web |title=Wild Card – New York Giants at Green Bay Packers – January 8th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701080gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20171011073327/https://www.pro-football-reference.com/boxscores/201701080gnb.htm |archive-date=October 11, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |title=Divisional Round – Green Bay Packers at Dallas Cowboys – January 15th, 2017 |url=https://www.pro-football-reference.com/boxscores/201701150dal.htm |url-status=live |archive-url=https://web.archive.org/web/20171115030639/https://www.pro-football-reference.com/boxscores/201701150dal.htm |archive-date=November 15, 2017 |access-date=March 11, 2018 |website=[[Pro Football Reference]]}}</ref> De Packers loose to de Falcons insyd de NFC Championship insyd de final game at de Georgia Dome. Rodgers plete 27 of ein 45 passing attempts for 287 yards plus three touchdowns den an interception insyd de losing effort.<ref>{{Cite web |title=NFC Championship – Green Bay Packers at Atlanta Falcons – January 22nd, 2017 |url=https://www.pro-football-reference.com/boxscores/201701220atl.htm |url-status=live |archive-url=https://web.archive.org/web/20170821003240/https://www.pro-football-reference.com/boxscores/201701220atl.htm |archive-date=August 21, 2017 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref>
Insyd 2016, Rodgers fini plus 401 completions den 610 attempts (both career highs), a 65.7% completion percentage, 4,428 passing yards, 40 touchdown passes, seven interceptions, a passer rating of 104.2, 369 rushing yards (career-high), den four rushing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2016 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |url-status=live |archive-url=https://web.archive.org/web/20211115205043/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2016/ |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Plus ein 40 touchdown passes, he lead de league insyd de statistic for de first time insyd ein career<ref>{{Cite web |last=Borek |first=Jesse |date=January 1, 2017 |title=Packers' Aaron Rodgers leads NFL in TD passes |url=http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |url-status=dead |archive-url=https://web.archive.org/web/20170104172003/http://www.fanragsports.com/news/packers-aaron-rodgers-leads-nfl-td-passes/ |archive-date=January 4, 2017 |access-date=January 4, 2017 |website=fanrangsports.com |publisher=Nafstrops Media, LLC}}</ref> wey he cam be one of only four quarterbacks to pass for at least 40 touchdowns insyd multiple seasons.<ref name="40td">{{Cite web |title=Most seasons with at least 40 passing touchdowns, career |url=http://pfref.com/tiny/6BiBx |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=6BiBx |archive-date=December 1, 2021 |access-date=January 5, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Rodgers sanso fini fourth insyd passing yards, completions, attempts, den passer rating.<ref name="2016leaderspfr">{{Cite web |title=2016 NFL Leaders |url=https://www.pro-football-reference.com/years/2016/leaders.htm |url-status=live |archive-url=https://web.archive.org/web/20210108041718/https://www.pro-football-reference.com/years/2016/leaders.htm |archive-date=January 8, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Among quarterbacks, he fini third insyd rushing yards den fifth insyd rushing touchdowns.<ref name="2016qbrush">{{Cite web |title=2016 QB rushing leaders |url=http://pfref.com/tiny/698kQ |url-status=live |archive-url=https://web.archive.org/web/20211201203056/https://stathead.com/tools/tiny.fcgi?id=698kQ |archive-date=December 1, 2021 |access-date=January 4, 2017 |website=[[Pro Football Reference]] |publisher=Sports Reference}}</ref> Dem rank am sixth by ein peers on de ''NFL Top 100'' Players of 2017.<ref>{{Cite web |title=2017 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201106081444/https://www.pro-football-reference.com/awards/2017-nfl-top-100.htm |archive-date=November 6, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2017 ====
Insyd a Week 1 victory over de Seahawks, Rodgers get ein 50th career game plus at least 300 passing yards. He fini de game plus 311, buh ein streak of 251 consecutive passes widout an interception cam to an end wen defensive tackle [[Nazair Jones]] pick am off insyd de first quarter.<ref>{{Cite news|date=September 10, 2017|title=Rodgers, Packers' defense spark season-opener win over Seahawks|work=Fox Sports|agency=Associated Press|url=http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|url-status=live|access-date=September 10, 2017|archive-url=https://web.archive.org/web/20170912011719/http://www.foxsports.com/wisconsin/story/rodgers-packers-defense-spark-season-opener-win-over-seahawks-091017|archive-date=September 12, 2017}}</ref> Insyd a Week 2 loss of 34–23 to de Falcons, he get 343 passing yards, two touchdowns, den an interception insyd de first game insyd de new Mercedes-Benz Stadium insyd Atlanta.<ref>{{Cite web |title=Green Bay Packers at Atlanta Falcons – September 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201709170atl.htm |url-status=live |archive-url=https://web.archive.org/web/20171008080102/https://www.pro-football-reference.com/boxscores/201709170atl.htm |archive-date=October 8, 2017 |access-date=October 13, 2017 |website=[[Pro Football Reference]]}}</ref> Insyd Week 5, down by 28–31 against de Cowboys plus less dan two minutes on de clock, Rodgers lead a nine-play, 75-yard touchdown drive insyd de 35–31 victory, earning am NFC Offensive Player of de Week.<ref>{{Cite web |last=Lewis |first=Edward |date=October 11, 2017 |title=Aaron Rodgers, Earl Thomas among Players of Week |url=https://www.nfl.com/news/aaron-rodgers-earl-thomas-among-players-of-week-0ap3000000859999 |url-status=live |archive-url=https://web.archive.org/web/20190504022932/http://www.nfl.com/news/story/0ap3000000859999/article/aaron-rodgers-earl-thomas-among-players-of-week |archive-date=May 4, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref>
During Week 6 against de Vikings, na dem take Rodgers off de field by ein coaches den medical personnel after suffering a shoulder injury on a hit from [[Anthony Barr (American football)|Anthony Barr]]. Shortly thereafter, na dem reveal say Rodgers suffer a fractured right collarbone.<ref>{{Cite web |last=Demovsky |first=Rob |date=October 15, 2017 |title=Aaron Rodgers has broken collarbone, could miss season |url=https://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |url-status=live |archive-url=https://web.archive.org/web/20190504114010/http://www.espn.com/nfl/story/_/id/21031654/aaron-rodgers-green-bay-packers-taken-locker-room-shoulder-injury |archive-date=May 4, 2019 |access-date=October 15, 2017 |website=[[ESPN.com]]}}</ref><ref>{{Cite web |last=Wesseling |first=Chris |date=October 15, 2017 |title=Aaron Rodgers suffers broken collarbone vs. Vikings |url=https://www.nfl.com/news/aaron-rodgers-suffers-broken-collarbone-vs-vikings-0ap3000000861006 |url-status=live |archive-url=https://web.archive.org/web/20171015222153/http://www.nfl.com/news/story/0ap3000000861006/article/aaron-rodgers-suffers-broken-collarbone-vs-vikings |archive-date=October 15, 2017 |access-date=October 15, 2017 |website=NFL.com |publisher=National Football League}}</ref> De next day, on October 16, na dem announce say Rodgers go get surgery on ein broken collarbone.<ref>{{Cite web |last=Patra |first=Kevin |date=October 16, 2017 |title=Aaron Rodgers will have surgery on broken collarbone |url=https://www.nfl.com/news/aaron-rodgers-will-have-surgery-on-broken-collarbone-0ap3000000862438 |url-status=live |archive-url=https://web.archive.org/web/20171016214737/http://www.nfl.com/news/story/0ap3000000862438/article/aaron-rodgers-will-have-surgery-on-broken-collarbone |archive-date=October 16, 2017 |access-date=October 16, 2017 |website=NFL.com |publisher=National Football League}}</ref> On October 19, he undergo surgery on ein collarbone, wey na he be officially placed on injured reserve de next day.<ref>{{Cite web |date=October 19, 2017 |title=Aaron Rodgers has surgery on collarbone |url=https://www.nfl.com/news/packers-aaron-rodgers-has-surgery-on-collarbone-0ap3000000864021 |url-status=live |archive-url=https://web.archive.org/web/20171020135141/http://www.nfl.com/news/story/0ap3000000864021/article/packers-aaron-rodgers-has-surgery-on-collarbone |archive-date=October 20, 2017 |access-date=October 19, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |date=October 20, 2017 |title=Packers place QB Rodgers on injured reserve |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |url-status=dead |archive-url=https://web.archive.org/web/20171021061030/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Rodgers-on-injured-reserve-/308b28ab-79c3-44ef-bf18-dcd227671c7f |archive-date=October 21, 2017 |access-date=October 20, 2017 |website=Packers.com}}</ref> Na dem insert a total of 13 screws to stabilize ein collarbone.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 26, 2017 |title=Injury roundup: Rodgers has '13 screws' in collarbone |url=https://www.nfl.com/news/injuries-aaron-rodgers-has-13-screws-in-collarbone-0ap3000000867422 |url-status=live |archive-url=https://web.archive.org/web/20171026222152/http://www.nfl.com/news/story/0ap3000000867422/article/injury-roundup-rodgers-has-13-screws-in-collarbone |archive-date=October 26, 2017 |access-date=October 26, 2017 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Knoblauch |first=Austin |date=November 3, 2017 |title=Aaron Rodgers focusing on his health, not return date |url=https://www.nfl.com/news/aaron-rodgers-focusing-on-his-health-not-return-date-0ap3000000871634 |url-status=live |archive-url=https://web.archive.org/web/20171104033909/http://www.nfl.com/news/story/0ap3000000871634/article/aaron-rodgers-focusing-on-his-health-not-return-date |archive-date=November 4, 2017 |access-date=November 3, 2017 |website=NFL.com |publisher=National Football League}}</ref>
Rodgers return to practice on December 2, wey dey make am eligible to play insyd de upcoming Week 15 game.<ref>{{Cite web |last=Bergman |first=Jeremy |date=December 2, 2017 |title=Aaron Rodgers returns to Packers practice Saturday |url=https://www.nfl.com/news/aaron-rodgers-returns-to-packers-practice-saturday-0ap3000000885977 |url-status=live |archive-url=https://web.archive.org/web/20191202121449/http://www.nfl.com/news/story/0ap3000000885977/article/aaron-rodgers-returns-to-packers-practice-saturday |archive-date=December 2, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> On December 12, na dem announce say Rodgers be medically cleared by doctors wey he be set to start de next game against de Panthers.<ref>{{Cite web |last=Lewis |first=Edward |date=December 12, 2017 |title=Aaron Rodgers cleared to return, to start vs. Panthers |url=http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |url-status=dead |archive-url=https://web.archive.org/web/20191109071351/http://www.nfl.com/news/story/0ap3000000892340/article/aaron-rodgers-cleared-to-return-to-start-vs-panthers |archive-date=November 9, 2019 |access-date=November 12, 2019 |website=NFL.com |publisher=National Football League}}</ref> He be officially activated on December 16.<ref>{{Cite web |date=December 16, 2017 |title=Aaron Rodgers activated from injured reserve |url=https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |url-status=live |archive-url=https://web.archive.org/web/20190413105005/https://www.packers.com/news/aaron-rodgers-activated-from-injured-reserve-19992194 |archive-date=April 13, 2019 |access-date=September 12, 2019 |website=Packers.com}}</ref> As dem plan, Rodgers return insyd Week 15 against de Panthers, wer he fini plus 290 passing yards, three touchdowns, den three interceptions as de Packers loose 24–31.<ref>{{Cite web |title=Green Bay Packers at Carolina Panthers – December 17th, 2017 |url=https://www.pro-football-reference.com/boxscores/201712170car.htm |url-status=live |archive-url=https://web.archive.org/web/20180101135719/https://www.pro-football-reference.com/boxscores/201712170car.htm |archive-date=January 1, 2018 |access-date=January 1, 2018 |website=[[Pro Football Reference]]}}</ref> However, on December 19, na dem place Rodgers back on injured reserve after de Packers be eliminated from playoff contention.<ref>{{Cite web |date=December 19, 2017 |title=Packers place QB Aaron Rodgers on IR |url=http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |url-status=dead |archive-url=https://web.archive.org/web/20180326030719/http://www.packers.com/news-and-events/article-roster-moves/article-1/Packers-place-QB-Aaron-Rodgers-on-IR/b3a2c6f3-a8e5-4c36-b88c-926568088a12 |archive-date=March 26, 2018 |website=Packers.com}}</ref><ref>{{Cite web |last=Patra |first=Kevin |date=December 19, 2017 |title=Packers place Aaron Rodgers back on injured reserve |url=https://www.nfl.com/news/packers-place-aaron-rodgers-back-on-injured-reserve-0ap3000000895650 |url-status=live |archive-url=https://web.archive.org/web/20190920235723/http://www.nfl.com/news/story/0ap3000000895650/article/packers-place-aaron-rodgers-back-on-injured-reserve |archive-date=September 20, 2019 |access-date=September 12, 2019 |website=NFL.com |publisher=National Football League}}</ref><ref>{{Cite web |last=Rapoport |first=Ian |author-link=Ian Rapoport |date=December 17, 2017 |title=Aaron Rodgers' collarbone still not completely healed |url=https://www.nfl.com/news/aaron-rodgers-collarbone-still-not-completely-healed-0ap3000000893627 |url-status=live |archive-url=https://web.archive.org/web/20171223065547/http://www.nfl.com/news/story/0ap3000000893627/article/aaron-rodgers-collarbone-still-not-completely-healed |archive-date=December 23, 2017 |access-date=December 23, 2017 |website=NFL.com |publisher=National Football League}}</ref> He be ranked No. 10 by ein fellow players on de ''NFL Top 100'' Players of 2018.<ref>{{Cite web |title=2018 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20201104205316/https://www.pro-football-reference.com/awards/2018-nfl-top-100.htm |archive-date=November 4, 2020 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2018 ====
[[File:Rodgersthrowing2018redskins.jpg|thumb|Rodgers dey throw a pass insyd 2018]]
On August 29, 2018, Rodgers sign a four-year extension plus de Packers worth $134 million featuring a $57.5 million signing bonus.<ref>{{Cite web |last=Siegle |first=Evan |date=August 29, 2018 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |url-status=live |archive-url=https://web.archive.org/web/20180830044455/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension |archive-date=August 30, 2018 |access-date=August 29, 2018 |website=packers.com}}</ref><ref>{{Cite web |last=Teope |first=Herbie |date=August 29, 2018 |title=Aaron Rodgers agrees to 4-year, $134M extension |url=http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |url-status=dead |archive-url=https://web.archive.org/web/20180830005310/http://www.nfl.com/news/story/0ap3000000952107/article/aaron-rodgers-agrees-to-4year-deal-with-over-100m-guarantees |archive-date=August 30, 2018 |access-date=August 29, 2018 |publisher=National Football League}}</ref>
During ''Sunday Night Football'' against de Bears insyd Week 1, Rodgers lef de game plus a knee injury buh he return insyd de third quarter. Down by 20 points, Rodgers fini plus 286 passing yards den three touchdowns, leading de Packers rally to a 24–23 win.<ref>{{Cite web |last=Bergman |first=Jeremy |date=September 9, 2018 |title=Rodgers helps Packers rally against Bears |url=https://www.nfl.com/news/aaron-rodgers-rallies-packers-to-improbable-win-0ap3000000960283 |url-status=live |archive-url=https://web.archive.org/web/20180910164829/http://www.nfl.com/news/story/0ap3000000960283/article/aaron-rodgers-rallies-packers-to-improbable-win |archive-date=September 10, 2018 |access-date=September 10, 2018 |publisher=National Football League}}</ref> Despite a nagging knee injury, Rodgers get at least 40 pass attempts insyd each of de next three games. Insyd de last of these, he throw ein first interception insyd 150 attempts.<ref>{{Cite web |date=September 30, 2018 |title=GAME RECAP: Bills fall on the road in Green Bay |url=https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |url-status=live |archive-url=https://web.archive.org/web/20181008214257/https://www.buffalobills.com/news/game-recap-bills-fall-on-the-road-in-green-bay |archive-date=October 8, 2018 |access-date=December 17, 2018 |website=buffalobills.com}}</ref> Insyd Week 5, Rodgers pass for 442 yards (de second-best of ein career) den three touchdowns, buh sanso two fumbles, insyd a 31–23 loss to de Lions.<ref>{{Cite web |last=Owczarski |first=Jim |date=October 7, 2018 |title=Packers doomed by slow start, Mason Crosby's misses in loss to Lions |url=https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |url-status=live |archive-url=https://web.archive.org/web/20201109032148/https://eu.usatoday.com/story/sports/nfl/packers/2018/10/07/green-bay-packers-mason-crosby-detroit-lions/1560251002/ |archive-date=November 9, 2020 |access-date=December 17, 2018 |website=USA Today}}</ref> Insyd de following game, a 33–30 victory over de 49ers, he get 425 passing yards den two passing touchdowns.<ref>{{Cite web |date=October 16, 2018 |title=Bloodied Aaron Rodgers leads Packers and Crosby to redemption over 49ers |url=https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |url-status=live |archive-url=https://web.archive.org/web/20181030035759/https://www.theguardian.com/sport/2018/oct/15/green-bay-packers-san-francisco-49ers-monday-night-nfl-football |archive-date=October 30, 2018 |access-date=October 29, 2018 |website=The Guardian |agency=Associated Press}}</ref>
Following de bye-week, despite a continuing knee injury,<ref>{{Cite news|last=Maske|first=Mark|date=October 16, 2018|title=Aaron Rodgers's knee isn't quite right. But he's still good enough to carry the Packers|newspaper=The Washington Post|url=https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|url-status=live|access-date=December 6, 2019|archive-url=https://web.archive.org/web/20191207093807/https://www.washingtonpost.com/sports/2018/10/16/aaron-rodgerss-knee-isnt-quite-right-hes-still-good-enough-carry-packers/|archive-date=December 7, 2019}}</ref> Rodgers get ein third consecutive week plus a 100+ quarterback rating,<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log (Games 5, 6, and 8) |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |url-status=live |archive-url=https://web.archive.org/web/20191231012655/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/#154-156-sum:stats |archive-date=December 31, 2019 |access-date=December 5, 2019 |website=[[Pro Football Reference]]}}</ref> wich include 286 yards passing, no interceptions, den a go-ahead 40-yard touchdown pass to [[Marquez Valdes-Scantling]] insyd a 29–27 loss to de Los Angeles Rams.<ref>{{Cite web |last=Beacham |first=Greg |date=October 29, 2018 |title=Late fumble keeps Rams unbeaten with 29–27 win over Packers |url=https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |url-status=live |archive-url=https://web.archive.org/web/20181217202249/https://www.apnews.com/3c6141c93b1c4a70bd6de9c36e33b87e |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref>
Insyd Week 14, against de Falcons, Rodgers set an NFL record by converting ein 359th consecutive pass widout an interception, breaking Tom Brady ein previous record.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 9, 2018 |title=No picks for Packer: Rodgers sets no-INT mark |url=https://www.espn.com/nfl/story/_/id/25491996 |url-status=live |archive-url=https://web.archive.org/web/20181210123157/http://www.espn.com/nfl/story/_/id/25491996 |archive-date=December 10, 2018 |access-date=December 10, 2018 |website=[[ESPN.com]]}}</ref> Insyd Week 15, against de Chicago Bears, Rodgers throw for 274 yards den an interception insyd a 24–17 loss. Rodgers ein record streak widout an interception end plus 402 pass attempts after he be intercepted by free safety [[Eddie Jackson (safety)|Eddie Jackson]].<ref>{{Cite web |last=Cohen |first=Jay |date=December 16, 2018 |title=Rodgers throws interception as Packers lose 24–17 to Bears |url=https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |url-status=live |archive-url=https://web.archive.org/web/20181217145036/https://apnews.com/5aa44dd55ab7415e8aded9d5323f8081 |archive-date=December 17, 2018 |access-date=December 17, 2018 |website=AP News}}</ref> During Week 16 against de Jets, Rodgers fini plus 442 passing yards, two passing touchdowns, den two rushing touchdowns. Trailing at one point by 15 points, Rodgers den de Packers win 44–38 insyd overtime.<ref>{{Cite web |date=December 23, 2018 |title=Rodgers leads Packers to wild 44–38 overtime win over Jets |url=https://www.espn.com/nfl/recap?gameId=401030870 |url-status=live |archive-url=https://web.archive.org/web/20190101002910/http://www.espn.com/nfl/recap?gameId=401030870 |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> He match ein own feat of achieving at least 400 passing yards, two passing touchdowns, deb two rushing touchdowns insyd a single game. De only oda time insyd NFL history wey na e occur be wen Rodgers accomplish am insyd 2011 against de Denver Broncos.<ref>{{Cite web |last=Kruse |first=Zach |date=December 24, 2018 |title=Packers QB Aaron Rodgers matches his own rare feat vs. Jets |url=https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |url-status=live |archive-url=https://web.archive.org/web/20190123071358/https://packerswire.usatoday.com/2018/12/23/packers-qb-aaron-rodgers-matches-his-own-rare-feat-vs-jets/ |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Packers Wire}}</ref>
On December 18, 2018, na dem name Rodgers to ein seventh Pro Bowl.<ref>{{Cite web |date=December 18, 2018 |title=NFL reveals rosters for 2019 Pro Bowl in Orlando |url=https://www.nfl.com/news/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando-0ap3000001001792 |url-status=live |archive-url=https://web.archive.org/web/20190108220211/http://www.nfl.com/news/story/0ap3000001001792/article/nfl-reveals-rosters-for-2019-pro-bowl-in-orlando |archive-date=January 8, 2019 |access-date=January 1, 2019 |publisher=National Football League}}</ref> He decline de appearance secof injury wey na he be replaced by [[Russell Wilson]].<ref>{{Cite web |last=Fentress |first=Aaron |date=January 9, 2019 |title=Russell Wilson replaces Aaron Rodgers on NFC Pro Bowl team |url=https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |url-status=live |archive-url=https://web.archive.org/web/20190626144630/https://www.nbcsports.com/northwest/seattle-seahawks/russell-wilson-replaces-aaron-rodgers-nfc-pro-bowl-team |archive-date=June 26, 2019 |access-date=June 26, 2019 |website=NBC Sports Northwest}}</ref>
Insyd de regular season finale against de Detroit Lions, Rodgers suffer a concussion early insyd de game wey he no go return.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 30, 2018 |title=Aaron Rodgers suffers concussion in Packers' regular season finale |url=https://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |url-status=live |archive-url=https://web.archive.org/web/20190101005826/http://www.espn.com/nfl/story/_/id/25647630/aaron-rodgers-green-bay-packers-suffers-concussion-season-finale |archive-date=January 1, 2019 |access-date=January 1, 2019 |website=[[ESPN.com]]}}</ref> Na den then send am to de hospital to test for concussion symptoms.<ref name="2018conc">{{Cite web |last=Jones |first=Brian |date=December 31, 2018 |title=Aaron Rodgers sent to hospital after suffering concussion |url=https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |url-status=live |archive-url=https://web.archive.org/web/20220427185549/https://247sports.com/nfl/green-bay-packers/Article/Aaron-Rodgers-hospital-concussion--127086758/ |archive-date=April 27, 2022 |access-date=January 1, 2019 |website=247 SPORTS}}</ref> Secof na de Packers already be eliminated from playoff contention, Rodgers answer questions about whether he for be playing, for fear of injury, by saying: "''That's just not the way I lead, and I'm super-competitive, and I want to be out there with the guys and I look forward to being out there."''<ref name="2018conc" /> Na dem later spot Rodgers at de Packers dema facility after de game.<ref name="2018conc" />
Rodgers fini de season plus 372 completions, 597 attempts, 4,442 passing yards, 25 passing touchdowns, two interceptions den a passer rating of 97.6.<ref>{{Cite web |title=Aaron Rodgers 2018 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2018/ |access-date=January 8, 2026 |website=[[Pro Football Reference]] |language=en}}</ref> In addition to setting de record for consecutive passes widout an interception during de season, Rodgers set NFL records for interception percentage for a season, plus only 0.335% of ein passes be intercepted, den for de amount of thrown away passes.<ref name="passintpfr">{{Cite web |title=NFL Pass Interception % Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20190102050903/https://www.pro-football-reference.com/leaders/pass_int_perc_single_season.htm |archive-date=January 2, 2019 |access-date=January 1, 2019 |website=[[Pro Football Reference]]}}</ref><ref>{{Cite web |last=Smith |first=Michael David |date=December 3, 2018 |title=Aaron Rodgers avoids interceptions by throwing the ball away at a record rate |url=https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |url-status=live |archive-url=https://web.archive.org/web/20190807024232/https://profootballtalk.nbcsports.com/2018/12/03/aaron-rodgers-avoids-interceptions-by-throwing-the-ball-away-at-a-record-pace/ |archive-date=August 7, 2019 |access-date=November 12, 2019 |website=ProFootballTalk}}</ref> Na dem rank am eighth by ein fellow players on de ''NFL Top 100'' Players of 2019.<ref>{{Cite web |title=2019 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211112140727/https://www.pro-football-reference.com/awards/2019-nfl-top-100.htm |archive-date=November 12, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2019 ====
[[File:Aaron_Rodgers_2019.jpg|right|thumb|Rodgers insyd a game against de Washington Redskins ]]
Rodgers start de 2019 season plus a new head coach insyd [[Matt LaFleur]] following de departure of Mike McCarthy.<ref>{{Cite web |last=Wilde |first=Jason |date=September 17, 2019 |title=Believing offensive success is 'close,' Matt LaFleur and Aaron Rodgers focus on making more plays |url=https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |url-status=live |archive-url=https://web.archive.org/web/20190927192039/https://madison.com/sports/football/professional/believing-offensive-success-is-close-matt-lafleur-and-aaron-rodgers/article_92ab9fd1-9359-5f47-9637-6218311ccf71.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=madison.com}}</ref> De Packers offense rely less on Rodgers ein trademark passes den more on heavy formations den play-action throws to take advantage of running back [[Aaron Jones (running back)|Aaron Jones]].<ref>{{Cite web |last=Mays |first=Robert |date=January 17, 2020 |title=The Incalculable Legacy of Aaron Rodgers |url=https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |url-status=live |archive-url=https://web.archive.org/web/20200409091343/https://www.theringer.com/nfl-playoffs/2020/1/17/21070530/aaron-rodgers-packers-legacy-nfl-playoffs-nfc-championship |archive-date=April 9, 2020 |access-date=April 7, 2020 |website=The Ringer |language=en}}</ref>
Rodgers help lead de Packers to a 3–0 start plus victories over de Bears, Vikings, den Broncos.<ref>{{Cite web |last=Wilner |first=Barry |date=September 6, 2019 |title=Packers' D, Aaron Rodgers beat Bears 10–3 in opener |url=https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |url-status=live |archive-url=https://web.archive.org/web/20190927192201/https://apnews.com/43a27f2d0f694da5a8f98e2d36be000b |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref><ref>{{Cite web |date=September 15, 2019 |title=Packers ride Rodgers' hot start to 21–16 win over Vikings |url=https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |url-status=dead |archive-url=https://web.archive.org/web/20190927192237/https://www.wbay.com/content/news/Packers-ride-Rodgers-hot-start-to-21-16-win-over-Vikings-560426511.html |archive-date=September 27, 2019 |access-date=September 27, 2019 |publisher=WBAY |agency=Associated Press}}</ref><ref>{{Cite web |last=Jenkins |first=Keith |date=September 22, 2019 |title=Packers remain unbeaten with 27–16 win over Broncos |url=https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |url-status=live |archive-url=https://web.archive.org/web/20190927193720/https://apnews.com/ed0f6c4f9afe4671a498e34487372f55 |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=AP News}}</ref> Insyd Week 4, against de Eagles on ''Thursday Night Football'', he get 422 passing yards den two passing touchdowns, buh he sanso throw de game-ending interception as de Packers be handed dema first loss of de season by a score of 34–27.<ref>{{Cite web |date=September 27, 2019 |title=Eagles pick off Aaron Rodgers' late pass to beat Packers |url=https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |url-status=live |archive-url=https://web.archive.org/web/20190927063930/https://www.latimes.com/sports/story/2019-09-26/eagles-pick-off-aaron-rodgers-late-pass-to-beat-packers |archive-date=September 27, 2019 |access-date=September 27, 2019 |website=Los Angeles Times |agency=Associated Press}}</ref> Insyd Week 7, against de Raiders, Rodgers post ein first-ever game plus a perfect passer rating of 158.3, de first quarterback insyd team history to do so.<ref>{{Cite web |last=Joseph |first=Andrew |date=October 20, 2019 |title=The Packers players were so pumped to find out Aaron Rodgers had a perfect passer rating |url=https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |url-status=live |archive-url=https://web.archive.org/web/20191021004107/https://ftw.usatoday.com/2019/10/aaron-rodgers-packers-locker-room-perfect-passer-rating-video |archive-date=October 21, 2019 |access-date=October 20, 2019 |website=USA Today}}</ref> He plete 25-of-31 passes for 429 yards den five touchdowns insyd de 42–24 victory.<ref>{{Cite web |last=Kruse |first=Zach |date=October 20, 2019 |title=Perfection: Aaron Rodgers finishes with perfect passer rating vs. Raiders |url=https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |url-status=live |archive-url=https://web.archive.org/web/20191020214833/https://packerswire.usatoday.com/2019/10/20/perfection-aaron-rodgers-finishes-with-perfect-passer-rating-vs-raiders/ |archive-date=October 20, 2019 |access-date=October 20, 2019 |website=PackersWire}}</ref> Na dem name am de NFC Offensive Player of de Week for ein performance.<ref>{{Cite web |last=Bergman |first=Jeremy |date=October 23, 2019 |title=Aaron Rodgers, Jacoby Brissett among Players of the Week |url=https://www.nfl.com/news/aaron-rodgers-jacoby-brissett-among-players-of-the-week-0ap3000001068643 |url-status=live |archive-url=https://web.archive.org/web/20191023124430/http://www.nfl.com/news/story/0ap3000001068643/article/aaron-rodgers-jacoby-brissett-among-players-of-the-week |archive-date=October 23, 2019 |access-date=October 23, 2019 |publisher=National Football League}}</ref> Insyd Week 17, against de Lions, Rodgers help lead de team to a 23–20 comeback win. As a result of de victory, de Packers secure a first round bye insyd de playoffs.<ref>{{Cite web |date=December 29, 2019 |title=Packers barely beat Lions 23–20 to earn first-round bye |url=https://www.espn.com/nfl/recap?gameId=401127983 |url-status=live |archive-url=https://web.archive.org/web/20220415135127/https://www.espn.com/nfl/recap?gameId=401127983 |archive-date=April 15, 2022 |access-date=December 29, 2019 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Rodgers fini de 2019 season plus 4,002 passing yards, 26 passing touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2019 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |url-status=live |archive-url=https://web.archive.org/web/20191231012649/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2019/ |archive-date=December 31, 2019 |access-date=December 31, 2019 |website=[[Pro Football Reference]]}}</ref>
Insyd de Divisional Round of de playoffs against de Seahawks, Rodgers plete 16 passes on 27 attempts wey he throw for 243 yards den two touchdowns during de 28–23 win.<ref>{{Cite web |date=January 12, 2020 |title=Packers hold off Seahawks 28–23 to reach NFC title game |url=https://www.espn.com/nfl/recap?gameId=401131042 |url-status=live |archive-url=https://web.archive.org/web/20200417042143/https://www.espn.com/nfl/recap?gameId=401131042 |archive-date=April 17, 2020 |access-date=January 13, 2020 |website=[[ESPN.com]] |agency=Associated Press}}</ref> Insyd de NFC Championship Game against de 49ers, Rodgers plete 31 passes on 39 attempts wey he throw for 326 yards den two touchdowns, buh he sanso throw two interceptions, wey dey include one to [[Richard Sherman (American football)|Richard Sherman]] insyd de final two minutes of de game as de Packers loose 37–20.<ref>{{Cite web |last=Wagner-McGough |first=Sean |date=January 19, 2020 |title=Packers suffer system-wide failure in ugly NFC Championship loss as clock ticks on the Aaron Rodgers era |url=https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |url-status=live |archive-url=https://web.archive.org/web/20200121163627/https://www.cbssports.com/nfl/news/packers-suffer-system-wide-failure-in-ugly-nfc-championship-loss-as-clock-ticks-on-the-aaron-rodgers-era/ |archive-date=January 21, 2020 |access-date=January 20, 2020 |website=CBS Sports}}</ref> De loss mark Rodgers ein third consecutive NFC Championship loss (a streak wey go extend to four de following season).<ref name="Clunker">{{Cite web |last=Reischel |first=Rob |date=January 19, 2020 |title=Green Bay Packers' Aaron Rodgers Has Another NFC Championship Game Clunker |url=https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |url-status=live |archive-url=https://web.archive.org/web/20200120124354/https://www.forbes.com/sites/robreischel/2020/01/19/green-bay-packers-quarterback-aaron-rodgers-has-another-nfc-championship-game-clunker/ |archive-date=January 20, 2020 |access-date=January 22, 2020 |website=Forbes}}</ref> Na dem rank am 16th by ein fellow players on de ''NFL Top 100'' Players of 2020.<ref>{{Cite web |title=2020 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200015/https://www.pro-football-reference.com/awards/2020-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2020: Third MVP ====
Prior to a Week 5 bye, Rodgers help lead de Packers to a four-game winning streak to start de 2020 season.<ref>{{Cite web |date=October 7, 2020 |title=Packers head into their Week 5 bye |url=https://www.packers.com/news/packers-head-into-their-week-5-bye |url-status=live |archive-url=https://web.archive.org/web/20211115190601/https://www.packers.com/news/packers-head-into-their-week-5-bye |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=packers.com |language=en-US}}</ref> That winning streak go end insyd Week 6 against de Buccaneers, insyd wich Rodgers throw for 160 yards den two interceptions, wey dey include a pick-six (de third of ein professional career), during de 38–10 loss.<ref>{{Cite web |title=Green Bay Packers at Tampa Bay Buccaneers – October 18th, 2020 |url=https://www.pro-football-reference.com/boxscores/202010180tam.htm |url-status=live |archive-url=https://web.archive.org/web/20201019130703/https://www.pro-football-reference.com/boxscores/202010180tam.htm |archive-date=October 19, 2020 |access-date=October 22, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> After a 3–2 stretch give de team, Rodgers throw for 211 yards den four touchdowns insyd a 41–25 victory over de Bears insyd Week 12. During de game, he cam be de 11th player insyd NFL history to eclipse 50,000 career passing yards, achieving de milestone on a 39-yard touchdown pass to tight end [[Robert Tonyan]] midway thru de third quarter.<ref>{{Cite magazine|last=Huber|first=Bill|date=November 29, 2020|title=Rodgers Makes History with 50,000-Yard Milestone|url=https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|url-status=live|archive-url=https://web.archive.org/web/20201130035319/https://www.si.com/nfl/packers/gameday/rodgers-makes-history-with-50000-yard-milestone|archive-date=November 30, 2020|access-date=November 30, 2020|magazine=Sports Illustrated}}</ref> In Week 13 against de Eagles, Rodgers throw for 295 yards den three touchdowns during de 30–16 win. Rodgers ein third touchdown pass of de game be to wide receiver [[Davante Adams]] wey na e be ein 400th career touchdown pass.<ref>{{Cite web |title=Philadelphia Eagles at Green Bay Packers – December 6th, 2020 |url=https://www.pro-football-reference.com/boxscores/202012060gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20201125163729/https://www.pro-football-reference.com/boxscores/202012060gnb.htm |archive-date=November 25, 2020 |access-date=December 8, 2020 |website=[[Pro Football Reference]] |language=en}}</ref> Na dem name Rodgers de NFC Offensive Player of de Week for ein performance insyd Week 13.<ref>{{Cite web |last=Gordon |first=Grant |date=December 9, 2020 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |url-status=live |archive-url=https://web.archive.org/web/20201209165050/https://www.nfl.com/news/players-of-the-week-aaron-rodgers-josh-allen-kyle-van-noy-leonard-williams |archive-date=December 9, 2020 |access-date=December 10, 2020 |publisher=National Football League |language=en-US}}</ref> On December 21, 2020, na dem select am for de 2021 Pro Bowl.<ref>{{Cite web |date=December 21, 2020 |title=NFL reveals complete AFC, NFC rosters for 2021 Pro Bowl |url=https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |url-status=live |archive-url=https://web.archive.org/web/20201222000525/https://www.nfl.com/news/nfl-reveals-complete-afc-nfc-rosters-for-2021-pro-bowl |archive-date=December 22, 2020 |access-date=December 21, 2020 |publisher=National Football League}}</ref> N dem name Rodgers de NFC Offensive Player of de Month for ein performance insyd December after passing for 15 touchdowns den one interception insyd five victories for de Packers.<ref>{{Cite web |last=Gordon |first=Grant |date=January 7, 2021 |title=Packers QB Aaron Rodgers, Bills QB Josh Allen among Players of the Month |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20210107133506/https://www.nfl.com/news/packers-qb-aaron-rodgers-bills-qb-josh-allen-among-players-of-the-month |archive-date=January 7, 2021 |access-date=January 7, 2021 |publisher=National Football League}}</ref>
Overall, Rodgers fini de 2020 regular season plus 4,299 passing yards, 48 passing touchdowns, den five interceptions. Ein passing touchdowns total set a new franchise record.<ref name="single">{{Cite web |title=Green Bay Packers Single-Season Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |url-status=live |archive-url=https://web.archive.org/web/20220323123008/https://www.pro-football-reference.com/teams/gnb/single-season-passing.htm |archive-date=March 23, 2022 |access-date=May 24, 2022 |website=[[Pro Football Reference]] |language=en}}</ref> He get seven total games plus four passing touchdowns.<ref>{{Cite web |title=Aaron Rodgers 2020 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |url-status=live |archive-url=https://web.archive.org/web/20210109144744/https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2020/ |archive-date=January 9, 2021 |access-date=January 7, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> He lead de league insyd numerous statistical categories, wey dey include completion percentage, touchdown passes, den passer rating.<ref>{{Cite web |last=Kruse |first=Zach |date=January 4, 2021 |title=Packers QB Aaron Rodgers led NFL in all these statistical categories in 2020 |url=https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |url-status=live |archive-url=https://web.archive.org/web/20210104150141/https://packerswire.usatoday.com/2021/01/04/packers-qb-aaron-rodgers-led-nfl-in-all-these-statistical-categories-in-2020/ |archive-date=January 4, 2021 |access-date=January 7, 2021 |website=Packers Wire |language=en-US}}</ref> On January 8, 2021, he make de 2020 All-Pro Team first-team.<ref>{{Cite web |date=January 8, 2021 |title=2020 NFL All-Pro Team Roster |url=https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |url-status=live |archive-url=https://web.archive.org/web/20210108171953/https://apnews.com/article/nfl-new-york-kansas-david-bakhtiari-myles-garrett-1596423dbed4c2137b4a6e24281faad6 |archive-date=January 8, 2021 |access-date=January 8, 2021 |work=Associated Press News}}</ref> De Pro Football Writers of America name am de NFL MVP.<ref>{{Cite web |last=Werner |first=Barry |date=January 21, 2021 |title=Aaron Rodgers earns PFWA NFL MVP honors |url=https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |url-status=live |archive-url=https://web.archive.org/web/20210131171403/https://sports.yahoo.com/aaron-rodgers-earns-pfwa-nfl-191724769.html |archive-date=January 31, 2021 |access-date=January 24, 2021 |website=Yahoo! Sports}}</ref>
De Packers fini plus a 13–3 record, dem win de NFC North, wey dem earn a first-round bye for de NFC playoffs.<ref>{{Cite web |title=2020 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2020/index.htm |url-status=live |archive-url=https://web.archive.org/web/20211115190600/https://www.pro-football-reference.com/years/2020/index.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de Divisional Round of de playoffs against de Rams, Rodgers throw for 296 yards den two touchdowns wey he sanso rush for anoda touchdown during de 32–18 win.<ref>{{Cite web |title=Divisional Round – Los Angeles Rams at Green Bay Packers – January 16th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101160gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210118220025/https://www.pro-football-reference.com/boxscores/202101160gnb.htm |archive-date=January 18, 2021 |access-date=January 20, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> Insyd de NFC Championship against de Buccaneers, Rodgers throw for 346 yards den three touchdowns, buh he sanso throw an interception wey na he be sacked five times while he be constantly pressured during de 31–26 loss.<ref name="mcatee_01242021">{{Cite news|last=McAtee|first=Riley|date=January 24, 2021|title=The Packers' Championship-Game Curse Continues. Will It Cost Them Aaron Rodgers?|work=The Ringer|url=https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125040540/https://www.theringer.com/nfl-playoffs/2021/1/24/22247784/packers-lose-nfc-championship-aaron-rodgers-future-questions|archive-date=January 25, 2021}}</ref><ref>{{Cite news|last=Hoffman|first=Benjamin|date=January 24, 2021|title=What We Learned From the N.F.L.'s Conference Championships|work=The New York Times|url=https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|url-status=live|access-date=January 25, 2021|archive-url=https://web.archive.org/web/20210125041821/https://www.nytimes.com/2021/01/24/sports/football/nfl-super-bowl-chiefs-buccaneers.html|archive-date=January 25, 2021}}</ref><ref name="demovsky_01242021">{{Cite web |last=Demovsky |first=Rob |date=January 24, 2021 |title=Aaron Rodgers uncertain about future with Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20210125195535/https://www.espn.com/nfl/story/_/id/30773237/aaron-rodgers-uncertain-future-green-bay-packers |archive-date=January 25, 2021 |access-date=January 25, 2021 |website=[[ESPN.com]]}}</ref> Rodgers fall to 1–4 insyd conference championship games, becoming de first quarterback insyd NFL history to loose four in a row.<ref name="mcatee_01242021" /><ref name="demovsky_01242021" /><ref>{{Cite web |title=NFC Championship – Tampa Bay Buccaneers at Green Bay Packers – January 24th, 2021 |url=https://www.pro-football-reference.com/boxscores/202101240gnb.htm |url-status=live |archive-url=https://web.archive.org/web/20210129001224/https://www.pro-football-reference.com/boxscores/202101240gnb.htm |archive-date=January 29, 2021 |access-date=January 31, 2021 |website=[[Pro Football Reference]] |language=en}}</ref> After de season, he win de AP Most Valuable Player Award<ref>{{Cite web |last=Shook |first=Nick |date=February 6, 2021 |title=Packers QB Aaron Rodgers named 2020 AP NFL Most Valuable Player |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |url-status=live |archive-url=https://web.archive.org/web/20210207034518/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2020-ap-nfl-most-valuable-player |archive-date=February 7, 2021 |access-date=February 6, 2021 |publisher=National Football League}}</ref> as well as de FedEx Air Player of de Year.<ref>{{Cite web |title=FedEx Air and Ground Players of the Year |url=https://www.nfl.com/voting/air-and-ground/player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20210125192004/https://www.nfl.com/voting/air-and-ground/player-of-the-year |archive-date=January 25, 2021 |access-date=January 25, 2021 |publisher=National Football League}}</ref> Na dem rank am 3rd by ein fellow players on de ''NFL Top 100'' Players of 2021.<ref>{{Cite web |title=2021 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |url-status=live |archive-url=https://web.archive.org/web/20211115200023/https://www.pro-football-reference.com/awards/2021-nfl-top-100.htm |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2021: Fourth MVP ====
[[File:Aaron_Rodgers_Packers_OCT2021_(cropped).jpg|right|thumb|Rodgers insyd 2021]]
Rodgers ein 2021 season get a rough start, as he plete 15 of 28 passes for 133 yards den two interceptions as Green Bay loose 38–3 to de Saints at TIAA Bank Field.<ref>{{Cite web |last=Benjamin |first=Cody |date=September 12, 2021 |title=Packers bench Aaron Rodgers for Jordan Love as Jameis Winston torches Green Bay in Week 1 |url=https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |url-status=live |archive-url=https://web.archive.org/web/20210913012242/https://www.cbssports.com/nfl/news/packers-bench-aaron-rodgers-for-jordan-love-as-jameis-winston-torches-green-bay-in-week-1/ |archive-date=September 13, 2021 |access-date=September 13, 2021 |website=CBS Sports |language=en}}</ref> Na dem pull am insyd de fourth quarter for [[Jordan Love]] as na ein chance of a comeback be all buh eliminated.<ref>{{Cite web |last=Polacek |first=Scott |date=September 12, 2021 |title=Packers' Aaron Rodgers Pulled for Jordan Love amid Blowout by Jameis Winston, Saints |url=https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |url-status=live |archive-url=https://web.archive.org/web/20211021021121/https://bleacherreport.com/articles/10012272-packers-aaron-rodgers-pulled-for-jordan-love-amid-blowout-by-jameis-winston-saints |archive-date=October 21, 2021 |access-date=October 21, 2021 |website=Bleacher Report |language=en}}</ref> However, Rodgers dem de Packers recover, going on a seven-game winning streak following de loss to New Orleans.<ref>{{Cite web |last1=Hodkiewicz |first1=Wes |last2=Spofford |first2=Mike |date=October 28, 2021 |title=Late interception wins it for Packers, 24–21 over Cardinals |url=https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |url-status=live |archive-url=https://web.archive.org/web/20211030160810/https://www.packers.com/news/packers-cardinals-in-game-updates-week-8-2021 |archive-date=October 30, 2021 |access-date=October 30, 2021 |website=packers.com |language=en-US}}</ref>
Insyd Week 6, Rodgers seal a 24–14 victory against de Bears plus a six-yard touchdown run with 4:34 to go insyd de fourth quarter. During ein celebration, he yell at de Chicago crowd, "''All my f***ing life I own you! I still own you!"''<ref>{{cite web |last1=Demovsky |first1=Rob |date=October 17, 2021 |title=Packers QB Aaron Rodgers taunts jeering Bears fans after game-clinching TD run: 'I still own you' |url=https://www.espn.com/nfl/story/_/id/32419669/packers-qb-aaron-rodgers-taunts-jeering-bears-fans-game-clinching-td-run-own-you |access-date=September 3, 2025 |website=ESPN.com |publisher=ESPN}}</ref> Na de utterance be heavily discussed insyd ein aftermath, den two months later- wen Rodgers play de second game against Chicago- he state say na he get no regrets for making de comment.<ref>{{cite web |last1=Goodbread |first1=Chase |date=December 9, 2021 |title=Packers QB Aaron Rodgers has no regrets for saying 'I own you' to Bears fan |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-has-no-regrets-for-saying-i-own-you-to-bears-fan |access-date=September 3, 2025 |website=NFL.com |publisher=NFL}}</ref>
Following a positive test for [[COVID-19]], na dem place Rodgers on de COVID-19 reserve list on November 3.<ref>{{Cite web |date=November 3, 2021 |title=Packers place QB Aaron Rodgers on reserve/COVID-19 list |url=https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211107032353/https://www.packers.com/news/packers-place-qb-aaron-rodgers-on-reserve-covid-19-list |archive-date=November 7, 2021 |access-date=November 15, 2021 |website=Packers.com}}</ref> He miss 10 days per de league ein COVID-19 policies for unvaccinated players, wey dey include a game against de Chiefs.<ref>{{Cite web |last=Shook |first=Nick |date=November 3, 2021 |title=Packers QB Aaron Rodgers tests positive for COVID-19, will not play in Week 9 versus Chiefs |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |url-status=live |archive-url=https://web.archive.org/web/20211103152721/https://www.nfl.com/news/packers-qb-aaron-rodgers-tests-positive-for-covid-19-will-not-play-in-week-9-ver |archive-date=November 3, 2021 |access-date=November 3, 2021 |publisher=National Football League}}</ref> Despite answering "''Yeah, I'm immunized''" wen dem biz am during de preseason if na he be vaccinated against COVID-19, na he no actually receive a vaccination. Instead, he receive homeopathic treatment from ein personal doctor. While unvaccinated, he commit multiple violations of NFL COVID-19 protocols for unvaccinated players, wey dey include attending parties plus teammates while he no dey use PPE den dey appear unmasked at multiple postgame press conferences.<ref>{{Cite news|last=Jenkins|first=Sally|date=November 4, 2021|title=Aaron Rodgers is entitled to stay unvaccinated. He's not entitled to lie about it|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211105053620/https://www.washingtonpost.com/sports/2021/11/04/nfl-aaron-rodgers-vaccine/|archive-date=November 5, 2021}}</ref><ref>{{Cite web |last=Shpigel |first=Ben |date=November 3, 2021 |title=Aaron Rodgers Out After Positive Coronavirus Test |url=https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |url-status=live |archive-url=https://web.archive.org/web/20211105230713/https://www.nytimes.com/2021/11/03/sports/football/aaron-rodgers-covid-vaccinated-packers.html |archive-date=November 5, 2021 |access-date=November 6, 2021 |website=[[The New York Times]]}}</ref><ref>{{Cite news|last=Maske|first=Mark|date=November 3, 2021|title=Aaron Rodgers tests positive for coronavirus, is considered unvaccinated under NFL rules|newspaper=[[The Washington Post]]|url=https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|url-status=live|access-date=November 6, 2021|archive-url=https://web.archive.org/web/20211103182339/https://www.washingtonpost.com/sports/2021/11/03/aaron-rodgers-coronavirus/|archive-date=November 3, 2021}}</ref><ref name="Paras">{{Cite web |last=Paras |first=Matthew |date=November 8, 2021 |title=State Farm backs Rodgers despite vaccine controversy |url=https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |url-status=live |archive-url=https://web.archive.org/web/20211110054603/https://www.washingtontimes.com/news/2021/nov/8/state-farm-backs-aaron-rodgers-despite-vaccine-con/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=The Washington Times |language=en-US}}</ref><ref>{{Cite web |last=Florio |first=Mike |date=November 6, 2021 |title=Aaron Rodgers consulted with Joe Rogan, has taken Ivermectin |url=https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |url-status=live |archive-url=https://web.archive.org/web/20211110054606/https://profootballtalk.nbcsports.com/2021/11/05/aaron-rodgers-consulted-with-joe-rogan-has-taken-ivermectin/ |archive-date=November 10, 2021 |access-date=November 10, 2021 |website=ProFootballTalk |language=en-US}}</ref> After a review, na dem fine am $14,650 for violations of de agreed protocols wey na ein team be fined $300,000.<ref name="demosky1">{{Cite web |last=Demovsky |first=Rob |date=November 10, 2021 |title=Green Bay Packers, Aaron Rodgers, Allen Lazard fined for COVID-19 protocol violations, source says |url=https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |url-status=live |archive-url=https://web.archive.org/web/20220417022230/https://www.espn.com.au/nfl/story/_/id/32593729/green-bay-packers-aaron-rodgers-allen-lazard-fined-covid-19-protocol-violations-source-says |archive-date=April 17, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]]}}</ref><ref name="gordon1">{{Cite web |last=Gordon |first=Grant |date=November 9, 2021 |title=Packers fined $300K, Aaron Rodgers, Allen Lazard fined $14K for violation of COVID protocols |url=https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |url-status=live |archive-url=https://web.archive.org/web/20220415084129/https://www.nfl.com/news/packers-fined-300k-aaron-rodgers-allen-lazard-fined-14k-for-violation-of-covid-p |archive-date=April 15, 2022 |access-date=January 23, 2022 |publisher=National Football League}}</ref>
Na Rodgers be activated off de reserve/COVID-19 list on November 13, wey he return to play de next day against de Seahawks, a game de Packers win 17–0.<ref>{{Cite web |date=November 13, 2021 |title=Packers activate QB Aaron Rodgers off reserve/COVID-19 list |url=https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |url-status=live |archive-url=https://web.archive.org/web/20211113210134/https://www.packers.com/news/packers-activate-qb-aaron-rodgers-off-reserve-covid-19-list |archive-date=November 13, 2021 |access-date=November 13, 2021 |website=Packers.com}}</ref> Insyd Week 15, Rodgers throw for 268 yards den three touchdowns insyd a 31–30 win over de Ravens, wich clinch de NFC North title give de Packers for a third consecutive season wey e earn am NFC Offensive Player of de Week honors.<ref>{{Cite web |last=Gordon |first=Grant |date=December 22, 2021 |title=Packers QB Aaron Rodgers, Chiefs TE Travis Kelce lead Players of the Week |url=https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |url-status=live |archive-url=https://web.archive.org/web/20220113012121/https://www.nfl.com/news/players-of-the-week-2021-week-15-aaron-rodgers-travis-kelce |archive-date=January 13, 2022 |access-date=January 17, 2022 |publisher=National Football League}}</ref> On December 23, 2021, na dem name Rodgers to ein tenth Pro Bowl.<ref>{{Cite web |date=December 22, 2021 |title=2022 NFL Pro Bowl rosters for AFC, NFC: Bucs' Tom Brady gets record 15th selection |url=https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |url-status=live |archive-url=https://web.archive.org/web/20211228200849/https://www.espn.com/nfl/story/_/id/32918868/2022-nfl-pro-bowl-rosters-afc-nfc-bucs-tom-brady-gets-record-15th-selection |archive-date=December 28, 2021 |access-date=December 24, 2021 |website=[[ESPN.com]]}}</ref>
Insyd a Week 16 victory over de Browns, Rodgers throw ein 443rd career touchdown pass, passing Brett Favre for de most all-time career touchdown passes insyd Packers history.<ref>{{Cite web |last=Demovsky |first=Rob |date=December 25, 2021 |title=Rodgers tops Favre's Pack record for TD passes |url=https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |url-status=live |archive-url=https://web.archive.org/web/20211227221346/https://www.espn.com/nfl/story/_/id/32936652/aaron-rodgers-surpasses-brett-favre-443rd-touchdown-pass-green-bay-packers-career |archive-date=December 27, 2021 |access-date=January 17, 2022 |website=[[ESPN.com]] |language=en}}</ref> For ein play insyd de month of December, Rodgers earn NFC Offensive Player of de Month honors.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=December 30, 2021 |title=For 10th time, Packers QB Aaron Rodgers named NFC Offensive Player of the Month |url=https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month |url-status=live |archive-url=https://web.archive.org/web/20220104191144/https://www.packers.com/news/for-10th-time-packers-qb-aaron-rodgers-named-nfc-offensive-player-of-the-month#:~:text=GREEN%2520BAY%2520%25E2%2580%2593%2520Following%2520a%2520dominant,10th%2520time%2520in%2520his%2520career |archive-date=January 4, 2022 |access-date=January 17, 2022 |website=Packers.com |language=en-US}}</ref> He fini de 2021 season plus 4,115 passing yards, 37 touchdowns, den four interceptions.<ref>{{Cite web |title=Aaron Rodgers 2021 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2021/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> On January 14, 2022, Rodgers earn ein fourth career first-team All-Pro selection.<ref>{{Cite web |last=Hodkiewicz |first=Wes |date=January 14, 2022 |title=Three Packers players named first-team All-Pro |url=https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |url-status=live |archive-url=https://web.archive.org/web/20220116105423/https://www.packers.com/news/three-packers-players-named-first-team-all-pro-2021-season |archive-date=January 16, 2022 |access-date=January 14, 2022 |website=packers.com}}</ref>
Insyd de Divisional Round against de 49ers, Rodgers throw for 225 yards, buh a poor performance by de special teams unit haunt de Packers, dem loose 13–10. Na e be Rodgers ein fourth loss insyd as many games to de 49ers insyd de postseason den Rodgers ein second home divisional loss.<ref name="Graziano">{{Cite web |last=Graziano |first=Dan |date=January 23, 2022 |title=Is this the way it ends for Aaron Rodgers? Why what-ifs and a 'beautiful mystery' linger in Green Bay |url=https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220413121903/https://www.espn.com/nfl/story/_/id/33127534/is-way-ends-aaron-rodgers-why-ifs-beautiful-mystery-linger-green-bay-packers |archive-date=April 13, 2022 |access-date=January 23, 2022 |website=[[ESPN.com]] |language=en}}</ref> He sanso fail to notice a wide–open Allen Lazard (den [[Equanimeous St. Brown]]) on ein last throw of de game, instead targeting Davante Adams insyd double coverage for a Hail Mary attempt.<ref>{{Cite web |last=Farrar |first=Doug |title=What Aaron Rodgers missed on the play that could have saved the Packers' season |url=https://touchdownwire.usatoday.com/story/sports/nfl/touchdown/2022/01/23/aaron-rodgers-davante-adams-allen-lazard-2021-nfl-playoffs/80662791007/ |access-date=2026-08-06 |website=Touchdown Wire |language=en-US}}</ref> After de season, Rodgers win de AP NFL Most Valuable Player Award for de second consecutive season den de fourth time overall.<ref>{{Cite web |last=Shook |first=Nick |date=February 10, 2022 |title=Packers QB Aaron Rodgers named 2021 AP NFL MVP |url=https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |url-status=live |archive-url=https://web.archive.org/web/20220425153314/https://www.nfl.com/news/packers-qb-aaron-rodgers-named-2021-ap-nfl-mvp |archive-date=April 25, 2022 |access-date=February 11, 2022 |publisher=National Football League}}</ref> Rodgers cam be de fifth player to win consecutive MVPs den first since Peyton Manning between 2008 den 2009.<ref>{{Cite web |last=Sutelan |first=Edward |date=February 10, 2022 |title=NFL MVP back-to-back winners: Aaron Rodgers set to join rare company in NFL history |url=https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |url-status=live |archive-url=https://web.archive.org/web/20220413074439/https://www.sportingnews.com/us/nfl/news/nfl-mvp-back-to-back-winners-aaron-rodgers/ffpfof1amipb6lpuwenfvgiv |archive-date=April 13, 2022 |access-date=February 20, 2022 |website=sportingnews.com |language=en}}</ref> Rodgers join Manning as de only players insyd NFL history to win at least four MVPs.<ref>{{Cite web |last=Spofford |first=Mike |date=February 10, 2022 |title=Packers QB Aaron Rodgers wins fourth NFL MVP award |url=https://www.packers.com/news/packers-qb-aaron-rodgers-wins-fourth-nfl-mvp-award |access-date=January 19, 2023 |website=packers.com |language=en-US}}</ref> Na dem rank am third by ein fellow players on de ''NFL Top 100'' Players of 2022.<ref>{{Cite web |title=2022 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2022-nfl-top-100.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
==== 2022 ====
[[File:Aaron_Rodgers_OCT2022_(cropped).jpg|thumb|Rodgers insyd 2022]]
[[File:Aaron_Rodgers_Packers_vs_Commanders_OCT2022.jpg|left|thumb|Rodgers dey play against de Washington Commanders insyd 2022]]
On March 8, Rodgers confirm say he go return den play give de Packers for de 2022 season after speculations dat Rodgers go fi retire anaa demand a trade to anoda team.<ref>{{Cite web |last=Demovsky |first=Rob |date=March 8, 2021 |title=QB Aaron Rodgers returning to play for Green Bay Packers |url=https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |url-status=live |archive-url=https://web.archive.org/web/20220411070329/https://www.espn.com/nfl/story/_/id/33453495/qb-aaron-rodgers-returning-play-green-bay-packers |archive-date=April 11, 2022 |access-date=March 9, 2021 |website=[[ESPN.com]]}}</ref> Na der be reports say Rodgers den de Packers agree to terms on a 4-year, $200 million contract extension wey go make am de highest-paid player insyd NFL history, buh Rodgers deny those reports on Twitter, wey he state say de numbers on de proposed contract be inaccurate, den dat he be yet to sign such a contract. He confirm, however, say he go return to play ein 18th NFL season plus de Packers.<ref>{{Cite web |date=March 15, 2022 |title=Packers sign QB Aaron Rodgers to contract extension |url=https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |url-status=live |archive-url=https://web.archive.org/web/20220404205504/https://www.packers.com/news/packers-sign-qb-aaron-rodgers-to-contract-extension-march-2022 |archive-date=April 4, 2022 |access-date=April 27, 2022 |website=Packers.com}}</ref>
On March 16, he officially sign ein contract extension. Na de final terms of de contract be a 3-year contract (wich replace de final year of ein existing contract) worth $150.8 million, plus $101.5 million guaranteed. De new contract make am de highest paid player insyd North American sports history on an annual basis, surpassing de NBA ein [[Damian Lillard]] ein $49 million per annum contract.<ref>{{Cite web |last=Roscher |first=Liz |date=March 15, 2022 |title=Aaron Rodgers' Packers contract is reportedly official, and the numbers are staggering |url=https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |url-status=live |archive-url=https://web.archive.org/web/20220427025539/https://sports.yahoo.com/nfl-aaron-rodgers-packers-contract-is-reportedly-official-and-the-numbers-are-staggering-135246201.html |archive-date=April 27, 2022 |access-date=March 17, 2022 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd de season opener against de Vikings, Rodgers throw for 195 yards den an interception insyd de 23–7 loss.<ref>{{Cite web |last=Demovsky |first=Rob |date=September 12, 2022 |title=Following loss to Minnesota Vikings, QB Aaron Rodgers says Green Bay Packers 'hurting ourselves' with 'too many mental mistakes' |url=https://www.espn.com/nfl/story/_/id/34575984/following-loss-minnesota-vikings-qb-aaron-rodgers-says-green-bay-packers-hurting-ourselves-too-many-mental-mistakes |access-date=September 12, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{cite web |last=Huber |first=Bill |date=September 12, 2022 |title=Mental Mistakes Frustrate Rodgers in Packers' Loss at Vikings |url=https://www.si.com/nfl/packers/gameday/mental-mistakes-frustrate-rodgers-in-packers-loss-at-vikings |access-date=July 1, 2025 |website=SI.com}}</ref> Insyd Week 4 against de Patriots, Rodgers throw for 251 yards den two touchdowns, buh he sanso throw ein fourth career pick-six to [[Jack Jones (American football)|Jack Jones]] insyd de 27–24 overtime win.<ref>{{Cite web |last=Patra |first=Kevin |date=October 3, 2022 |title=Aaron Rodgers on Packers' OT win over Patriots: 'This way of winning, I don't think, is sustainable' |url=https://www.nfl.com/news/aaron-rodgers-packers-patriots-this-way-of-winning-not-sustainable |access-date=October 13, 2022 |publisher=National Football League}}</ref> Insyd Week 5 at London, Rodgers throw for 222 yards den two touchdowns insyd an upset loss against de Giants.<ref>{{Cite news|last=Larrison|first=Ryan|date=October 9, 2022|title=Aaron Rodgers threw two touchdowns in a loss at London|url=https://www.rotoballer.com/player-news/aaron-rodgers-throws-two-touchdowns-during-loss-in-london/1079701|access-date=October 10, 2022|website=rotoballer.com}}</ref> Insyd Week 8 against de Buffalo Bills on Sunday Night Football, Rodgers throw for 203 yards, two touchdowns den one interception as de Packers loose dema fourth consecutive game insyd de 27–17 defeat.<ref>{{Cite web |last=Patra |first=Kevin |date=October 31, 2022 |title=Aaron Rodgers on the Packers' 3–5 start |url=https://www.nfl.com/news/aaron-rodgers-packers-3-5-start-nobody-feels-sorry-for-us-bills |access-date=November 5, 2022 |publisher=National Football League |language=en-US}}</ref> De next week against de Lions, Rodgers throw for 291 yards, a touchdown, den three interceptions insyd de 15–9 loss. Na e be de first time since Week 15 of de 2017 season wey Rodgers throw three interceptions insyd a game.<ref>{{Cite web |date=November 6, 2022 |title=Aaron Rodgers throws 3 INTs, lets Lions beat Packers 15–9 |url=https://www.cbssports.com/nfl/news/aaron-rodgers-throws-3-ints-lets-lions-beat-packers-15-9/ |access-date=November 6, 2022 |website=CBSSports.com |language=en |agency=Associated Press}}</ref> Rodgers bounce back de following week against de Cowboys, completing 14-of-20 passes for 224 yards den three touchdowns insyd 31–28 overtime victory.<ref>{{Cite web |last=Bubel |first=Jennifer |date=November 13, 2022 |title=Dallas Cowboys vs. Green Bay Packers: Stats, Scores, Highlights |url=https://en.as.com/nfl/dallas-cowboys-vs-green-bay-packers-live-online-stats-scores-and-highlights-nfl-week-10-n/ |access-date=November 15, 2022 |website=AS USA |language=en-us}}</ref><ref>{{Cite web |date=November 13, 2022 |title=Rodgers rallies Packers past McCarthy's Cowboys 31–28 in OT |url=https://www.espn.com/nfl/recap/_/gameId/401437131 |access-date=November 15, 2022 |website=[[ESPN.com]] |language=en-us |agency=Associated Press}}</ref> Following a Week 11 loss to de Titans, Rodgers confirm na he dey play plus a broken thumb on ein throwing hand he suffer insyd Week 5.<ref>{{Cite web |last=Alper |first=Josh |date=November 23, 2022 |title=Aaron Rodgers says he's been playing with a broken thumb |url=https://profootballtalk.nbcsports.com/2022/11/23/aaron-rodgers-says-hes-been-playing-with-a-broken-thumb/ |access-date=December 2, 2022 |website=ProFootballTalk |language=en-US}}</ref><ref>{{Cite web |last=Thompson |first=Scott |date=November 23, 2022 |title=Packers' Aaron Rodgers admits playing through broken thumb since Week 5 |url=https://www.foxnews.com/sports/packers-aaron-rodgers-admits-playing-through-broken-thumb-since-week-5 |access-date=November 24, 2022 |publisher=Fox News}}</ref> A Week 12 loss to de Eagles lef de Packers plus a 4–8 record, buh na de team rally off four consecutive wins to get to 8–8 before de regular season finale.<ref>{{Cite web |title=Green Bay Packers 2022 Games and Schedule |url=https://www.pro-football-reference.com/teams/gnb/2022/gamelog/ |access-date=January 20, 2023 |website=[[Pro Football Reference]] |language=en}}</ref> De Packers fini plus an 8–9 record wey he miss de postseason following a Week 18 loss to de Detroit Lions insyd a win-and-in scenario for Green Bay.<ref>{{Cite web |title=2022 NFL Standings & Team Stats |url=https://www.pro-football-reference.com/years/2022/index.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |date=January 9, 2023 |title=How the Lions beat the Packers: Detroit eliminates rival Green Bay from playoff contention, Seahawks clinch final spot |url=https://www.nytimes.com/athletic/live-blogs/lions-packers-playoff-picture-seeding/Vj6r382oO6N1/ |access-date=January 20, 2023 |website=The Athletic |language=en}}</ref> After de game, Rodgers put ein arm around long-time teammate Cobb, wey he look solemnly around Lambeau Field before de two walked down de tunnel togeda. Sam suspected say dis indicate say Rodgers play ein last game give de Packers.<ref>{{Cite web |last=McKenna |first=Henry |date=January 9, 2023 |title=Has Packers legend Aaron Rodgers walked off Lambeau Field for the last time? |url=https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |url-status=live |archive-url=https://web.archive.org/web/20230109203158/https://www.foxsports.com/stories/nfl/has-packers-legend-aaron-rodgers-walked-off-lambeau-field-for-the-last-time |archive-date=January 9, 2023 |access-date=April 5, 2026 |website=[[Fox Sports]] |publisher=[[Fox Corporation]]}}</ref>
Rodgers fini de 2022 season plus 3,695 passing yards, 26 touchdowns, den 12 interceptions, wich mark de most for Rodgers insyd a single season since 2008.<ref>{{Cite web |title=Aaron Rodgers 2022 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2022/ |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref><ref>{{Cite web |last=Kruse |first=Zach |date=January 9, 2023 |title=Aaron Rodgers throws interception on final pass of disappointing 2022 season |url=https://news.yahoo.com/aaron-rodgers-throws-interception-final-144926791.html |access-date=January 19, 2023 |publisher=Yahoo! News |language=en-US}}</ref> Na dem rank am 51st by ein fellow players on de ''NFL Top 100'' Players of 2023.<ref>{{Cite web |title=2023 NFL Top 100 |url=https://www.pro-football-reference.com/awards/2023-nfl-top-100.htm |access-date=January 20, 2024 |website=[[Pro Football Reference]] |language=en}}</ref>
=== New York Jets ===
==== 2023: Achilles injury ====
[[File:Rodgers_vs_Bills_2.jpg|right|thumb|Rodgers (white, #8) dey take a snap against de Bills, shortly before ein injury.]]
On April 26, 2023, Rodgers be traded to de Jets, along plus de Packers dema first den fifth-round selections insyd de 2023 NFL draft, in exchange for de Jets dema first, second (via Cleveland) den sixth-round selections insyd de 2023 draft den a conditional second-round selection (wich na go convert to a first if Rodgers play 65% of de offensive snaps insyd 2023, buh na e it no happen) insyd de 2024 NFL draft.<ref>{{Cite web |last=Allen |first=Eric |date=April 26, 2023 |title=OFFICIAL Jets Acquire QB Aaron Rodgers From Green Bay Packers |url=https://www.newyorkjets.com/news/jets-acquire-qb-aaron-rodgers-from-green-bay-packers |access-date=July 28, 2023 |website=NewYorkJets.com}}</ref> De move echo de career path of ein predecessor Brett Favre, wey similarly spend over fifteen years as quarterback of de Packers before he be traded to de Jets.<ref>{{Cite web |last=Kerr |first=Jeff |date=April 24, 2023 |title=Aaron Rodgers traded to Jets: Ex-Packers QB taking eerily similar path as Brett Favre in journey to New York |url=https://www.cbssports.com/nfl/news/aaron-rodgers-traded-to-jets-ex-packers-qb-taking-eerily-similar-path-as-brett-favre-in-journey-to-new-york/ |access-date=May 1, 2023 |website=CBS Sports}}</ref> Although [[Joe Namath]] grant Rodgers permission to wear ein retired No. 12 jersey, Rodgers announce say he go return to wearing de No. 8 jersey, wich na he wear thru out ein college career plus de California Golden Bears.<ref>{{Cite web |last=Riccette |first=Billy |date=April 26, 2023 |title=Aaron Rodgers on number change: 'To me, No. 12 is Broadway Joe' |url=https://sports.yahoo.com/aaron-rodgers-number-change-no-185505111.html |access-date=July 19, 2023 |website=Yahoo! Sports}}</ref> On July 26, 2023, Rodgers take a pay cut wey he agree to a rework contract plus de Jets.<ref>{{cite web |last1=Cimini |first1=Rich |date=July 26, 2023 |title=Aaron Rodgers signs reworked contract with Jets |url=https://www.espn.com/nfl/story/_/id/38075863/aaron-rodgers-agrees-reworked-contract-jets |access-date=July 26, 2023 |website=[[ESPN.com]]}}</ref>
Making ein Jets debut insyd Week 1 on ''Monday Night Football'' against de Bills at MetLife Stadium, Rodgers injure ein left ankle on just ein fourth offensive snap after he be sacked by Bills dema defensive end [[Leonard Floyd]]. Na dem help Rodgers off de field wey dem later cart am to de locker room for further evaluation.<ref>{{Cite web |last=Cimini |first=Rich |date=September 12, 2023 |title=Jets fear QB Aaron Rodgers suffered serious Achilles injury |url=https://www.espn.com/nfl/story/_/id/38381823/qb-aaron-rodgers-injures-ankle-opening-drive-new-york-jets-debut |access-date=September 12, 2023 |website=[[ESPN.com]] |language=en}}</ref> Rodgers ein backup [[Zach Wilson]] go on to lead de Jets to a 22–16 win insyd overtime.<ref>{{Cite web |last=Kownack |first=Bobby |date=September 11, 2023 |title=Jets QB Aaron Rodgers exits Monday's overtime win against Bills on first drive; ankle X-rays negative |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-ankle-questionable-to-return-to-monday-s-game-against-bill |access-date=September 12, 2023 |website=NFL.com |language=en-US}}</ref> De next day, na dem diagnose Rodgers plus an Achilles tendon rupture wey na dem later place am on injured reserve.<ref>{{Cite web |last=Dajani |first=Jordan |date=September 12, 2023 |title=Aaron Rodgers injury update: MRI reveals Jets QB suffered a complete tear of Achilles tendon |url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-update-mri-reveals-jets-qb-suffered-a-complete-tear-of-achilles-tendon/ |access-date=September 12, 2023 |website=CBS Sports |language=en}}</ref><ref>{{Cite web |last=Sullivan |first=Phil |date=September 12, 2023 |title=Jets Place Aaron Rodgers on Injured Reserve; Saleh Commits To Zach Wilson |url=https://www.jetnation.com/2023/09/13/jets-place-aaron-rodgers-on-injured-reserve-saleh-commits-to-zach-wilson/ |access-date=September 14, 2023 |website=JetNation.com}}</ref> Rodgers undergo surgery on September 13, plus Dr. [[Neal ElAttrache]] placing an internal brace insyd ein left Achilles plus de goal of a mid-January return at de earliest.<ref>{{Cite web |last1=Rapoport |first1=Ian |author-link1=Ian Rapoport |last2=Pelissero |first2=Tom |author-link2=Tom Pelissero |date=September 16, 2023 |title=Jets QB Aaron Rodgers aims for potential playoff return after innovative surgery on torn Achilles |url=https://www.nfl.com/news/jets-qb-aaron-rodgers-aims-for-potential-playoff-return-after-innovative-surgery |access-date=September 17, 2023 |website=NFL.com}}</ref> On November 29, de New York Jets open de 21-day practice window for Rodgers. Limited insyd practice, na Rodgers be cleared for functional activity buh no contact.<ref>{{Cite web |last=Patra |first=Kevin |date=November 29, 2023 |title=Jets opening QB Aaron Rodgers' 21-day practice window |url=https://www.nfl.com/news/jets-opening-qb-aaron-rodgers-21-day-practice-window |access-date=November 30, 2023 |website=NFL.com |language=en-US}}</ref> He be activated off injured reserve on December 20, buh de Jets announce he no go san play dis season after dema Week 15 loss to de Dolphins dem mathematically eliminate dem from playoff contention.<ref>{{Cite web |last=Shook |first=Nick |date=December 20, 2023 |title=Jets to activate Aaron Rodgers off IR to allow QB to continue to practice with team |url=https://www.nfl.com/news/jets-to-activate-aaron-rodgers-off-ir-to-allow-qb-to-continue-to-practice-with-t |access-date=December 20, 2023 |website=NFL.com}}</ref><ref>{{cite web |last=Reyes |first=Lorenzo |date=December 20, 2023 |title=Aaron Rodgers' season is over, so why are the Jets activating him? |url=https://www.usatoday.com/story/sports/nfl/jets/2023/12/20/aaron-rodgers-comeback-jets-shut-down-achilles-tear/71825680007/ |access-date=July 24, 2024 |website=USA TODAY}}</ref> Despite missing most of de season, he be ranked 92nd by ein fellow players on de NFL Top 100 Players of 2024.<ref>{{cite web |last=Hetherington |first=Krissy |date=July 23, 2024 |title=Top 100 Players of 2024, Nos. 100–91: Aaron Rodgers falls to lowest ranking in his career |url=https://www.nfl.com/news/top-100-players-of-2024-nos-100-91-aaron-rodgers-trevor-lawrence |access-date=July 6, 2025 |website=NFL.com}}</ref>
==== 2024 ====
[[File:Aaron_Rodgers_Jets_vs_Titans_SEPT2024.png|thumb|Rodgers dey play against de Tennessee Titans at Nissan Stadium insyd 2024]]
After playing just four offensive snaps insyd ein first season plus de Jets secof an Achilles injury, Rodgers make ein return on ''Monday Night Football'' insyd Week 1 to kick off de 2024 campaign. Insyd ein highly anticipated return, Rodgers plete 13 of 21 passes for 167 yards, one touchdown den one interception insyd a 32–19 loss to de defending NFC champion San Francisco 49ers.<ref>{{Cite web |last=Patra |first=Kevin |date=September 9, 2024 |title=Aaron Rodgers on Jets' loss to 49ers: 'I can play better' |url=https://www.nfl.com/news/aaron-rodgers-on-jets-loss-to-49ers-i-can-play-better |access-date=September 10, 2024 |website=[[NFL.com]] |language=en}}</ref> Insyd de Jets dema home opener against de New England Patriots, Rodgers plete 27 of 35 passes for 281 yards den two touchdowns as de Jets cruise to a 24–3 victory.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=September 19, 2024 |title='Thursday Night Football' highlights: Aaron Rodgers, Jets dominate Patriots |url=https://www.nbcnews.com/news/sports/live-blog/patriots-vs-jets-live-updates-jacoby-brissett-takes-aaron-rodgers-new-rcna171577 |access-date=September 22, 2024 |website=NBC News}}</ref> Insyd Week 5 insyd London, Rodgers cam be de ninth quarterback insyd NFL history to reach 60,000 passing yards buh he tie ein career-high plus three interceptions, wey dey include a game-sealing pick plus under a minute left as de Jets loose 23–17 to de Vikings.<ref>{{Cite web |last=Cimini |first=Rich |date=October 6, 2024 |title=Aaron Rodgers 9th QB to pass for 60K yards, but 3 INTs doom Jets |url=https://www.espn.com/nfl/story/_/id/41642251/jets-aaron-rodgers-becomes-9th-qb-pass-60000-yards |access-date=October 6, 2024 |website=ESPN.com}}</ref> Jets head coach [[Robert Saleh]] unexpectedly be fired after de London loss, plus sam analysts dey perceive say na he no get along plus Rodgers.<ref>{{Cite web |last1=Li |first1=David K. |last2=Abdelkader |first2=Rima |date=October 8, 2024 |title=New York Jets fire coach Robert Saleh after 2–3 start and apparent tension with Aaron Rodgers |url=https://www.nbcnews.com/sports/nfl/jets-robert-saleh-fired-rcna174473 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref> Wen dem biz am about am on ''The Pat McAfee Show'', de quarterback firmly deny accusations say he get a role insyd Saleh ein termination.<ref>{{Cite web |last=Nadkarni |first=Rohan |date=October 9, 2024 |title=Aaron Rodgers on accusations he wanted Jets coach Robert Saleh fired: 'Patently false' |url=https://www.nbcnews.com/sports/nfl/aaron-rodgers-robert-saleh-fired-rcna174701 |access-date=October 13, 2024 |website=NBC News |language=en}}</ref>
Insyd Week 6, de Jets dema first game after Saleh ein termination, Rodgers throw for 294 yards den two touchdowns, wey dey include a 52-yard Hail Mary pass to [[Allen Lazard]] to close out de first half, ein fourth career such pass completion.<ref>{{Cite news|last=Waszak Jr.|first=Dennis|date=October 14, 2024|title=Jets' Aaron Rodgers throws a 52-yard Hail Mary to Allen Lazard to end the first half vs. Bills|url=https://apnews.com/article/jets-rodgers-hail-mary-lazard-49f7dbe5569749c60e9878cc7ea5d606|access-date=October 20, 2024|work=AP News}}</ref> However, anoda interception on de Jets dema final drive doomed dem as dem loose 23–20 to de Buffalo Bills.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=After 'weird' week, Rodgers and Jets can't overcome mistakes and missed chances in loss to Bills|url=https://apnews.com/article/jets-bills-rodgers-ulbrich-0a14afca36a55c2cbb0f9aa35c3a7855|access-date=October 15, 2024|work=AP News|date=October 14, 2024}}</ref> Following de loss, se Jets trade for [[Davante Adams]], plus whom Rodgers previously combine for over 600 receptions den 68 touchdowns during dema eight seasons togeda insyd Green Bay.<ref>{{Cite news|last1=Cimini|first1=Rich|last2=Fowler|first2=Jeremy|last3=Walder|first3=Seth|last4=Reid|first4=Jordan|last5=Gutierrez|first5=Paul|last6=Karabell|first6=Eric|date=October 15, 2024|title=How Davante Adams affects the Jets, Aaron Rodgers' playoff hopes|url=https://www.espn.com/nfl/story/_/id/41809450/new-york-jets-future-davante-adams-trade-las-vegas-raiders|access-date=October 15, 2024|work=ESPN}}</ref> However, de Jets continue to struggle, as Rodgers throw two interceptions wey he lead de offense to zero points insyd de second half of dema Week 7 matchup against de Steelers, losing dema fourth consecutive game.<ref>{{cite news|last=Cimini|first=Rich|title=Aaron Rodgers, Davante Adams reunion fails to spark Jets|url=https://www.espn.com/nfl/story/_/id/41917779/aaron-rodgers-davante-adams-reunion-fails-spark-jets-drop-4th-straight-vs-steelers|access-date=October 21, 2024|work=ESPN|date=October 21, 2024}}</ref> After a loss to de Patriots, Rodgers help de Jets snap dema five-game losing streak insyd Week 9 against de Houston Texans, throwing for 179 yards den three touchdowns insyd de second half after he be shutout insyd de first half as de Jets win 21–13.<ref>{{cite news|last=Fried|first=Justin|title=Aaron Rodgers saves NY Jets' season with vintage performance amidst fan revolt|url=https://thejetpress.com/aaron-rodgers-saves-ny-jets-season-vintage-performance-fan-revolt-01jbjvhkx6k7|access-date=October 31, 2024|work=The Jet Press|date=October 31, 2024}}</ref>
Insyd Week 11 against de Colts, Rodgers throw two touchdowns wey he lead de Jets to a season-high insyd points, buh na dem fall short insyd a 28–27 loss, dropping to 3–7.<ref>{{Cite web |last=Miller |first=Colin |date=November 19, 2024 |title=Jets' Aaron Rodgers Not a Fan of Reporter's 'Buzzword' After Another Loss |url=https://athlonsports.com/nfl/new-york-jets-aaron-rodgers-familiar-response-loss-indianapolis-colts-recap-shock-buzz-word |access-date=November 26, 2024 |website=Athlon Sports |language=en}}</ref> During dema bye week, na dem reveal say na Rodgers dey play thru hamstring, knee, den ankle injuries buh na he refuse to get scans done in fear of how severe dem go be.<ref>{{Cite web |last=McCarriston |first=Shanna |date=November 24, 2024 |title=Jets' Aaron Rodgers played through multiple injuries this season, resisted getting scans, per report |url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-played-through-multiple-injuries-this-season-resisted-getting-scans-per-report/ |access-date=November 26, 2024 |website=CBSSports.com |language=en}}</ref> Despite dis, he remain de starter following de bye week.<ref>{{cite news|last=Cimini|first=Rich|title=Jeff Ulbrich says Aaron Rodgers to remain Jets' starting QB|url=https://www.espn.com/nfl/story/_/id/42738131/jeff-ulbrich-says-aaron-rodgers-remain-jets-starting-qb|access-date=December 9, 2024|work=ESPN|date=December 2, 2024}}</ref> Entering Week 14, Rodgers hold an NFL-record 34-game drought widout a 300-yard passing performance, wich he break on December 8 against de Dolphins.<ref>{{cite news|last=Benjamin|first=Cody|title=Jets' Aaron Rodgers halts historic drought of 300-yard passing games in Week 14 loss to Dolphins|url=https://www.cbssports.com/nfl/news/jets-aaron-rodgers-halts-historic-drought-of-300-yard-passing-games-in-week-14-loss-to-dolphins/|access-date=December 9, 2024|work=CBS Sports|date=December 8, 2024}}</ref> Despite recording ein first 300-yard game insyd three years, de Jets fall 32–26 insyd overtime, eliminating dem from playoff contention.<ref>{{cite news|last=Cimini|first=Rich|title=Jets collapse again, extend postseason drought to 14 seasons|url=https://www.espn.com/nfl/story/_/id/42862200/jets-collapse-again-extend-postseason-drought-14-seasons|access-date=December 9, 2024|work=ESPN|date=December 8, 2024}}</ref> On January 5, 2025, Rodgers plete ein 500th touchdown pass to [[Tyler Conklin]] at MetLife Stadium against de Dolphins, becoming de fifth quarterback insyd NFL history plus 500 touchdown passes.<ref>{{cite news|last=Cimini|first=Rich|title=Jets QB Aaron Rodgers joins prestigious 500 touchdown club|url=https://www.espn.com/nfl/story/_/id/43300286/jets-qb-aaron-rodgers-joins-prestigious-500-touchdown-club|access-date=January 5, 2025|work=ESPN|date=January 5, 2025}}</ref> He fini de final game of de season plus 274 yards, a season-high four touchdowns, den an interception as de Jets win 32–20, finishing plus a record of 5–12.<ref>{{cite news|last=Waszak Jr.|first=Dennis|title=Rodgers throws a season-high 4 touchdown passes in possible final game as Jets top Dolphins 32–20|url=https://apnews.com/article/dolphins-jets-score-rodgers-8013b4de0ea591a84d721f5c4dd17111|access-date=January 5, 2025|work=Associated Press|date=January 5, 2025}}</ref> He fini de 2024 season plus 3,897 yards, 28 touchdowns, den 11 interceptions.<ref>{{Cite web |title=Aaron Rodgers 2024 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2024/ |access-date=January 15, 2025 |website=[[Pro Football Reference]] |language=en}}</ref>
On February 13, 2025, na de Jets announce dema intention to part ways plus Rodgers after two seasons.<ref>{{Cite web |last=Allen |first=Eric |date=February 13, 2025 |title=Jets to move on from Aaron Rodgers |url=https://www.newyorkjets.com/news/jets-moving-on-from-aaron-rodgers |access-date=February 13, 2025 |website=NewYorkJets.com |language=en-US}}</ref> Na Rodgers be released as a post-June 1 designation, allowing de Jets to split ein salary cap charges ($49 million) over two years. De Jets therefore keep am on de roster til March 12, de start of de 2025 NFL year, wen na dem officially released am.<ref>{{cite web |last=Cimini |first=Rich |date=February 13, 2025 |title=Jets announce split with Aaron Rodgers, wish him success |url=https://www.espn.com/nfl/story/_/id/43826969/jets-announce-split-aaron-rodgers-wish-success |accessdate=February 25, 2025}}</ref>
=== Pittsburgh Steelers ===
[[File:McCormickRodgersFrazier.jpg|thumb|Rodgers (middle) at Steelers training camp insyd 2025]]
==== 2025 ====
On June 6, 2025, de Pittsburgh Steelers agree to terms plus Rodgers on a one-year deal.<ref>{{Cite web |last=Varley |first=Teresa |date=June 5, 2025 |title=Steelers agree to terms with Rodgers |url=https://www.steelers.com/news/steelers-agree-to-terms-with-rodgers |access-date=June 6, 2025 |website=Steelers.com |language=en-US}}</ref> De following day, he officially sign ein one-year, $13.65 million contract, wich dey include $10 million guaranteed wey fi be worth up to $19.5 million plus incentives.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Sources: QB Rodgers with Steelers, signs one-year, $13.65M deal|url=https://www.espn.com/nfl/story/_/id/45470407/sources-qb-rodgers-steelers-signs-one-year-1365m-deal|access-date=June 7, 2025|work=ESPN|date=June 7, 2025}}</ref> De team subsequently announce say Rodgers go continue to wear ein number 8 from Cal den de Jets, since ein number 12 plus de Packers unofficially be retired for [[Terry Bradshaw]]; neither de Steelers nor Bradshaw sign off on allowing Rodgers to wear number 12.<ref>{{cite web |last1=Goldstein |first1=Jeremy |date=June 7, 2025 |title=Aaron Rodgers suffers early Steelers setback thanks to Terry Bradshaw |url=https://www.themirror.com/sport/american-football/aaron-rodgers-terry-bradshaw-steelers-1194927 |website=[[Daily Mirror]]}}</ref>
Na Rodgers ein months-long courtship den subsequent signing be met plus mixed to negative reaction among Steeler fans as well as ex-Steelers Bradshaw den [[Ryan Clark (American football)|Ryan Clark]] secof ein polarizing attitude,<ref>{{cite web |last=Sayer |first=Ricky |date=June 5, 2025 |title=Aaron Rodgers signing brings mixed reactions from Steelers fans |url=https://www.cbsnews.com/pittsburgh/news/steelers-fans-aaron-rodgers-signing-reaction/ |access-date=June 10, 2025 |work=CBS News}}</ref><ref>{{cite web |last=Gamba-Ellis |first=Thomas |date=June 6, 2025 |title=Aaron Rodgers signing is 'worst-case scenario' for Steelers: Ryan Clark |url=https://nypost.com/2025/06/06/sports/aaron-rodgers-signing-is-worst-case-scenario-for-the-steelers-ryan-clark/ |access-date=June 10, 2025 |work=New York Post}}</ref><ref>{{cite web |last=Baca |first=Michael |date=May 28, 2025 |title=Steelers legend Terry Bradshaw calls Pittsburgh's interest in QB Aaron Rodgers 'a joke' |url=https://www.nfl.com/news/steelers-legend-terry-bradshaw-calls-pittsburgh-interest-aaron-rodgers-a-joke |access-date=September 25, 2025 |website=NFL.com}}</ref> wey sam fans feeling like he no fit Western Pennsylvania dema traditional blue collar base.<ref>{{cite web |last1=Cioppa |first1=Jordan |date=June 5, 2025 |title=Steelers fans react to Aaron Rodgers coming to Pittsburgh |url=https://www.wtae.com/article/steelers-fans-reaction-aaron-rodgers-pittsburgh-quarterback/64985539 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> Sam speculate say Rodgers fi be swayed to sign plus de Steelers by ein friendship plus former Indianapolis Colts punter den Pittsburgh-area native [[Pat McAfee]].<ref>{{cite web |last1=Ciampi |first1=Raquel |date=April 17, 2025 |title=Aaron Rodgers talks sneaking into Pittsburgh for first visit with Steelers on McAfee Show |url=https://www.wtae.com/article/steelers-aaron-rodgers-mcafee-show/64514048 |access-date=December 19, 2025 |website=[[WTAE-TV]]}}</ref> On June 23, 2025, Rodgers flow McAfee on ein show say he go likely retire after de 2025 season.<ref>{{cite news|last1=Pryor|first1=Brooke|title=Steelers' Aaron Rodgers 'pretty sure' this will be final season|url=https://www.espn.com/nfl/story/_/id/45575766/steelers-aaron-rodgers-pretty-sure-final-season|access-date=June 29, 2025|work=ESPN|date=June 29, 2025}}</ref>
On September 7, Rodgers make ein Steelers debut against ein former team, de New York Jets. During ein first outing plus Pittsburgh, he plete 22 of 30 pass attempts for 244 yards den four touchdowns while committing no turnovers. De game end plus a 34–32 Steelers victory.<ref>{{cite web |last=Maaddi |first=Rob |date=September 9, 2025 |title=Aaron Rodgers showed he has plenty left to help the Steelers |url=https://sports.yahoo.com/article/aaron-rodgers-showed-plenty-left-191014645.html |access-date=September 25, 2025 |website=Yahoo! Sports}}</ref> Later dat month, Rodgers surpasse [[Brett Favre]], ein former Packers teammate, insyd career touchdown passes wen he throw a scoring pass to [[D.K. Metcalf]] insyd a win over de New England Patriots. Dis move Rodgers into fourth place for most career touchdown passes (509), only behind [[Peyton Manning]], [[Drew Brees]] den [[Tom Brady]].<ref name="u989">{{cite web |last=Gordon |first=Grant |date=September 21, 2025 |title=Aaron Rodgers moves past former teammate Brett Favre with 509th career touchdown pass |url=https://www.nfl.com/news/aaron-rodgers-moves-past-brett-favre-509-career-touchdown-pass |access-date=October 14, 2025 |website=NFL.com}}</ref>
During de second quarter of de Steelers dema Week 11 victory over de Cincinnati Bengals, Rodgers suffer a small fracture insyd ein left wrist.<ref>{{cite news|last=DeArdo|first=Bryan|url=https://www.cbssports.com/nfl/news/aaron-rodgers-injury-steelers-qb-hand-injury/|title=Aaron Rodgers has small fracture in wrist, Steelers QB reportedly pushing to play this week|website=[[CBSSports.com]]|publisher=[[CBS Sports]]|date=November 17, 2025|access-date=November 30, 2025}}</ref> De injury prevent am from playing de following game against de Bears, wich [[Mason Rudolph (American football)|Mason Rudolph]] start insyd ein place.<ref>{{cite news|last=Cohen|first=Jay|url=https://www.kare11.com/article/syndication/associatedpress/steelers-qb-aaron-rodgers-misses-game-against-bears-because-of-a-broken-left-wrist/616-e94370ae-9cda-4db9-891f-56092ba44dd1|title=With Aaron Rodgers sidelined, Mason Rudolph and the Steelers fall short in Chicago|agency=[[Associated Press|AP]]|publisher=[[KARE (TV)]]|date=November 23, 2025|access-date=November 30, 2025}}</ref> Rodgers return for Week 13 insyd Buffalo.<ref>{{cite news|last=Guise|first=Michael|url=https://www.cbsnews.com/pittsburgh/news/is-aaron-rodgers-playing-steelers-bills-nfl-news/|title=Is Aaron Rodgers playing against the Bills? Steelers give update on starting quarterback.|publisher=[[CBS News]]|date=November 28, 2025|access-date=November 30, 2025}}</ref>
Rodgers lead de Steelers to an AFC North title den a playoff berth following a Week 18 win over de Baltimore Ravens.<ref>{{Cite web |last=Pryor |first=Brooke |date=January 5, 2026 |title=Steelers take AFC North as Ravens FG sails wide |url=https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-url=https://web.archive.org/web/20260105045214/https://www.espn.com/nfl/story/_/id/47509668/steelers-take-afc-north-title-ravens-miss-last-second-fg |archive-date=January 5, 2026 |access-date=January 5, 2026 |website=ESPN.com |language=en}}</ref> He fini de 2025 season throwing for 3,322 yards, 24 touchdowns, den seven interceptions, den rushing for a touchdown.<ref>{{Cite web |title=Aaron Rodgers 2025 Game Log |url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/2025/ |access-date=January 8, 2026 |website=Pro-Football-Reference.com |language=en}}</ref>
Insyd de Steelers dema playoff loss to de Houston Texans, Rodgers play poorly, completing 17 passes out of 33 attempts for 146 yards, getting sacked 4 times for 36 yards, den throwing a pick-six.<ref>{{cite news|last1=Heyen|first1=Billy|title=Texans defense made Steelers' Aaron Rodgers play the worst playoff game by a QB in a dozen years|url=https://sports.yahoo.com/articles/texans-defense-made-steelers-aaron-131529479.html?guccounter=1|access-date=January 13, 2026|work=Yahoo Sports|date=January 13, 2026}}</ref> Rodgers sanso fumble on one of de sacks, wich dem return for a Texans touchdown.<ref>{{cite news|last1=Brinkerhoff|first1=Nick|title=Aaron Rodgers crushed on strip-sack, leads to critical Texans score|url=https://www.usatoday.com/story/sports/nfl/playoffs/2026/01/12/aaron-rodgers-strip-sack-crushed-texans-packers/88153423007/|access-date=January 13, 2026|work=USA Today|date=January 12, 2026}}</ref>
==== 2026 ====
[[File:RodgersandMcCarthy.jpg|thumb|Rodgers plus [[Mike McCarthy]] during training camp insyd 2026]]
On May 16, 2026, Rodgers return to de Steelers for ein 22nd season, signing a one-year deal worth up to $25 million.<ref>{{Cite web |last=Pryor |first=Brooke |date=May 16, 2026 |title=Sources: Aaron Rodgers to sign 1-year deal with Steelers |url=https://www.espn.com/nfl/story/_/id/48791130/aaron-rodgers-sign-1-year-deal-steelers |access-date=May 16, 2026 |website=ESPN}}</ref> De signing reunite am plus head coach Mike McCarthy.<ref>{{Cite web |last=Middlehurst-Schwartz |first=Michael |date=May 16, 2026 |title=Aaron Rodgers to re-sign with Steelers, reunite with coach Mike McCarthy |url=https://www.usatoday.com/story/sports/nfl/steelers/2026/05/16/aaron-rodgers-contract-pittsburgh-steelers-mike-mccarthy/88698339007/ |access-date=May 16, 2026 |website=USA Today}}</ref> Rodgers later announce say de 2026 season go be ein final season insyd de NFL.<ref>{{Cite web |last=Ulrich |first=Logan |date=2026-05-20 |title=Aaron Rodgers Says 2026 Will Be His Final Season |url=https://nfltraderumors.co/aaron-rodgers-says-2026-will-be-his-final-season/ |access-date=2026-05-20 |website=NFLTradeRumors.co |language=en-US}}</ref>
==Career statistics==
{| class="wikitable"
|-
! colspan="2"| Legend
|-
| style="background:#ff0; width:3em;"|
| AP [[NFL MVP]]
|-
| style="background:#f4c842; width:3em;"|
| [[Super Bowl Most Valuable Player Award|Super Bowl MVP]]
|-
| style="background:#afe6ba; width:3em;"|
| Won the [[Super Bowl]]
|-
| style="background:#e0cef2; width:3em;"|
| NFL record
|-
| style="background:#cfecec; width:3em;"|
| Led the league
|-
| style="width:3em;"|'''Bold'''
| Career best
|}
===NFL===
====Regular season====
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|Regular season}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="11"| Passing
! colspan="5"| Rushing
! colspan="2"| Sacked
! colspan="2"| Fumbles
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starting quarterback}} !! {{abbr|Cmp|Passes completed}} !! {{abbr|Att|Passes attempted}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Y/A|Yards per passing attempt}} !! {{abbr|Lng|Longest pass completion}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions thrown}} !! {{abbr|TD%|Passing touchdown percentage}} !! {{abbr|Int%|Interception thrown percentage}} !! {{abbr|Rtg|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Y/A|Yards per rushing attempt}} !! {{abbr|Lng|Longest rushing attempt}} !! {{abbr|TD|Rushing touchdowns}} !! {{abbr|Sck|Sacks}} !! {{abbr|SckY|Yards lost from sacks}} !! {{abbr|Fum|Fumbles}} !! {{abbr|Lost|Fumbles lost}}
|-
! [[2005 NFL season|2005]] !! [[2005 Green Bay Packers season|GB]]
| 3 || 0 || — || 9 || 16 || 56.3 || 65 || 4.1 || 16 || 0 || 1 || 0.0 || 6.3 || 39.8 || 2 || 7 || 3.5 || 8 || 0 || 3 || 28 || 2 || 2
|-
! [[2006 NFL season|2006]] !! [[2006 Green Bay Packers season|GB]]
| 2 || 0 || — || 6 || 15 || 40.0 || 46 || 3.1 || 16 || 0 || 0 || 0.0 || '''0.0'''|| 48.2 || 2 || 11 || 5.5 || 6 || 0 || 3 || 18 || 1 || 1
|-
! [[2007 NFL season|2007]] !! [[2007 Green Bay Packers season|GB]]
| 2 || 0 || — || 20 || 28 || 71.4 || 218 || 7.8 || 43 || 1 || 0 || 3.6 || '''0.0'''|| 106.0 || 7 || 29 || 4.1 || 13 || 0 || 3 || 24 || 0 || 0
|-
! [[2008 NFL season|2008]] !! [[2008 Green Bay Packers season|GB]]
| 16 || 16 || 6–10 || 341 || 536 || 63.6 || 4,038 || 7.5 || 71 || 28 || 13 || 5.2 || 2.4 || 93.8 || 56 || 207 || 3.7 || 21 || 4 || 34 || 231 || 10 || 3
|-
! [[2009 NFL season|2009]] !! [[2009 Green Bay Packers season|GB]]
| 16 || 16 || 11–5 || 350 || 541 || 64.7 || 4,434 || 8.2 || 83 || 30 || 7 || 5.5 || style="background:#cfecec;"| 1.3 || 103.2 || 58 || 316 || 5.4 || '''35''' || '''5''' || style="background:#cfecec;"| 50 || 306 || 10 || 4
|-
! [[2010 NFL season|2010]] !! style="background:#afe6ba;"|[[2010 Green Bay Packers season|GB]]
| 15 || 15 || 10–5 || 312 || 475 || 65.7 || 3,922 || 8.3 || 86 || 28 || 11 || 5.9 || 2.3 || 101.2 || 64 || 356 || 5.6 || 27 || 4 || 31 || 193 || 4 || 1
|-
! style="background:#ff0;"|[[2011 NFL season|2011]] !! [[2011 Green Bay Packers season|GB]]
| 15 || 15 || '''14–1'''|| 343 || 502 || 68.3 || '''4,643''' || style="background:#cfecec;"| '''9.2''' || '''93''' || 45 || 6 || style="background:#cfecec;"| 9.0 || 1.2 || style="background:#e0cef2;"| '''122.5''' || 60 || 257 || 4.3 || 25 || 3 || 36 || 219 || 4 || '''0'''
|-
! [[2012 NFL season|2012]] !! [[2012 Green Bay Packers season|GB]]
| 16 || 16 || 11–5 || 371 || 552 || 67.2 || 4,295 || 7.8 || 73 || 39 || 8 || style="background:#cfecec;"| 7.1 || 1.4 || style="background:#cfecec;"| 108.0 || 54 || 259 || 4.8 || 27 || 2 || style="background:#cfecec;"| 51 || 293 || 5 || 4
|-
! [[2013 NFL season|2013]] !! [[2013 Green Bay Packers season|GB]]
| 9 || 9 || 6–3 || 193 || 290 || 66.6 || 2,536 || 8.7 || 83 || 17 || 6 || 5.9 || 2.1 || 104.9 || 30 || 120 || 4.0 || 18 || 0 || 21 || '''117''' || 4 || '''0'''
|-
! style="background:#ff0;"|[[2014 NFL season|2014]] !! [[2014 Green Bay Packers season|GB]]
| 16 || 16 || 12–4 || 341 || 520 || 65.6 || 4,381 || 8.4 || 80 || 38 || 5 || 7.3 || style="background:#cfecec;"| 0.9 || 112.2 || 43 || 269 || '''6.3''' || 19 || 2 || 28 || 174 || 10 || 2
|-
! [[2015 NFL season|2015]] !! [[2015 Green Bay Packers season|GB]]
| 16 || 16 || 10–6 || 347 || 572 || 60.7 || 3,821 || 6.7 || 65 || 31 || 8 || 5.4 || 1.4 || 92.7 || 58 || 344 || 5.9 || 18 || 1 || 46 || 314 || 8 || 4
|-
! [[2016 NFL season|2016]] !! [[2016 Green Bay Packers season|GB]]
| 16 || 16 || 10–6 || '''401''' || '''610''' || 65.7 || 4,428 || 7.3 || 66 || style="background:#cfecec;"| 40 || 7 || 6.6 || 1.1 || 104.2 || '''67'''|| '''369'''|| 5.5 || 23 || 4 || 35 || 246 || 8 || 4
|-
! [[2017 NFL season|2017]] !! [[2017 Green Bay Packers season|GB]]
| 7 || 7 || 4–3 || 154 || 238 || 64.7 || 1,675 || 7.0 || 72 || 16 || 6 || 6.7 || 2.5 || 97.2 || 24 || 126 || 5.3 || 18 || 0 || 22 || 168 || '''1''' || 1
|-
! [[2018 NFL season|2018]] !! [[2018 Green Bay Packers season|GB]]
| 16 || 16 || 6–9–1 || 372 || 597 || 62.3 || 4,442 || 7.4 || 75 || 25 || '''2''' || 4.2 || style="background:#e0cef2;"| 0.3 || 97.6 || 43 || 269 || '''6.3''' || 23 || 2 || 49 || 353 || 6 || 3
|-
! [[2019 NFL season|2019]] !! [[2019 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 353 || 569 || 62.0 || 4,002 || 7.0 || 74 || 26 || 4 || 4.6 || style="background:#cfecec;"| 0.7 || 95.4 || 46 || 183 || 4.0 || 17 || 1 || 36 || 284 || 4 || 4
|-
! style="background:#ff0;"|[[2020 NFL season|2020]] !! [[2020 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 372 || 526 || style="background:#cfecec;"| '''70.7''' || 4,299 || 8.2 || 78 || style="background:#cfecec;"| '''48'''|| 5 || style="background:#cfecec;"| '''9.1''' || style="background:#cfecec;" | 0.9 || style="background:#cfecec;"| 121.5 || 38 || 149 || 3.9 || 14 || 3 || '''20''' || 182 || 4 || 2
|-
! style="background:#ff0;"|[[2021 NFL season|2021]] !! [[2021 Green Bay Packers season|GB]]
| 16 || 16 || 13–3 || 366 || 531 || 68.9 || 4,115 || 7.7 || 75 || 37 || 4 || style="background:#cfecec;"| 7.0 || style="background:#cfecec;"| 0.8 || style="background:#cfecec;"| 111.9 || 33 || 101 || 3.1 || 18 || 3 || 30 || 188 || 3 || '''0'''
|-
! [[2022 NFL season|2022]] !! [[2022 Green Bay Packers season|GB]]
| 17 || 17 || 8–9 || 350 || 542 || 64.6 || 3,695 || 6.8 || 58 || 26 || 12 || 4.8 || 2.2 || 91.1 || 34 || 94 || 2.8 || 18 || 1 || 32 || 258 || 8 || 4
|-
! [[2023 NFL season|2023]] !! [[2023 New York Jets season|NYJ]]
| 1 || 1 || 1–0 || 0 || 1 || 0.0 || 0 || 0.0 || 0 || 0 || 0 || 0.0 || '''0.0'''|| 39.6 || 0 || 0 || — || 0 || 0 || 1 || 10 || 0 || 0
|-
! [[2024 NFL season|2024]] !! [[2024 New York Jets season|NYJ]]
| 17 || 17 || 5–12 || 368 || 584 || 63.0 || 3,897 || 6.7 || 71 || 28 || 11 || 4.8 || 1.9 || 90.5 || 22 || 107 || 4.9 || 18 || 0 || 40 || 302 || 5 || 2
|-
! [[2025 NFL season|2025]] !! [[2025 Pittsburgh Steelers season|PIT]]
| 16 || 16 || 10–6 || 327 || 498 || 65.7 || 3,322 || 6.7 || 80 || 24 || 7 || 4.8 || 1.4 || 94.8 || 21 || 61 || 2.9 || 20 || 1 || 29 || 180 || 4 || 1
|-
! colspan="2" | Career<ref>{{cite web | url=https://www.pro-football-reference.com/players/R/RodgAa00.htm | title=Aaron Rodgers Stats, Height, Weight, Position, Draft, College | website=[[Pro-Football-Reference.com]] }}</ref> !! 264 !! 257 !! {{nowrap|163–93–1}}!! 5,696 !! 8,743 !! 65.1 !! 66,274 !! 7.6 !! 93 !! 527 !! 123 !! 6.0 !! style="background:#e0cef2;"|1.4 !! style="background:#e0cef2;"|102.2 !! 762 !! 3,634 !! 4.8 !! 35 !! 36 !! style="background:#e0cef2; " | 600 !! 4,088 !! 101 !! 42
|}
====Postseason====
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|Postseason}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="11"| Passing
! colspan="5"| Rushing
! colspan="2"| Sacked
! colspan="2"| Fumbles
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starting quarterback}} !! {{abbr|Cmp|Passes completed}} !! {{abbr|Att|Passes attempted}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Y/A|Yards per passing attempt}} !! {{abbr|Lng|Longest pass completion}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions thrown}} !! {{abbr|TD%|Passing touchdown percentage}} !! {{abbr|Int%|Interception thrown percentage}} !! {{abbr|Rtg|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Y/A|Yards per rushing attempt}} !! {{abbr|Lng|Longest rushing attempt}} !! {{abbr|TD|Rushing touchdowns}} !! {{abbr|Sck|Sacks}} !! {{abbr|SckY|Yards lost from sacks}} !! {{abbr|Fum|Fumbles}} !! {{abbr|Lost|Fumbles lost}}
|-
! [[2007–08 NFL playoffs|2007]] !! [[2007 Green Bay Packers season|GB]]
| 1 || 0 || — || 0 || 0 || — || 0 || — || 0 || 0 || 0 || — || — || — || 0 || 0 || — || 0 || 0 || 0 || 0 || 0 || 0
|-
! [[2009–10 NFL playoffs|2009]] !! [[2009 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 28 || 42 || 66.7 || 423 || style="background:#cfecec;"|'''10.1''' || 44 || 4 || 1 || style="background:#cfecec;"|'''9.5''' || 2.4 || '''121.4''' || 3 || 13 || 4.3 || 13 || 1 || 5 || 19 || 1 || 1
|-
! style="background:#f4c842;"|[[2010–11 NFL playoffs|2010]] !! style="background:#afe6ba;"|[[2010 Green Bay Packers season|GB]]
| 4 || 4 || '''4–0''' || style="background:#cfecec;"|'''90''' || style="background:#cfecec;"|'''132''' || 68.2 || style="background:#cfecec;"|'''1,094''' || 8.3 || 38 || style="background:#cfecec;"|'''9''' || 2 || 6.8 || 1.5 || style="background:#cfecec;"|109.8 || '''14''' || 54 || 3.9 || 25 || '''2''' || 8 || 53 || 2 || 1
|-
! [[2011–12 NFL playoffs|2011]] !! [[2011 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 26 || 46 || 56.5 || 264 || 5.7 || 21 || 2 || 1 || 4.3 || 2.2 || 78.5 || 7 || '''66''' || style="background:#cfecec;"|'''9.4''' || 16 || 0 || 4 || 23 || 1 || 1
|-
! [[2012–13 NFL playoffs|2012]] !! [[2012 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 49 || 72 || 68.1 || 531 || 7.4 || 44 || 3 || 1 || 4.2 || 1.4 || 97.6 || 5 || 40 || 8.0 || 17 || 0 || 4 || 33 || 1 || '''0'''
|-
! [[2013–14 NFL playoffs|2013]] !! [[2013 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 17 || 26 || 65.4 || 177 || 6.8 || 26 || 1 || '''0''' || 3.8 || style="background:#cfecec;"|'''0.0''' || 97.8 || 2 || 11 || 5.5 || 9 || 0 || 4 || 20 || 1 || '''0'''
|-
! [[2014–15 NFL playoffs|2014]] !! [[2014 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 43 || 69 || 62.3 || 494 || 7.2 || 46 || 4 || 2 || 5.8 || 2.9 || 91.1 || 4 || 8 || 2.0 || 12 || 0 || 3 || 26 || 2 || 1
|-
! [[2015–16 NFL playoffs|2015]] !! [[2015 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 45 || 80 || 56.3 || 471 || 5.9 || 60 || style="background:#cfecec;"|4 || 1 || 5.0 || 1.3 || 84.9 || 3 || 20 || 6.7 || 19 || 0 || '''2''' || '''15''' || '''0''' || '''0'''
|-
! [[2016–17 NFL playoffs|2016]] !! [[2016 Green Bay Packers season|GB]]
| 3 || 3 || 2–1 || 80 || 128 || 62.5 || 1,004 || 7.8 || 42 || style="background:#cfecec;"|'''9''' || 2 || 7.0 || 1.6 || 103.8 || 8 || 62 || 7.8 || '''28''' || 0 || style="background:#cfecec;"|10 || style="background:#cfecec;"|79 || '''0''' || '''0'''
|-
! [[2019–20 NFL playoffs|2019]] !! [[2019 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 47 || 66 || '''71.2''' || 569 || 8.6 || style="background:#cfecec;"|65 || 4 || 2 || 6.1 || 3.0 || 104.9 || 6 || 14 || 2.3 || 14 || 0 || 5 || 38 || 3 || 1
|-
! [[2020–21 NFL playoffs|2020]] !! [[2020 Green Bay Packers season|GB]]
| 2 || 2 || 1–1 || 56 || 84 || 66.7 || 642 || 7.6 || 58 || 5 || 1 || 6.0 || 1.2 || style="background:#cfecec;"|104.4 || 4 || −3 || −0.8 || 1 || 1 || 5 || 32 || '''0''' || '''0'''
|-
! [[2021–22 NFL playoffs|2021]] !! [[2021 Green Bay Packers season|GB]]
| 1 || 1 || 0–1 || 20 || 29 || 69.0 || 225 || 7.8 || style="background:#cfecec;"|'''75''' || 0 || '''0''' || 0.0 || style="background:#cfecec;"|'''0.0''' || 91.9 || 0 || 0 || — || 0 || 0 || 5 || 29 || 1 || '''0'''
|-
! [[2025–26 NFL playoffs|2025]] !! [[2025 Pittsburgh Steelers season|PIT]]
| 1 || 1 || 0–1 || 17 || 33 || 51.5 || 146 || 4.4 || 25 || 0 || 1 || 0.0 || 3.0 || 50.8 || 0 || 0 || — || 0 || 0 || 4 || 36 || 2 || 1
|-
! colspan="2"| Career<ref>{{cite web | url=https://www.pro-football-reference.com/players/R/RodgAa00/gamelog/post/ | title=Aaron Rodgers Career Game Log | website=[[Pro-Football-Reference.com]] }}</ref> !! 23 !! 22 !! 11–11 !! 518 !! 807 !! 64.2 !! 6,040 !! 7.5 !! 75 !! 45 !! 14 !! 5.6 !! 1.7 !! 98.1 !! 56 !! 285 !! 5.1 !! 28 !! 4 !! 59 !! 403 !! 14 !! 6
|}
===College===
{| class="wikitable" style="text-align:center;"
|+ {{Screen reader-only|College statistics}}
! rowspan="2"| Year
! rowspan="2"| Team
! colspan="3"| Games
! colspan="8"| Passing
! colspan="4"| Rushing
|-
! {{abbr|GP|Games played}} !! {{abbr|GS|Games started}} !! {{abbr|Record|Record as a starter}} !! {{abbr|Cmp|Pass completions}} !! {{abbr|Att|Pass attempts}} !! {{abbr|Pct|Completion percentage}} !! {{abbr|Yds|Passing yards}} !! {{abbr|Avg|Average yards per pass attempts}} !! {{abbr|TD|Passing touchdowns}} !! {{abbr|Int|Interceptions}} !! {{abbr|Rate|Passer rating}} !! {{abbr|Att|Rushing attempts}} !! {{abbr|Yds|Rushing yards}} !! {{abbr|Avg|Average yards per rush}} !! {{abbr|TD|Rushing touchdowns}}
|-
! 2002 !! [[Butte College|Butte]]
| 11 || 11 || '''10–1''' || 164 || 265 || 61.9 || 2,408 || 9.1 || 28 || 4 || 170.1 || 101 || 294 || 2.9 || 7
|-
! [[2003 NCAA Division I-A football season|2003]] !! [[2003 California Golden Bears football team|California]]
| 13 || 10 || 7–3 || '''215'''|| '''349'''|| 61.6 || '''2,903'''|| '''8.3'''|| 19 || 5 || 146.6 || '''86'''|| '''210'''|| '''2.4'''|| '''5'''
|-
! [[2004 NCAA Division I-A football season|2004]] !! [[2004 California Golden Bears football team|California]]
| 12 || 12 || 10–2 || 209 || 316 || '''66.1'''|| 2,566 || 8.1 || '''24'''|| '''8'''|| '''154.4'''|| 74 || 126 || 1.7 || 3
|-
! colspan="2"| FBS career<ref>{{cite web | url=https://www.sports-reference.com/cfb/players/aaron-rodgers-1.html | title=Aaron Rodgers College Stats, School, Draft, Gamelog, Splits }}</ref> !! 25 !! 22 !! 17–5 !! 424 !! 665 !! 63.8 !! 5,469 !! 8.2 !! 43 || 13 !! 150.3 !! 160 !! 336 !! 2.1 !! 8
|}
==Career highlights==
===Awards den honors===
;NFL
* [[Super Bowl XLV]] champion
* [[Super Bowl MVP]] (XLV)
* 4× [[NFL Most Valuable Player]] (2011, 2014, 2020, 2021)
* 4× First-team [[All-Pro]] ([[2011 All-Pro Team|2011]], [[2014 All-Pro Team|2014]], [[2020 All-Pro Team|2020]], [[2021 All-Pro Team|2021]])
* Second-team All-Pro ([[2012 All-Pro Team|2012]])
* 10× [[Pro Bowl]] ([[2010 Pro Bowl|2009]], [[2012 Pro Bowl|2011]], [[2013 Pro Bowl|2012]], [[2015 Pro Bowl|2014]]–[[2017 Pro Bowl|2016]], [[2019 Pro Bowl|2018]]–[[2022 Pro Bowl|2021]])<ref>{{Cite web |title=NFL Pro Bowl Selections Career Leaders |url=https://www.pro-football-reference.com/leaders/pro_bowls_career.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
* 4× [[List of National Football League season passer rating leaders|NFL passer rating leader]] (2011, 2012, 2020, 2021)<ref>{{cite web |title=NFL Passer Rating Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_rating_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 2× [[List of National Football League season passing touchdowns leaders|NFL passing touchdowns leader]] (2016, 2020)<ref>{{cite web |title=NFL Passing Touchdowns Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_td_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* [[List of National Football League annual pass completion percentage leaders|NFL completion percentage leader]] (2020)<ref>{{cite web |title=NFL Pass Completion % Year-by-Year Leaders |url=https://www.pro-football-reference.com/leaders/pass_cmp_perc_year_by_year.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 3× [[Total quarterback rating]] leader: [[2011 NFL season|2011]], [[2020 NFL season|2020]], [[2021 NFL season|2021]]
* [[NFL 2010s All-Decade Team]]<ref>{{cite web |last=Battista |first=Judy |author-link=Judy Battista |date=April 6, 2020 |title=NFL 2010s All-Decade Team: Tom Brady, Aaron Donald headliners |url=https://www.nfl.com/news/nfl-2010s-all-decade-team-tom-brady-aaron-donald-headliners-0ap3000001108338 |access-date=June 23, 2023 |website=NFL.com}}</ref>
* [[Bart Starr Award]] (2014)<ref>{{Cite web |date=January 15, 2014 |title=Aaron Rodgers wins 2014 Bart Starr Award |url=https://www.packers.com/news/aaron-rodgers-wins-2014-bart-starr-award-12441847 |access-date=June 23, 2023 |website=Packers.com}}</ref>
* [[Bert Bell Award]] (2011)<ref>{{cite web |title=Bert Bell Award (Player of the Year) Winners |url=https://www.pro-football-reference.com/awards/bert-bell-award.htm |website=[[Pro Football Reference]] |access-date=June 23, 2023 |language=en}}</ref>
* 4× [[PFWA NFL Most Valuable Player Award|PFWA NFL Most Valuable Player]] (2011, 2014, 2020, 2021)<ref>{{cite web | last=Spofford | first=Mike | title=Packers QB Aaron Rodgers named PFWA Most Valuable Player for 2021 | website=Packers.com| date=January 26, 2022 | url=https://www.packers.com/news/packers-qb-aaron-rodgers-named-pfwa-most-valuable-player-for-2021 | access-date=December 19, 2025}}</ref>
* [[PFWA NFL Offensive Player of the Year Award|PFWA NFL Offensive Player of the Year]]: (2011)<ref>{{Cite web |title=Offensive Player of the Year|url=https://www.profootballwriters.org/on-field-awards/pfwa-nfl-offensive-player-of-the-year/ |access-date=January 19, 2023 |website=PFWA |language=en-US}}</ref>
* [[PFWA Good Guy Award]] (2011)
* [[NFL Moment of the Year]] ([[2015 NFL season|2015]])
* 2× [[Sporting News]] Offensive Player of the Year (2011, 2014)<ref>{{Cite web |last=Treacy |first=Dan |date=February 1, 2023 |title=History of Sporting News' NFL awards: Full list of past winners, voting results from 1954–2023 |url=https://www.sportingnews.com/us/nfl/news/nfl-awards-history-winners-results/qdey5fuegm3zgbeuqlxgoymv |access-date=January 20, 2024 |website=Sporting News}}</ref>
* 2× GMC Never Say Never Award (2013, 2014)<ref name="Never">{{Cite web |last=Demovsky |first=Rob |date=February 2, 2014 |title=Rodgers-to-Cobb TD recognized |url=https://www.espn.com/blog/green-bay-packers/post/_/id/7150/rodgers-to-cobb-td-recognized |url-status=live |archive-url=https://web.archive.org/web/20250701183928/https://www.espn.com/blog/green-bay-packers/post/_/id/7150/rodgers-to-cobb-td-recognized |archive-date=July 1, 2025 |access-date=July 1, 2025 |website=ESPN.com}}</ref>
* 3× [[Kansas City Committee of 101 awards#Offensive Player of the Year Awards|NFC Offensive Player of the Year]] (2011, 2014, 2020)<ref name=KC101off/>
* 3× [[FedEx Air & Ground NFL Players of the Week#FedEx Air & Ground Players of the Year winners|FedEx Air NFL Player of the Year]] (2010, 2014, 2020)<ref>{{Cite web |last=Kasprzak |first=M. J. |date=February 2, 2011 |title=Aaron Rodgers Earns 2010 FedEx Air Player of the Year |url=https://bleacherreport.com/articles/594763-aaron-rodgers-earns-2010-fedex-air-player-of-the-year |url-status=live |archive-url=https://web.archive.org/web/20190123010833/https://bleacherreport.com/articles/594763-aaron-rodgers-earns-2010-fedex-air-player-of-the-year |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=Bleacher Report}}</ref><ref>{{Cite web |date=February 1, 2015 |title=Aaron Rodgers and Le'Veon Bell Named 2014 FedEx Air & Ground NFL Players of the Year at "4th Annual NFL Honors" |url=https://www.marketwatch.com/press-release/aaron-rodgers-and-leveon-bell-named-2014-fedex-air-ground-nfl-players-of-the-year-at-4th-annual-nfl-honors-2015-02-01 |url-status=dead |archive-url=https://web.archive.org/web/20190123071334/https://www.marketwatch.com/press-release/aaron-rodgers-and-leveon-bell-named-2014-fedex-air-ground-nfl-players-of-the-year-at-4th-annual-nfl-honors-2015-02-01 |archive-date=January 23, 2019 |access-date=January 22, 2019 |website=MarketWatch}}</ref>
* 14× ''[[NFL Top 100]]'' selections (most all-time)
;NCAA
* [[Insight Bowl]] Offensive MVP ([[2003 Insight Bowl|2003]])<ref name="Green Bay Bio" />
* First-team All-[[Pac-10]] (2004)<ref name="calbears1" />
* California Golden Bears Co-Offensive MVP (2004)<ref>{{Cite web |date=December 13, 2004 |title=Arrington, Rodgers and Riddle Named Team MVPs |url=http://www.calbears.com/sports/m-footbl/spec-rel/121304aab.html |url-status=dead |archive-url=https://web.archive.org/web/20120609121453/http://www.calbears.com/sports/m-footbl/spec-rel/121304aab.html |archive-date=June 9, 2012 |website=California Golden Bears Athletics}}</ref>
;NBA
* 2021 [[NBA Championship]] (as minority owner)<ref name="AR NBA1">{{Cite web |last=Baer |first=Jack |date=July 21, 2021 |title=NBA Finals: Aaron Rodgers, Bucks co-owner, set to get another ring amid Packers trade rumors |url=https://sports.yahoo.com/aaron-rodgers-bucks-co-owner-another-ring-packers-trade-rumors-044134828.html |url-status=live |archive-url=https://web.archive.org/web/20210723073539/https://sports.yahoo.com/aaron-rodgers-bucks-co-owner-another-ring-packers-trade-rumors-044134828.html |archive-date=July 23, 2021 |access-date=July 29, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
;Media
* 2011 [[Associated Press Male Athlete of the Year]]
* 2011 [[The Sporting News#Athlete of the Year|''The Sporting News'' Athlete of the Year]]<ref>{{cite web | last=Hille | first=Bob | title=History of The Sporting News' Athlete of the Year awards: Full list of past winners, 1968-2023 | website=Sporting News | date=December 19, 2023 | url=https://www.sportingnews.com/us/archives/news/sporting-news-athlete-year-awards-full-list-past-winners/b5057b347246de26b7015930 | access-date=December 19, 2025}}</ref>
* 4× [[ESPY Award]] winner – [[Best NFL Player ESPY Award|Best NFL Player]] (2011, 2012, 2015, 2017)<ref>{{Cite web |date=July 14, 2011 |title=Aaron Rodgers wins Best NFL Player award at ESPY Awards |url=https://www.sportsnet.ca/football/nfl/aaron-rodgers-wins-best/ |access-date=January 19, 2023 |website=Sportsnet.ca}}</ref><ref>{{Cite web |last=Yuille |first=Sean |date=July 12, 2012 |title=ESPYS 2012: Aaron Rodgers Beats Out Calvin Johnson, Others For Best NFL Player |url=https://www.prideofdetroit.com/2012/7/12/3154707/espys-2012-best-nfl-player-aaron-rodgers-calvin-johnson |access-date=January 19, 2023 |website=Pride Of Detroit|publisher=SB Nation |language=en}}</ref><ref>{{Cite web |last=Mosendz |first=Polly |date=July 16, 2015 |title=Who Won What at the ESPYs |url=https://www.newsweek.com/round-who-won-what-espys-354546 |access-date=January 19, 2023 |website=Newsweek |language=en}}</ref><ref>{{Cite web |last=Wagner-McGough |first=Sean |date=July 12, 2017 |title=Aaron Rodgers beats Tom Brady, Ezekiel Elliott for Best NFL Player at the ESPYs |url=https://www.cbssports.com/nfl/news/aaron-rodgers-beats-tom-brady-ezekiel-elliott-for-best-nfl-player-at-the-espys/ |access-date=January 19, 2023 |website=CBSSports.com |language=en}}</ref>
;State/Local
* De Wisconsin Legislature approve a proposal wey declare December 12, 2012 (stylized as 12/12/12) "Aaron Rodgers Day" in honor of Rodgers, wey ein jersey number plus de Packers be 12.<ref name="12-12-12 proclaimed Aaron Rodgers Day">{{Cite web |last=Peterson |first=Eric |date=May 9, 2012 |title=12–12–12 proclaimed Aaron Rodgers Day |url=http://www.fox11online.com/dpp/sports/packers_and_nfl/12-12-12-proclaimed-aaron-rodgers-day |url-status=dead |archive-url=https://web.archive.org/web/20120518140840/http://www.fox11online.com/dpp/sports/packers_and_nfl/12-12-12-proclaimed-aaron-rodgers-day |archive-date=May 18, 2012 |access-date=May 19, 2012 |publisher=Fox11}}</ref><ref name="USA TODAY Arod Day">{{Cite web |last=Davis |first=Charles |date=May 9, 2012 |title=Wisconsin declares Dec. 12, 2012, Aaron Rodgers Day |url=https://www.usatoday.com/sports/football/nfl/packers/story/2012-05-09/Aaron-Rodgers-Day/54862416/1 |url-status=dead |archive-url=https://web.archive.org/web/20120517044032/http://www.usatoday.com/sports/football/nfl/packers/story/2012-05-09/Aaron-Rodgers-Day/54862416/1 |archive-date=May 17, 2012 |access-date=May 19, 2012 |website=USA Today}}</ref>
;Golf
* 2023 AT&T Pebble Beach Pro Am winner<ref>{{Cite web |last=Porter |first=Kyle |date=February 5, 2023 |title=2023 AT&T Pebble Beach Pro-Am: Packers QB Aaron Rodgers wins amateur portion of event with Ben Silverman |url=https://www.cbssports.com/golf/news/2023-at-t-pebble-beach-pro-am-packers-qb-aaron-rodgers-wins-amateur-portion-of-event-with-ben-silverman/ |access-date=April 5, 2023 |website=CBSSports.com |language=en}}</ref>
===Records===
====NFL records====
;Career
* Career passer rating (minimum 1,500 attempts): 102.5
* Career TD–INT ratio (minimum 1,500 attempts): 4.4–1
* Consecutive attempts without an interception (402)<ref>{{Cite web |date=December 16, 2018 |title=Aaron Rodgers' record streak without interception ends at 402 pass attempts |url=https://abcnews.go.com/Sports/aaron-rodgers-record-streak-interception-ends-402-pass/story?id=59851408 |url-status=live |archive-url=https://web.archive.org/web/20200724202334/https://abcnews.go.com/Sports/aaron-rodgers-record-streak-interception-ends-402-pass/story?id=59851408 |archive-date=July 24, 2020 |access-date=December 6, 2019 |website=ABC News}}</ref>
* Fastest to 400 passing touchdowns (193 games)<ref>{{Cite web |last=Demovsky |first=Rob |date=December 6, 2020 |title=Packers' Rodgers fastest to 400 career TD passes |url=https://www.espn.com/nfl/story/_/id/30465452/green-bay-packers-qb-aaron-rodgers-fastest-400-career-touchdown-passes |url-status=live |archive-url=https://web.archive.org/web/20210217222722/https://www.espn.com/nfl/story/_/id/30465452/green-bay-packers-qb-aaron-rodgers-fastest-400-career-touchdown-passes |archive-date=February 17, 2021 |access-date=May 24, 2022 |website=[[ESPN.com]] |language=en}}</ref>
* Career sacks taken: 600<ref name="f403">{{cite web | last=Alper | first=Josh | title=Aaron Rodgers becomes most-sacked QB in history, gets called for late hit | website=NBC Sports | date=December 29, 2024 | url=https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/aaron-rodgers-becomes-most-sacked-qb-in-history-gets-called-for-late-hit | access-date=January 15, 2025}}</ref><ref>{{Cite web |title=NFL Sacked Career Leaders (since 1960) |url=https://www.pro-football-reference.com/leaders/pass_sacked_career.htm |access-date=February 20, 2025 |website=Pro Football Reference |ref={{sfnref|PFR}}}}</ref>
;Single season den games
* Passer rating insyd a season: 122.5 (2011)<ref name="Prisco">{{Cite web |last=Prisco |first=Pete |date=January 4, 2012 |title=Postseason awards: It's close, but passer rating makes Rodgers MVP |url=http://www.cbssports.com/nfl/story/16714574/postseason-awards-its-close-but-passer-rating-makes-rodgers-mvp |url-status=dead |archive-url=https://web.archive.org/web/20120311144147/http://www.cbssports.com/nfl/story/16714574/postseason-awards-its-close-but-passer-rating-makes-rodgers-mvp |archive-date=March 11, 2012 |access-date=January 6, 2012 |website=CBS Sports}}</ref><ref name="pro-football-reference1920">{{Cite web |title=NFL Passer Rating Single-Season Leaders |url=https://www.pro-football-reference.com/leaders/pass_rating_single_season.htm |url-status=live |archive-url=https://web.archive.org/web/20181225031832/https://www.pro-football-reference.com/leaders/pass_rating_single_season.htm |archive-date=December 25, 2018 |access-date=November 15, 2021 |website=[[Pro Football Reference]] |language=en}}</ref>
* Lowest interception percentage insyd a season: 0.3 (2018)<ref name="passintpfr" />
* Consecutive games plus a passer rating over 100.0 insyd a season: 12 (2011)<ref name="sifqy">{{Cite web |title=Most consecutive games with a passer rating over 100.0 in a season |url=http://pfref.com/tiny/sifqy |url-status=dead |archive-url=https://web.archive.org/web/20211201204420/https://stathead.com/tools/tiny.fcgi?id=sifqy |archive-date=December 1, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
* Consecutive games plus a passer rating over 110.0 insyd a season: 11 (2011)<ref>{{Cite web |title=Most consecutive games with a passer rating over 110.0 in a season |url=http://pfref.com/tiny/8BeIw |url-status=live |archive-url=https://web.archive.org/web/20211201203057/https://stathead.com/tools/tiny.fcgi?id=8BeIw |archive-date=December 1, 2021 |access-date=March 28, 2018 |website=[[Pro Football Reference]]}}</ref>
====Green Bay Packers records====
* Most passing touchdowns (475)<ref name="careergb">{{Cite web |title=Green Bay Packers Career Passing Leaders |url=https://www.pro-football-reference.com/teams/gnb/career-passing.htm |access-date=January 19, 2023 |website=[[Pro Football Reference]] |language=en}}</ref>
* Career completion percentage (65.3)<ref name="careergb" />
== Touchdown celebration ==
Since becoming an NFL starter insyd 2008, Rodgers cam be known for ein unique touchdown celebration, wich he den ein teammates dub de "Championship Belt." After a scoring play, Rodgers dey celebrate by making a motion as if he dey put an invisible championship belt on around ein waist.<ref>{{Cite web |last=Sayler |first=Ryan |date=January 10, 2011 |title=The Evolution of Aaron Rodgers' Weird "Belt Dance" |url=http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120416003749/http://realfantasy.sportspagenetwork.com/2011/01/The-Evolution-Of-Aaron-Rodgers-Weird-Belt-Dance.aspx |archive-date=April 16, 2012 |access-date=May 10, 2012 |website=Real Fantasy}}</ref><ref>{{Cite web |date=January 16, 2011 |title=Aaron Rodgers | Championship Belt Celebration |url=http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |url-status=live |archive-url=https://web.archive.org/web/20120322064628/http://www.sportsgrid.com/nfl/aaron-rodgers-championship-belt-celebration/ |archive-date=March 22, 2012 |access-date=May 10, 2012 |website=SportsGrid}}</ref> Teammate Greg Jennings say of de celebration: "''It's just something fun that he does. We get excited when we see it cause we know that he's made a play or we've made a play as offense."''<ref name="youtube1">{{Cite web |date=January 25, 2011 |title=Aaron Rodgers Championship Belt Special on ESPN |url=https://www.youtube.com/watch?v=mcwa2EvQ61Y |url-status=live |archive-url=https://web.archive.org/web/20111225110056/http://www.youtube.com/watch?v=mcwa2EvQ61Y |archive-date=December 25, 2011 |access-date=May 10, 2012 |publisher=ESPN |via=YouTube}}</ref> De gesture draw de praise of WWE wrestler Triple H wey e cam be common for Green Bay fans to mimic during games.<ref>{{Cite web |last=Anderson |first=Kyle |date=February 7, 2011 |title=Aaron Rodgers Wins Super Bowl MVP, Celebrates With Championship Belt |url=http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |url-status=dead |archive-url=https://web.archive.org/web/20191206042749/http://www.mtv.com/news/2580531/aaron-rodgers-belt-super-bowl/ |archive-date=December 6, 2019 |access-date=December 6, 2019 |publisher=MTV}}</ref> Na he sanso celebrate by doing de shoryuken, a jumping uppercut move from de ''Street Fighter'' series.<ref>{{Cite web |last=Kunnath |first=Avinash |date=February 17, 2011 |title=Aaron Rodgers Best Touchdown Celebration: Championship Belt, Super Mario Jump, Or Shoryuken? |url=https://bayarea.sbnation.com/california-golden-bears/2011/2/17/1998750/aaron-rodgers-best-touchdown-celebration-championship-belt-super-mario-jump-shoryuken |access-date=January 19, 2023 |website=SB Nation Bay Area |language=en}}</ref>
== Alternative medicine advocacy ==
Rodgers be vocal about ein use of alternative medicine,<ref>{{Cite web |last=Mole |first=Beth |date=February 23, 2022 |title=Aaron Rodgers' go-to cleanse could involve oily enemas, bloodletting, vomiting |url=https://arstechnica.com/science/2022/02/everything-you-didnt-need-to-know-about-aaron-rodgers-oily-enema-cleanse/ |access-date=August 8, 2022 |website=[[Ars Technica]] |language=en}}</ref><ref>{{Cite web |last=McLaughlin |first=Kelly |date=November 3, 2021 |title=Aaron Rodgers reportedly petitioned the NFL to have an alternative treatment count as being vaccinated against COVID-19 |url=https://sports.yahoo.com/aaron-rodgers-reportedly-petitioned-nfl-163711629.html |access-date=August 8, 2022 |website=[[Yahoo! Sports]] |language=en}}</ref> wey he be a proponent of de legalization of psychedelic drugs.<ref>{{cite magazine|last=Chavkin|first=Daniel|date=June 23, 2023|title=Aaron Rodgers Touts Legalization of Psychedelics at Conference|url=https://www.si.com/extra-mustard/2023/06/23/new-york-jets-aaron-rodgers-touts-psychedelics-legalization|access-date=June 23, 2023|magazine=[[Sports Illustrated]]|language=en}}</ref> He reveal insyd 2022 say na he previously make offseason trips to Peru, wer he consume ayahuasca.<ref>{{Cite web |last=Demovsky |first=Rob |date=August 8, 2022 |title=NFL says Green Bay Packers QB Aaron Rodgers' use of ayahuasca didn't violate drug policy |url=https://www.espn.com/nfl/story/_/id/34371733/nfl-says-green-bay-packers-qb-aaron-rodgers-use-ayahuasca-violate-drug-policy |access-date=August 8, 2022 |website=[[ESPN.com]] |language=en |agency=[[Associated Press]]}}</ref>
=== Views on COVID-19 ===
Rodgers be one of de most prominent American athletes to choose he no go get vaccinated against de [[COVID-19]] virus,<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref> wey na he be critical of de NFL dema health den safety protocols during de COVID-19 pandemic.<ref>{{Cite web |last=Wood |first=Ryan |date=November 5, 2021 |title=Packers quarterback Aaron Rodgers blasts 'woke mob' over COVID-19 news on Pat McAfee show, rips NFL's 'draconian' protocols |url=https://www.jsonline.com/story/sports/nfl/packers/2021/11/05/packers-quarterback-aaron-rodgers-talks-covid-19-sounds-off-nfl-protocols/6280790001/ |access-date=January 5, 2024 |website=[[Milwaukee Journal Sentinel]] |language=en}}</ref> Ein stances on de COVID-19 vaccine be criticized by scientists, health officials, den sam former players den commentators, secof concerns say na Rodgers dey spread vaccine misinformation wey he dey potentially risk de health of ein teammates.<ref>{{Cite web |last1=Belson |first1=Ken |last2=Anthes |first2=Emily |date=November 8, 2021 |title=Scientists Fight a New Source of Vaccine Misinformation: Aaron Rodgers |url=https://www.nytimes.com/2021/11/08/sports/football/aaron-rodgers-vaccine.html |access-date=January 5, 2024 |work=[[The New York Times]] |language=en}}</ref>
During de NFL season, Rodgers frequently appear on ''The Pat McAfee Show''.<ref>{{Cite magazine|last=Hladik|first=Matt|date=January 26, 2021|title=Aaron Rodgers Explains Why He Appears on the Pat McAfee Show|url=https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|url-status=live|archive-url=https://web.archive.org/web/20210924043905/https://thespun.com/nfl/nfc-north/green-bay-packers/aaron-rodgers-explains-why-he-appears-on-the-pat-mcafee-show|archive-date=September 24, 2021|access-date=December 1, 2021|magazine=The Spun by [[Sports Illustrated]]}}</ref> One such interview insyd 2021 make headlines after Rodgers make several false den misleading statements about COVID-19,<ref name="Rosenberg">{{Cite magazine|last=Rosenberg|first=Michael|date=November 5, 2021|title=The Problem Is Aaron Rodgers Thinks He Has All the Answers|url=https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|url-status=live|archive-url=https://web.archive.org/web/20211108000052/https://www.si.com/nfl/2021/11/05/the-problem-is-aaron-rodgers-thinks-he-has-all-the-answers|archive-date=November 8, 2021|access-date=November 8, 2021|magazine=[[Sports Illustrated]]|language=en-us}}</ref><ref>{{Cite news|last=Kornfield|first=Meryl|date=November 5, 2021|title=Aaron Rodgers said he did the research on covid vaccines. Here's how he was wrong, according to experts|url=https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|url-status=live|archive-url=https://web.archive.org/web/20211109160437/https://www.washingtonpost.com/sports/2021/11/05/aaron-rodgers-fact-check/|archive-date=November 9, 2021|access-date=November 15, 2021|newspaper=[[The Washington Post]]}}</ref> wey dey imply say na unvaccinated people no be de group most affected by de pandemic den dat [[ivermectin]] be beneficial for people plus COVID-19.<ref name="unfiltered">{{Cite web |last=Van Valkenburg |first=Kevin |date=January 21, 2022 |title=The unfiltered year of Aaron Rodgers |url=https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20220417132643/https://www.espn.com/nfl/story/_/id/33088151/the-unfiltered-year-aaron-rodgers |archive-date=April 17, 2022 |access-date=January 21, 2022 |website=[[ESPN.com]] |language=en}}</ref><ref>{{Cite web |last=Schad |first=Tom |date=November 5, 2021 |title=Fact check: 6 of Aaron Rodgers' false and misleading claims about COVID-19 vaccine |url=https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |url-status=live |archive-url=https://web.archive.org/web/20211108002751/https://www.usatoday.com/story/sports/nfl/packers/2021/11/05/aaron-rodgers-green-bay-packers-vaccine-pat-mcafee/6301654001/ |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=[[USA Today]] |language=en-US}}</ref><ref>{{Cite web |last=Sutelan |first=Edward |date=November 14, 2021 |title=Fact-checking Aaron Rodgers' bizarre COVID beliefs and 'woke mob' claim made on Pat McAfee Show |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |url-status=live |archive-url=https://web.archive.org/web/20211108035450/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-covid-pat-mcafee-show-target-woke-mob/1caksb1mfhcrj1dgikrkvttu90 |archive-date=November 8, 2021 |access-date=November 8, 2021 |website=Sporting News |language=en}}</ref><ref>{{Cite web |last=Reinwald |first=Caroline |date=November 6, 2021 |title=Aaron Rodgers vaccine fact check: Doctor responds to quarterback's concerns |url=https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |url-status=live |archive-url=https://web.archive.org/web/20211108035459/https://www.wisn.com/article/aaron-rodgers-vaccine-fact-check-doctor-responds-to-quarterbacks-concerns/38177501 |archive-date=November 8, 2021 |access-date=November 8, 2021 |publisher=[[WISN-TV]] |language=en}}</ref> Dese den similar claims lead sam reporters to describe Rodgers as a conspiracy theorist.<ref name="Rosenberg" /><ref>{{Cite web |last=Jones |first=Ja'han |date=November 9, 2021 |title=Aaron Rodgers should keep Martin Luther King Jr. out of his foolish Covid claims |url=https://www.msnbc.com/the-reidout/reidout-blog/aaron-rodgers-martin-luther-king-jr-covid-vaccine-rcna4872 |access-date=November 13, 2021 |publisher=MSNBC |language=en}}</ref>
== Political den social commentary ==
Rodgers voice support give [[Robert F. Kennedy Jr.]] den ein presidential campaign of 2024.<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref> Kennedy reportedly include Rodgers on ein "short list" of possible vice presidential running mates, along plus odas, wey dey include [[Jesse Ventura]] den [[Nicole Shanahan]].<ref name=":0">{{Cite news|last=O’Brien|first=Rebecca Davis|date=March 12, 2024|title=Aaron Rodgers and Jesse Ventura Top R.F.K. Jr.'s List for Running Mate|url=https://www.nytimes.com/2024/03/12/us/politics/rfk-jr-aaron-rodgers-jesse-ventura.html|access-date=March 13, 2024|work=The New York Times|language=en-US|issn=0362-4331}}</ref><ref name="OBrienMar172024">{{Cite news|last=O'Brien|first=Rebecca Davis|date=March 17, 2024|title=Nicole Shanahan Emerges as a Top Candidate to Be R.F.K. Jr.'s Running Mate|url=https://www.nytimes.com/2024/03/17/us/politics/nicole-shanahan-rfk-jr-running-mate.html|access-date=May 30, 2024|work=[[The New York Times]]}}</ref>
On [[Adam Breneman]] ein podcast insyd 2022, former Packers backup quarterback [[DeShone Kizer]] talk say Rodgers express interest insyd 9/11 conspiracy theories at one of de first meetings between de two quarterbacks. Kizer describe dema discussion of conspiracy theories as "a real thought experiment".<ref name="nypost-2022-11-29">{{cite news|last1=Hendricks|first1=Jaclyn|date=November 29, 2022|title=DeShone Kizer: Aaron Rodgers pressed me on 9/11 conspiracies|url=https://nypost.com/2022/11/29/deshone-kizer-aaron-rodgers-pressed-me-on-9-11-conspiracies/|access-date=January 8, 2023|work=[[The New York Post]]}}</ref><ref name="si-2022-11-29">{{cite magazine|last1=Salvador|first1=Joseph|date=November 29, 2022|title=Former Packers QB Says Aaron Rodgers Once Asked Him Whether He Believes in 9/11|url=https://www.si.com/nfl/2022/11/29/packers-deshone-kizer-aaron-rodgers-once-asked-him-if-he-believes-in-9-11-conspiracy-theories|access-date=January 8, 2022|magazine=[[Sports Illustrated]]|language=en-us}}</ref> Rodgers sanso promote de Tartarian architecture conspiracy theory.<ref name="tart">{{Cite web |last=Silverman |first=Robert |date=March 8, 2024 |title=Aaron Rodgers Dabbles in the 'QAnon of Architecture' |url=https://www.yahoo.com/entertainment/aaron-rodgers-dabbles-qanon-architecture-234934271.html |access-date=January 15, 2025 |website=Yahoo! Entertainment}}</ref>
Insyd a January 2024 appearance on ''The Pat McAfee Show'', Rodgers, widout evidence, imply say na comedian [[Jimmy Kimmel]] be an acquaintance of disgraced financier den sex offender [[Jeffrey Epstein]], den dat Kimmel ein name go possibly appear in soon to be released court documents listing Epstein ein associates.<ref>{{Cite web |last=Simonetti |first=Isabella |date=January 9, 2024 |title=ESPN's Pat McAfee Said He Doesn't 'Take Back Anything' After Skewering Colleague |url=https://www.wsj.com/business/media/pat-mcafee-show-espn-aaron-rodgers-ede1d63b |access-date=January 9, 2024 |website=WSJ |language=en-US}}</ref> Kimmel deny de allegations den threatened to sue Rodgers for defamation if he repeat de claim.<ref>{{Cite web |last=Kimmel |first=Jimmy |author-link=Jimmy Kimmel |date=January 2, 2024 |title=X Post |url=https://twitter.com/jimmykimmel/status/1742324477323833546 |access-date=January 9, 2024 |website=X}}</ref> Insyd a follow-up appearance on McAfee ein show de following week, Rodgers state say: "''I'm glad that Jimmy is not on the list. I really am. I don't think he's the P-word [pedophile]."''<ref>{{Cite web |last=France |first=Lisa |date=January 9, 2024 |title=Aaron Rodgers blames media in response to Jimmy Kimmel's comments about him |url=https://www.cnn.com/2024/01/09/entertainment/jimmy-kimmel-aaron-rodgers-monologue/index.html |access-date=January 9, 2024 |website=CNN |language=en}}</ref>
During a February 2024 appearance on de conspiracy-focused ''Look Into It'' podcast wey [[Eddie Bravo]] host, Rodgers espouse numerous conspiracy theories on medicine, immigration, den John F. Kennedy.<ref>{{Cite web |last=Keeley |first=Sean |date=March 14, 2024 |title=Here's all the dumb shit Aaron Rodgers recently said on a conspiracy theory podcast |url=https://awfulannouncing.com/nfl/aaron-rodgers-conspiracy-theory-podcast-tartaria-immigrants-trump-biden.html |access-date=April 17, 2024 |website=Awful Announcing |language=en}}</ref> Na ein claims include say na dem create [[HIV/AIDS|AIDS]] den COVID by de government for de sake of pharmaceutical industry profits (sanso spy discredited HIV/AIDS origins theories den Operation Denver).<ref>{{Cite web |last=Buzinski |first=Jim |date=April 17, 2024 |title=Aaron Rodgers says AIDS was created by the U.S. government in the 1980s |url=https://www.outsports.com/2024/4/17/24091797/aaron-rodgers-says-aids-was-created-by-the-u-s-government-in-the-1980s/ |access-date=April 17, 2024 |website=outsports.com |language=en}}</ref>
Insyd 2024, CNN reporter [[Pamela Brown (journalist)|Pamela Brown]] report say na Rodgers insyd 2013 share false conspiracy theories about de Sandy Hook massacre, wey dey claim say na de attack be an "inside job" perpetrated by de government. Na CNN simultaneously report an allegation by an anonymous source say na Rodgers for several years prior say "''Sandy Hook never happened....All those children never existed. They were all actors.''"<ref name="SandyHook1">{{Cite web |last1=Brown |first1=Pamela |last2=Tapper |first2=Jake |date=March 14, 2024 |title=RFK Jr.'s VP prospect Aaron Rodgers has shared false Sandy Hook conspiracy theories in private conversations |url=https://www.cnn.com/2024/03/13/politics/aaron-rodgers-sandy-hook-conspiracy-theories/index.html |access-date=March 17, 2024 |website=CNN.com |language=en}}</ref> In response, Rodgers say, "''I am not and have never been of the opinion that the events did not take place" but did not say whether he had ever believed the Sandy Hook massacre was an "inside job.''"<ref name="SandyHook2">{{Cite web |last=Cimini |first=Rich |date=March 14, 2024 |title=Jets' Aaron Rodgers: 'Sandy Hook was an absolute tragedy' |url=https://www.espn.com/nfl/story/_/id/39731276/jets-aaron-rodgers-sandy-hook-was-absolute-tragedy |access-date=March 14, 2024 |website=[[ESPN.com]] |language=en}}</ref>
== Personal life ==
=== Family den relationships ===
Rodgers get two bros; de younger, [[Jordan Rodgers|Jordan]], play quarterback at Vanderbilt University wey he get a brief NFL career plus de Jacksonville Jaguars den Tampa Bay Buccaneers.<ref>{{Cite web |title=Jordan Rodgers Vanderbilt Bio |url=http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-url=https://web.archive.org/web/20111126203900/http://www.vucommodores.com/sports/m-footbl/2010-nsd-rodgers_jordan_lloloaaaaaaamzmmxcndd.html |archive-date=November 26, 2011 |access-date=June 19, 2017 |website=VUCommodores.com}}</ref><ref>{{Cite web |last=Imig |first=Paul |date=April 27, 2013 |title=Rodgers' younger brother Jordan signs with Jacksonville |url=http://www.foxsportswisconsin.com/fox-sports-networks/story/Rodgers-brother-Jordan-signs-with-Jackso?blockID=896957 |url-status=live |archive-url=https://web.archive.org/web/20220310191855/https://www.foxsports.com/wisconsin/story/rodgers-younger-brother-jordan-signs-with-jacksonville-042713 |archive-date=March 10, 2022 |access-date=June 19, 2017 |work=Fox Sports}}</ref><ref>{{Cite web |last=Eisenband |first=Jeff |date=October 8, 2018 |title=Jordan Rodgers Remembers His 'Good Little' Football Career |url=http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |url-status=dead |archive-url=https://web.archive.org/web/20190308081753/http://www.thepostgame.com/jordan-rodgers-his-good-little-football-career |archive-date=March 8, 2019 |access-date=March 7, 2019 |website=ThePostGame.com}}</ref> Although na dem raise Rodgers den ein bros Christian, insyd an interview insyd 2017 he state say he no longer affiliate einself plus any organized religion.<ref>{{Cite web |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=Aaron Rodgers, unmasked |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |url-status=live |archive-url=https://web.archive.org/web/20211114183324/http://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |archive-date=November 14, 2021 |access-date=March 7, 2019 |website=[[ESPN.com]]}}</ref>
Rodgers be de godfather to Cade Cobb, de second son of ein long-time NFL teammate, [[Randall Cobb (American football)|Randall Cobb]].<ref>{{cite web |last=Demovsky |first=Rob |date=October 28, 2021 |title=The 'beautiful, chaotic mess' that brought Randall Cobb's family back to Green Bay |url=https://www.espn.com/blog/green-bay-packers/post/_/id/51394/the-beautiful-chaotic-mess-that-brought-randall-cobbs-family-back-to-green-bay |accessdate=September 1, 2023 |work=[[ESPN.com]]}}</ref>
Na Rodgers dey insyd a relationship plus actress [[Olivia Munn]] from 2014 to 2017 den plus former professional racing driver [[Danica Patrick]] from 2018 to 2020.<ref name="peoplemag">{{Cite web |last=Mizoguchi |first=Karen |date=April 7, 2017 |title=Olivia Munn and Aaron Rodgers Break Up |url=http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |url-status=live |archive-url=https://web.archive.org/web/20170408081606/http://people.com/celebrity/olivia-munn-aaron-rodgers-split/?xid=socialflow_twitter_peoplemag |archive-date=April 8, 2017 |access-date=April 7, 2017 |website=[[People (magazine)|People]]}}</ref><ref name="AP">{{Cite web |date=January 15, 2018 |title=Danica Patrick finds love away from track with Aaron Rodgers |url=https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |url-status=live |archive-url=https://web.archive.org/web/20180219090141/https://apnews.com/f8d906ad3f384a8d9c994649bb5fc52a |archive-date=February 19, 2018 |access-date=February 18, 2018 |work=[[Associated Press News]]}}</ref><ref>{{Cite web |date=July 16, 2020 |title=Danica, Rodgers call off two-year relationship |url=https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |url-status=live |archive-url=https://web.archive.org/web/20210203195658/https://www.espn.com/espn/story/_/id/29477065/danica-patrick-aaron-rodgers-no-longer-together |archive-date=February 3, 2021 |access-date=February 7, 2021 |website=[[ESPN.com]]}}</ref> He start dey date actress [[Shailene Woodley]] insyd de second half of 2020.<ref>{{Cite web |last=Weinberg |first=Lindsay |date=February 2, 2021 |title=Inside Shailene Woodley and Aaron Rodgers' "Private and Low Key" Romance |url=https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |url-status=live |archive-url=https://web.archive.org/web/20210207071957/https://www.eonline.com/news/1233984/inside-shailene-woodley-and-aaron-rodgers-private-and-low-key-romance |archive-date=February 7, 2021 |access-date=February 7, 2021 |website=[[E!]]}}</ref> Insyd an appearance on ''The Tonight Show Starring Jimmy Fallon'' insyd 2021, Woodley confirm say na she be engaged to Rodgers.<ref>{{Cite web |last=Kubota |first=Samantha |date=February 22, 2021 |title=Shailene Woodley engaged to Aaron Rodgers, says she's 'still learning' about football |url=https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |url-status=live |archive-url=https://web.archive.org/web/20210223055422/https://www.today.com/popculture/shailene-woodley-engaged-aaron-rodgers-says-she-s-still-learning-t209729 |archive-date=February 23, 2021 |access-date=February 23, 2021 |website=[[Today.com]]}}</ref> On February 16, 2022, na Rodgers den Woodley call off dema engagement.<ref>{{Cite web |last=Wang |first=Jessica |date=February 16, 2022 |title=Shailene Woodley and Aaron Rodgers split, call off engagement |url=https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |url-status=live |archive-url=https://web.archive.org/web/20220409131033/https://www.yahoo.com/entertainment/shailene-woodley-aaron-rodgers-split-221234915.html |archive-date=April 9, 2022 |access-date=February 16, 2022 |website=[[Yahoo!]] |language=en-US}}</ref>
Insyd December 2024, na Rodgers state say na he dey date a woman dem name Brittani. Insyd June 2025, Rodgers state say dem marry a few months prior.<ref>{{Cite web |last=Comiter |first=Jordana |date=June 10, 2025 |title=Who Is Aaron Rodgers' Wife, Brittani? All About Her Private Relationship with the NFL Quarterback |url=https://people.com/who-is-brittani-aaron-rodgers-11718036 |access-date=June 22, 2025 |website=People.com |language=en}}</ref><ref>{{cite web |last=Hooks |first=Kalan |date=June 10, 2025 |title=Aaron Rodgers announces marriage at Steelers minicamp |url=https://www.espn.com/nfl/story/_/id/45481936/aaron-rodgers-pittsburgh-steelers-announces-marriage |access-date=June 10, 2025 |website=[[ESPN]]}}</ref>
=== Honorary memberships den business ventures ===
Na dem initiate Rodgers as an honorary member of Tau Kappa Epsilon (TKE) on January 5, 2012, at de Sigma-Xi Chapter at St. Norbert College.<ref>{{Cite web |last=Zegers |first=Dan |date=January 6, 2012 |title=MEET FRATERS AARON RODGERS & GRAHAM HARRELL |url=https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |url-status=live |archive-url=https://web.archive.org/web/20221229085550/https://www.tke.org/news/2012/01/06/meet-fraters-aaron-rodgers--graham-harrell |archive-date=December 29, 2022 |access-date=December 29, 2022 |publisher=Tau Kappa Epsilon}}</ref>
Insyd April 2018, na dem annouce Rodgers as a limited partner insyd de Milwaukee Bucks ownership group, wey dey make am de first active NFL player plus an ownership stake insyd an NBA franchise.<ref>{{Cite web |last=Demovsky |first=Rob |date=April 20, 2018 |title=Aaron Rodgers buys minority stake in Bucks: 'A dream come true' |url=https://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |url-status=live |archive-url=https://web.archive.org/web/20180422052450/http://www.espn.com/nfl/story/_/id/23269313/aaron-rodgers-green-bay-packers-purchases-minority-stake-milwaukee-bucks |archive-date=April 22, 2018 |access-date=April 22, 2018 |website=[[ESPN.com]]}}</ref> De team later win de NBA Finals insyd 2021.<ref>{{Cite news|last=Deb|first=Sopan|date=July 21, 2021|title=The Milwaukee Bucks Win the N.B.A. Championship|url=https://www.nytimes.com/2021/07/20/sports/basketball/milwaukee-bucks-nba-finals-championship.html|access-date=February 12, 2026|work=The New York Times|language=en-US|issn=0362-4331}}</ref>
== Media appearances ==
Na Rodgers be a longtime spokesperson for State Farm Insurance wey na he frequently feature insyd dema commercials. Insyd de commercials, Rodgers often dey highlight ein "Championship Belt" touchdown celebration, wich State Farm rename as de "Discount Double Check".<ref>{{Cite web |title=State Farm® State of Imitation (Aaron Rodgers) |url=https://www.youtube.com/watch?v=j9Rv7czl9cU |url-status=live |archive-url=https://web.archive.org/web/20121017234148/http://www.youtube.com/watch?v=j9Rv7czl9cU |archive-date=October 17, 2012 |access-date=May 10, 2012 |publisher=State Farm |via=YouTube}}</ref> Rodgers sanso be featured insyd Pizza Hut advertisements,<ref>{{Cite web |last=Rovell |first=Darren |author-link=Darren Rovell |date=September 4, 2012 |title=Pizza Hut uses Aaron Rodgers in new ads |url=https://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |url-status=live |archive-url=https://web.archive.org/web/20161229100812/http://www.espn.com/blog/playbook/dollars/post/_/id/1414/pizza-hut-uses-aaron-rodgers-in-new-ads |archive-date=December 29, 2016 |access-date=December 29, 2016 |website=[[ESPN.com]]}}</ref> as well as numerous local Wisconsin-based advertisements.<ref name="milcomm">{{Cite web |last=Kirchen |first=Rich |date=August 20, 2015 |title=Aaron Rodgers' commercial work in Wisconsin appears to be dwindling |url=http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |url-status=live |archive-url=https://web.archive.org/web/20151008232237/http://www.bizjournals.com/milwaukee/blog/2015/08/aaron-rodgers-commercial-work-in-wisconsin-appears.html |archive-date=October 8, 2015 |access-date=December 29, 2016 |website=Milwaukee Business Journal}}</ref>
Insyd May 2015, Rodgers appear as a contestant on ''Celebrity Jeopardy!''; he defeat ''Shark Tank'' investor [[Kevin O'Leary]] den astronaut den future United States Senator [[Mark Kelly]], winning $50,000 for ein charity. Insyd April 2021, Rodgers get a two-week stint as guest host on ''Jeopardy!'' from April 5–16.<ref>{{Cite web |last=Demovsky |first=Rob |date=January 12, 2021 |title=Green Bay Packers QB Aaron Rodgers says he'll be a 'Jeopardy!' guest host |url=https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |url-status=live |archive-url=https://web.archive.org/web/20210116152354/https://www.espn.com/nfl/story/_/id/30700471/green-bay-packers-qb-aaron-rodgers-jeopardy-guest-host |archive-date=January 16, 2021 |access-date=January 16, 2021 |publisher=[[ESPN]]}}</ref><ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers sanso make numerous cameo appearances on television, wey dey include insyd a 2013 episode of ''The Office'', a 2019 episode of ''Game of Thrones'', den a 2015 episode of de sketch comedy television series ''Key & Peele''.<ref>{{Cite web |last=Zaldivar |first=Gabe |date=May 10, 2013 |title=Aaron Rodgers Judges Andy Bernard Breakdown on 'The Office' |url=https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |url-status=live |archive-url=https://web.archive.org/web/20210720173445/https://bleacherreport.com/articles/1635538-aaron-rodgers-judges-andy-bernard-breakdown-on-the-office |archive-date=July 20, 2021 |access-date=July 20, 2021 |website=Bleacher Report}}</ref><ref>{{Cite web |date=May 13, 2019 |title=Video NFL star makes surprise cameo on 'Game of Thrones' |url=https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |url-status=live |archive-url=https://web.archive.org/web/20211018165222/https://abcnews.go.com/GMA/Culture/video/nfl-star-makes-surprise-cameo-game-thrones-63006237 |archive-date=October 18, 2021 |access-date=October 18, 2021 |website=ABC News |language=en}}</ref><ref>{{Cite web |last=Dubin |first=Jared |date=January 28, 2015 |title=WATCH: Key & Peele, Aaron Rodgers spoof player introductions |url=https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |url-status=live |archive-url=https://web.archive.org/web/20180831104426/https://www.cbssports.com/nfl/news/watch-key-peele-aaron-rodgers-spoof-player-introductions/ |archive-date=August 31, 2018 |access-date=August 30, 2018 |website=CBS Sports}}</ref> He sanso tape a cameo as ''Jeopardy!'' host for an episode of ''The Conners''.<ref>{{Cite web |last=Cwik |first=Chris |date=May 8, 2021 |title=Aaron Rodgers guest starring as 'Jeopardy!' host on 'The Conners,' prompting speculation about future |url=https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |url-status=live |archive-url=https://web.archive.org/web/20210508190417/https://sports.yahoo.com/aaron-rodgers-guest-starring-as-jeopardy-host-on-the-conners-prompting-speculation-about-future-161030804.html |archive-date=May 8, 2021 |access-date=May 8, 2021 |website=Yahoo! Sports |language=en-US}}</ref>
Insyd 2021, Rodgers take part insyd ''The Match IV'', wich be de fourth installment insyd de exhibition match play golf series. Na he be paired plus professional golfer [[Bryson DeChambeau]]. De team go up against [[Phil Mickelson]] den Tom Brady.<ref>{{Cite web |last=Wells |first=Adam |date=May 26, 2021 |title=Mickelson, Tom Brady vs. DeChambeau, Aaron Rodgers Set for Capital One's 'The Match' |url=https://bleacherreport.com/articles/10003839-mickelson-tom-brady-vs-dechambeau-aaron-rodgers-set-for-capital-ones-the-match |access-date=May 26, 2021 |website=BleacherReport |publisher=Turner Broadcasting System, Inc.}}</ref> DeChambeau den Rodgers win de match 3 den 2.<ref>{{Cite web |last=VanHaaren |first=Tom |date=July 6, 2021 |title=Bryson DeChambeau, Aaron Rodgers beat Phil Mickelson, Tom Brady in 'The Match' |url=https://www.espn.co.uk/golf/story/_/id/31773982/bryson-dechambeau-aaron-rodgers-beat-phil-mickelson-tom-brady-match |access-date=May 26, 2022 |website=[[ESPN.com]]}}</ref> Rodgers sanso take part insyd de sixth edition of ''The Match'', wer na he team up plus Brady against fellow quarterbacks [[Josh Allen]] den [[Patrick Mahomes]].<ref>{{Cite web |date=April 18, 2022 |title=Tom Brady and Aaron Rodgers to Play Patrick Mahomes and Josh Allen in 'The Match' on June 1 |url=https://www.si.com/golf/news/tom-brady-aaron-rodgers-to-play-patrick-mahomes-josh-allen-in-the-match-june-1 |access-date=May 26, 2022 |website=Morning Read |language=en}}</ref> Rodgers den Brady defeat Mahomes den Allen 1 up.<ref>{{Cite web |last=Hamel |first=Riley |date=June 1, 2022 |title=Aaron Rodgers buries a birdie at the last, teams with Tom Brady to take down Patrick Mahomes, Josh Allen in Capital One's: The Match VI |url=https://golfweek.usatoday.com/lists/tracker-shot-to-shot-updates-of-the-match-vi-at-wynn-las-vegas/ |access-date=June 28, 2022 |website=Golfweek |language=en-US}}</ref>
== Humanitarian den charitable efforts ==
Rodgers be de founder, den de co-creator, along plus David Gruber, of itsAaron,<ref>{{Cite web |last=Littman |first=Chris |date=December 4, 2014 |title=Aaron Rodgers' surprise visit makes school dean scream with joy |url=https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |url-status=live |archive-url=https://web.archive.org/web/20191017184232/https://www.sportingnews.com/us/nfl/news/aaron-rodgers-surprise-visit-school-dean-milwaukee-david-gruber-packers-video-itsaaron/hpvcdfki9rs51ihukg9o5hgh0 |archive-date=October 17, 2019 |access-date=October 17, 2019 |website=Sporting News}}</ref> a charity plus a mission of "creating awareness for organizations den people wey dey change de world".<ref name="Rodgers Charity">{{Cite web |title=It's Aaron & Gruber Law |url=https://www.gruber-law.com/itsaaron/ |url-status=live |archive-url=https://web.archive.org/web/20250523173120/https://www.gruber-law.com/itsaaron/ |archive-date=May 23, 2025 |access-date=July 1, 2025 |website=Gruber Law |language=en}}</ref><ref>{{Cite web |date=September 4, 2013 |title=Gruber Law Brings Awareness Through 'Its Aaron' with Aaron Rodgers |url=https://www.gruber-law.com/itsaaron/ |archive-url=https://web.archive.org/web/20190414173233/https://www.gruber-law.com/itsaaron/ |archive-date=April 14, 2019 |access-date=March 7, 2019 |website=Gruber Law Offices}}</ref>
He sanso be a supporter of de MACC Fund,<ref name="Nickel">{{Cite web |last=Nickel |first=Lori |date=May 14, 2013 |title=Aaron Rodgers Shines at MACC Fund Event |url=https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |url-status=live |archive-url=https://web.archive.org/web/20250306103414/https://archive.jsonline.com/sports/packers/rodgers-shines-at-macc-fund-event-u79uqh1-207486071.html/ |archive-date=March 6, 2025 |access-date=February 2, 2014 |website=Milwaukee Journal Sentinel}}</ref><ref name="Demovsky">{{Cite web |last=Demovsky |first=Rob |date=December 31, 2013 |title=Aaron Rodgers address 'crazy rumors' |url=https://www.espn.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |url-status=live |archive-url=https://web.archive.org/web/20140204035709/http://espn.go.com/blog/green-bay-packers/post/_/id/5883/rodgers-addresses-crazy-rumors-on-radio-show |archive-date=February 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> Raise Hope for Congo,<ref name="Garber">{{Cite web |last=Garber |first=Greg |date=January 1, 2014 |title=Aaron Rodgers makes real difference:Packers quarterback uses his clout to bring awareness to Raise Hope For Congo |url=https://www.espn.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |url-status=live |archive-url=https://web.archive.org/web/20140104044126/http://espn.go.com/nfl/playoffs/2013/story/_/id/10135747/aaron-rodgers-finds-worthy-cause-raise-hope-congo |archive-date=January 4, 2014 |access-date=February 2, 2014 |website=[[ESPN.com]]}}</ref> den oda humanitarian den charitable efforts.<ref>{{Cite web |title=Aaron Rodgers: Charity Work & Causes |url=https://www.looktothestars.org/celebrity/aaron-rodgers |url-status=live |archive-url=https://web.archive.org/web/20211115164124/https://www.looktothestars.org/celebrity/aaron-rodgers |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=Look to the Stars |language=en}}</ref><ref>{{Cite web |date=March 1, 2021 |title=Aaron Rodgers donates $1 million to aid 80 small businesses in hometown |url=https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |url-status=live |archive-url=https://web.archive.org/web/20211115164225/https://www.nfl.com/news/aaron-rodgers-donates-1-million-to-aid-80-small-business-in-hometown |archive-date=November 15, 2021 |access-date=November 15, 2021 |website=NFL.com |language=en-US}}</ref>
Rodgers ein ''[[List of Jeopardy! tournaments and events|Celebrity Jeopardy!]]'' win earn $50,000 for de MACC Fund.<ref name="Kaduk2015">{{Cite web |last=Kaduk |first=Kevin |date=May 12, 2015 |title=Aaron Rodgers wins his episode of Celebrity Jeopardy |url=https://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |url-status=live |archive-url=https://web.archive.org/web/20150514165207/http://sports.yahoo.com/blogs/nfl-shutdown-corner/aaron-rodgers-celebrity-jeopardy-203241063.html |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=[[Yahoo! Sports]]}}</ref><ref>{{Cite web |last=Hanzus |first=Dan |date=May 12, 2015 |title=Aaron Rodgers comes up clutch on Celebrity Jeopardy |url=https://www.nfl.com/news/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy-0ap3000000492438 |url-status=live |archive-url=https://web.archive.org/web/20150514155518/http://www.nfl.com/news/story/0ap3000000492438/article/aaron-rodgers-comes-up-clutch-on-celebrity-jeopardy |archive-date=May 14, 2015 |access-date=May 13, 2015 |website=NFL.com}}</ref> During ein 2021 appearance as ''Jeopardy!'' guest host, de show make a charitable donation equal to de cumulative winnings of de contestants (wey dey include de runners-up) for those ten shows.<ref name="Del Rosario">{{Cite web |last=Del Rosario |first=Alexandra |date=January 13, 2021 |title=''Jeopardy!'': Mayim Bialik & Bill Whitaker Join Aaron Rodgers, Katie Couric To Guest Host Trivia Game |url=https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |url-status=live |archive-url=https://web.archive.org/web/20210116192816/https://deadline.com/2021/01/jeopardy-mayim-bialik-bill-whitaker-lineup-guest-hosts-1234673145/ |archive-date=January 16, 2021 |access-date=January 16, 2021 |website=[[Deadline Hollywood]]}}</ref>
Rodgers be a supporter of ein alma mater, University of California, Berkeley. He donate funds to renovate de athletic facilities<ref>{{Cite web |last=Kercheval |first=Ben |date=June 11, 2019 |title=Aaron Rodgers gives Cal football 'seven-figure gift' for locker room renovations, scholarship |url=https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |url-status=live |archive-url=https://web.archive.org/web/20210709182238/https://www.cbssports.com/college-football/news/aaron-rodgers-gives-cal-football-seven-figure-gift-for-locker-room-renovations-scholarship/ |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=CBS Sports |language=en}}</ref> wey he sanso establish an endowed scholarship give transfer students at de school. Insyd 2021, dem honor am by de school for ein charitable work.<ref>{{Cite web |date=June 1, 2021 |title=2021's Best and Brightest Alumni, Faculty Honored at Berkeley Charter Gala |url=https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |url-status=live |archive-url=https://web.archive.org/web/20210709182728/https://alumni.berkeley.edu/announcements/caa-announcements/2021-s-best-and-brightest-alumni-faculty-honored-berkeley-charter |archive-date=July 9, 2021 |access-date=July 2, 2021 |website=Cal Alumni Association}}</ref>
Insyd 2021, Rodgers donate $1 million to help small businesses insyd Chico den Butte County, California.<ref>{{Cite web |date=March 1, 2021 |title=Packers QB Aaron Rodgers donates $1 million to help his hometown's small businesses |url=https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |url-status=dead |archive-url=https://web.archive.org/web/20230119205343/https://www.packers.com/news/packers-qb-aaron-rodgers-donates-1-million-to-help-his-hometown-s-small-business |archive-date=January 19, 2023 |access-date=January 19, 2023 |website=Packers.com |language=en-US}}</ref>
Insyd 2024, Rodgers raise $3 million for charities plus a flag football tournament.<ref>{{Cite web |last=Williams |first=Randall |date=May 4, 2024 |title=Aaron Rodgers Is Bullish on Flag Football, Uses to Raise Millions for Charity |url=https://www.bloomberg.com/news/articles/2024-05-04/nfl-qb-aaron-rodgers-says-olympic-flag-football-might-be-next-chapter |access-date=May 30, 2024 |website=Bloomberg.com}}</ref>
== References ==
<references />
== Read further ==
* {{cite AV media |people=Chopra, Gotham and Liam Hughes (directors) |date=December 17, 2024 |title=Aaron Rodgers: Enigma |url=https://www.netflix.com/title/81757010 |work= |type=Television production |language=English|publisher=Co-published by Religion of Sports, Skydance Sports, and NFL Films |via=Netflix |access-date=February 14, 2025}}
*{{Cite magazine |last=Helfand |first=Zach |date=September 7, 2024 |title=The Beautiful Mystery of Rooting for Aaron Rodgers |url=https://www.newyorker.com/culture/the-weekend-essay/the-beautiful-mystery-of-rooting-for-aaron-rodgers |access-date=February 14, 2025 |magazine=The New Yorker |language=en-US |issn=0028-792X}}
*{{Cite news |first=Tim |last=Keown |date=November 13, 2024 |title=Inside Aaron Rodgers' complicated relationship with the Jets |url=https://www.espn.com/nfl/story/_/id/42348968/aaron-rodgers-new-york-jets-complicated-struggle |access-date=February 14, 2025 |website=ESPN |language=en}}
*{{Cite magazine |last=Kimes |first=Mina |author-link=Mina Kimes |date=August 30, 2017 |title=The Search For Aaron Rodgers |url=https://www.espn.com/espn/feature/story/_/page/enterpriseRodgers/green-bay-packers-qb-aaron-rodgers-unmasked-searching |access-date=February 14, 2025 |magazine=[[ESPN The Magazine]] |language=en-US}}
*{{cite book| first=Ian |last=O'Connor |title=Out of the Darkness: The Mystery of Aaron Rodgers |date=August 20, 2024 |publisher=Mariner Books |isbn=9780063297869}}
*{{Cite news |last=Rosenblatt |first=Zack |date=September 9, 2024 |title=How Aaron Rodgers earned his hometown's unconditional love |url=https://www.nytimes.com/athletic/5754871/2024/09/09/aaron-rodgers-jets-chico-california-covid-funds-conspiracy-theories/ |access-date=February 14, 2025 |work=The Athletic |language=en-US |url-access=subscription}}
*{{Cite magazine |first=Jason |last=Wilde |date=August 31, 2012 |title=Nobody Special: A Profile of Aaron Rodgers |url=https://www.milwaukeemag.com/nobody-special-aaron-rodgers-profile/ |access-date=February 14, 2025 |website=Milwaukee Magazine |language=en-US}}
==External links==
{{Commons category}}
*[http://www.calbears.com/news/2013/4/17/208198625.aspx?path=football California Golden Bears profile]
*[https://www.steelers.com/team/players-roster/aaron-rodgers/ Pittsburgh Steelers profile]
{{Authority control}}
{{DEFAULTSORT:Rodgers, Aaron}}
[[Category:Aaron Rodgers| ]]
[[Category:1983 births]]
[[Category:Human]]
[[Category:American conspiracy theorists]]
[[Category:American football quarterbacks]]
[[Category:American people of German descent]]
[[Category:American people of Irish descent]]
[[Category:American philanthropists]]
[[Category:Butte Roadrunners football players]]
[[Category:California Golden Bears football players]]
[[Category:Green Bay Packers players]]
[[Category:National Conference Pro Bowl players]]
[[Category:New York Jets players]]
[[Category:NFL Most Valuable Player winners]]
[[Category:People wey komot Ukiah, California]]
[[Category:Pittsburgh Steelers players]]
[[Category:Players of American football wey komot Mendocino County, California]]
[[Category:Players of American football wey komot Chico, California]]
[[Category:Players of American football wey komot Washington County, Oregon]]
[[Category:Pleasant Valley High School (California) alumni]]
[[Category:Sportspeople wey komot Beaverton, Oregon]]
[[Category:Super Bowl MVPs]]
[[Category:Unconferenced Pro Bowl players]]
[[Category:American people of English descent]]
[[Category:University of California, Berkeley alumni]]
ktnok6xiothw513eepegp1jrz47y8vr
Carli Lloyd
0
30069
111287
111255
2026-08-29T18:36:54Z
DaSupremo
9
Created by translating the section "Early life" from the page "[[:en:Special:Redirect/revision/1371719631|Carli Lloyd]]"
111287
wikitext
text/x-wiki
'''Carli Anne Hollins''' (; born July 16, 1982) be an American former professional soccer player. She win de 2015 den 2019 editions of de FIFA Women's World Cup plus de United States, dem fini second at de 2011 FIFA Women's World Cup, wey she score de gold medal-winning goals insyd de finals of de 2008 Olympics den de 2012 Olympics. She sanso win de bronze medal plus de U.S. at de 2020 Olympics. Na dem name am FIFA Player of de Year insyd 2015 den 2016.
Lloyd make 316 appearances give de U.S. national team, wey dey place am second insyd caps. She dey rank third insyd goals den fifth insyd assists give de team. During de United States dema 5–2 win over Japan insyd de 2015 Women's World Cup Final, Lloyd cam be de first player insyd history to score three goals insyd a Women's World Cup final den de second player of any gender to score a hat-trick insyd a World Cup Final. At de conclusion of de tournament, she receive de Golden Ball, de Silver Boot den de Best Goal awards.
During ein club career, Lloyd play give de Chicago Red Stars, Sky Blue FC den de Atlanta Beat insyd de Women's Professional Soccer (WPS) league. Insyd de National Women's Soccer League (NWSL), she win de league championship plus de Western New York Flash, wey she sanso play give de Houston Dash den Gotham FC. Insyd 2019, na Lloyd be de highest paid female soccer player insyd de world.<ref>{{Cite web |last=Martin |first=Will |title=The world's best-paid male footballer earned 272 times more than the highest earning female player last year |url=https://www.businessinsider.com/football-gender-pay-gap-lionel-messi-272-times-carli-lloyd-2020-3 |access-date=May 4, 2026 |website=Business Insider |language=en-US}}</ref> Na dem publish ein memoir, ''When Nobody Was Watching'', insyd 2016.
== Early life ==
Born to Stephen den Pamela Lloyd, na dem raise Carli insyd Delran Township, a suburban community insyd New Jersey.<ref>{{cite news|url=https://query.nytimes.com/gst/fullpage.html?res=9C01E6DC1E31F936A25750C0A9619C8B63|title=Sports Briefing|date=March 15, 2007|work=The New York Times|access-date=November 10, 2009}}</ref> She get a bro, Stephen, den a sisto, Ashley.<ref>{{cite web |last=Narducci |first=Marc |date=July 2007 |title=Just for Kicks |url=http://www.sjol.com/articles/?articleID=17172 |access-date=October 26, 2013 |work=South Jersey Magazine}}</ref> She begin dey play soccer at age five.<ref>{{cite web |title=Carli Lloyd Interview |url=http://www.womenssoccerunited.com/page/carli-lloyd-interview |url-status=dead |archive-url=https://web.archive.org/web/20131029195053/http://www.womenssoccerunited.com/page/carli-lloyd-interview |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=Women's Soccer United}}</ref> At age 17, she attend de opening U.S. match of de 1999 FIFA Women's World Cup at nearby Giants Stadium, wich inspire am to play give de national team.<ref>{{cite news|date=October 4, 2018|title=When Giants Stadium baptism sparked Lloyd's dreams|url=https://www.fifa.com/womensworldcup/news/when-giants-stadium-baptism-sparked-lloyd-s-dreams|work=FIFA.com|access-date=February 24, 2019}}</ref>
e0ngb68nq5qydkwvwizh60ps5ot413q
111288
111287
2026-08-29T19:19:06Z
DaSupremo
9
Created by translating the section "High school career" from the page "[[:en:Special:Redirect/revision/1371719631|Carli Lloyd]]"
111288
wikitext
text/x-wiki
'''Carli Anne Hollins''' (; born July 16, 1982) be an American former professional soccer player. She win de 2015 den 2019 editions of de FIFA Women's World Cup plus de United States, dem fini second at de 2011 FIFA Women's World Cup, wey she score de gold medal-winning goals insyd de finals of de 2008 Olympics den de 2012 Olympics. She sanso win de bronze medal plus de U.S. at de 2020 Olympics. Na dem name am FIFA Player of de Year insyd 2015 den 2016.
Lloyd make 316 appearances give de U.S. national team, wey dey place am second insyd caps. She dey rank third insyd goals den fifth insyd assists give de team. During de United States dema 5–2 win over Japan insyd de 2015 Women's World Cup Final, Lloyd cam be de first player insyd history to score three goals insyd a Women's World Cup final den de second player of any gender to score a hat-trick insyd a World Cup Final. At de conclusion of de tournament, she receive de Golden Ball, de Silver Boot den de Best Goal awards.
During ein club career, Lloyd play give de Chicago Red Stars, Sky Blue FC den de Atlanta Beat insyd de Women's Professional Soccer (WPS) league. Insyd de National Women's Soccer League (NWSL), she win de league championship plus de Western New York Flash, wey she sanso play give de Houston Dash den Gotham FC. Insyd 2019, na Lloyd be de highest paid female soccer player insyd de world.<ref>{{Cite web |last=Martin |first=Will |title=The world's best-paid male footballer earned 272 times more than the highest earning female player last year |url=https://www.businessinsider.com/football-gender-pay-gap-lionel-messi-272-times-carli-lloyd-2020-3 |access-date=May 4, 2026 |website=Business Insider |language=en-US}}</ref> Na dem publish ein memoir, ''When Nobody Was Watching'', insyd 2016.
== Early life ==
Born to Stephen den Pamela Lloyd, na dem raise Carli insyd Delran Township, a suburban community insyd New Jersey.<ref>{{cite news|url=https://query.nytimes.com/gst/fullpage.html?res=9C01E6DC1E31F936A25750C0A9619C8B63|title=Sports Briefing|date=March 15, 2007|work=The New York Times|access-date=November 10, 2009}}</ref> She get a bro, Stephen, den a sisto, Ashley.<ref>{{cite web |last=Narducci |first=Marc |date=July 2007 |title=Just for Kicks |url=http://www.sjol.com/articles/?articleID=17172 |access-date=October 26, 2013 |work=South Jersey Magazine}}</ref> She begin dey play soccer at age five.<ref>{{cite web |title=Carli Lloyd Interview |url=http://www.womenssoccerunited.com/page/carli-lloyd-interview |url-status=dead |archive-url=https://web.archive.org/web/20131029195053/http://www.womenssoccerunited.com/page/carli-lloyd-interview |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=Women's Soccer United}}</ref> At age 17, she attend de opening U.S. match of de 1999 FIFA Women's World Cup at nearby Giants Stadium, wich inspire am to play give de national team.<ref>{{cite news|date=October 4, 2018|title=When Giants Stadium baptism sparked Lloyd's dreams|url=https://www.fifa.com/womensworldcup/news/when-giants-stadium-baptism-sparked-lloyd-s-dreams|work=FIFA.com|access-date=February 24, 2019}}</ref>
== High school career ==
Lloyd attend Delran High School from 1997 to 2001, wer na she play soccer under de tutelage of Rudy Klobach. As a high school athlete, na she be known for ein exceptional ball control den skill at distributing de ball from de midfield.<ref>{{Cite web |last=Narducci |first=Marc |date=September 17, 1999 |title=Carli Lloyd: A Bear Necessity |url=https://www.inquirer.com/archives |archive-url=https://web.archive.org/web/20131029193108/http://articles.philly.com/1999-09-17/sports/25488701_1_carli-lloyd-mexico-s-world-cup-schubert |archive-date=October 29, 2013 |access-date=May 7, 2026 |website=The Philadelphia Inquirer |language=en}}</ref> During ein senior year, she score 26 goals wey she serve eight assists while captaining ein team to an 18–3 record. ''The Philadelphia Inquirer'' name ein Girls' High School Player of de Year insyd 1999 den 2000. Na dem name am to de Star-Ledger All-State First Team twice wey she receive 1999 den 2000 Parade All-American honors. Insyd 2000, na dem name am de ''Courier-Post'' Player of de Year den de South Jersey Soccer Coaches Association (SJSCA) Midfielder of de Year.<ref name="US Soccer bio">{{cite web |title=Carli Lloyd |url=http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |url-status=dead |archive-url=https://web.archive.org/web/20091106213757/http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |archive-date=November 6, 2009 |access-date=November 10, 2009 |publisher=United States Soccer Federation}}</ref><ref name=":0">{{cite web |last=Turner |first=Jamie |date=July 30, 2008 |title=Believing in Hope, U.S. team's Lloyd helps smooth soccer path to Beijing |url=http://blog.cleveland.com/sports/2008/07/believing_in_hope_us_teams_llo.html |access-date=October 26, 2013 |work=Sun News}}</ref> While insyd high school, Lloyd sanso play give de semi-professional W-League teams Central Jersey Splash (1999), New Brunswick Power (2000), den South Jersey Banshees (2001).<ref>{{cite web |title=W-League's World Cup Impact |url=http://www.uslsoccer.com/home/536967.html |url-status=dead |archive-url=https://web.archive.org/web/20131029204624/http://www.uslsoccer.com/home/536967.html |archive-date=October 29, 2013 |access-date=November 16, 2012 |publisher=USL Soccer}}</ref>
sqn8u51yumes9ux5jdxj889re222uzq
111291
111288
2026-08-29T20:13:40Z
DaSupremo
9
Created by translating the section "College career" from the page "[[:en:Special:Redirect/revision/1371719631|Carli Lloyd]]"
111291
wikitext
text/x-wiki
'''Carli Anne Hollins''' (; born July 16, 1982) be an American former professional soccer player. She win de 2015 den 2019 editions of de FIFA Women's World Cup plus de United States, dem fini second at de 2011 FIFA Women's World Cup, wey she score de gold medal-winning goals insyd de finals of de 2008 Olympics den de 2012 Olympics. She sanso win de bronze medal plus de U.S. at de 2020 Olympics. Na dem name am FIFA Player of de Year insyd 2015 den 2016.
Lloyd make 316 appearances give de U.S. national team, wey dey place am second insyd caps. She dey rank third insyd goals den fifth insyd assists give de team. During de United States dema 5–2 win over Japan insyd de 2015 Women's World Cup Final, Lloyd cam be de first player insyd history to score three goals insyd a Women's World Cup final den de second player of any gender to score a hat-trick insyd a World Cup Final. At de conclusion of de tournament, she receive de Golden Ball, de Silver Boot den de Best Goal awards.
During ein club career, Lloyd play give de Chicago Red Stars, Sky Blue FC den de Atlanta Beat insyd de Women's Professional Soccer (WPS) league. Insyd de National Women's Soccer League (NWSL), she win de league championship plus de Western New York Flash, wey she sanso play give de Houston Dash den Gotham FC. Insyd 2019, na Lloyd be de highest paid female soccer player insyd de world.<ref>{{Cite web |last=Martin |first=Will |title=The world's best-paid male footballer earned 272 times more than the highest earning female player last year |url=https://www.businessinsider.com/football-gender-pay-gap-lionel-messi-272-times-carli-lloyd-2020-3 |access-date=May 4, 2026 |website=Business Insider |language=en-US}}</ref> Na dem publish ein memoir, ''When Nobody Was Watching'', insyd 2016.
== Early life ==
Born to Stephen den Pamela Lloyd, na dem raise Carli insyd Delran Township, a suburban community insyd New Jersey.<ref>{{cite news|url=https://query.nytimes.com/gst/fullpage.html?res=9C01E6DC1E31F936A25750C0A9619C8B63|title=Sports Briefing|date=March 15, 2007|work=The New York Times|access-date=November 10, 2009}}</ref> She get a bro, Stephen, den a sisto, Ashley.<ref>{{cite web |last=Narducci |first=Marc |date=July 2007 |title=Just for Kicks |url=http://www.sjol.com/articles/?articleID=17172 |access-date=October 26, 2013 |work=South Jersey Magazine}}</ref> She begin dey play soccer at age five.<ref>{{cite web |title=Carli Lloyd Interview |url=http://www.womenssoccerunited.com/page/carli-lloyd-interview |url-status=dead |archive-url=https://web.archive.org/web/20131029195053/http://www.womenssoccerunited.com/page/carli-lloyd-interview |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=Women's Soccer United}}</ref> At age 17, she attend de opening U.S. match of de 1999 FIFA Women's World Cup at nearby Giants Stadium, wich inspire am to play give de national team.<ref>{{cite news|date=October 4, 2018|title=When Giants Stadium baptism sparked Lloyd's dreams|url=https://www.fifa.com/womensworldcup/news/when-giants-stadium-baptism-sparked-lloyd-s-dreams|work=FIFA.com|access-date=February 24, 2019}}</ref>
== High school career ==
Lloyd attend Delran High School from 1997 to 2001, wer na she play soccer under de tutelage of Rudy Klobach. As a high school athlete, na she be known for ein exceptional ball control den skill at distributing de ball from de midfield.<ref>{{Cite web |last=Narducci |first=Marc |date=September 17, 1999 |title=Carli Lloyd: A Bear Necessity |url=https://www.inquirer.com/archives |archive-url=https://web.archive.org/web/20131029193108/http://articles.philly.com/1999-09-17/sports/25488701_1_carli-lloyd-mexico-s-world-cup-schubert |archive-date=October 29, 2013 |access-date=May 7, 2026 |website=The Philadelphia Inquirer |language=en}}</ref> During ein senior year, she score 26 goals wey she serve eight assists while captaining ein team to an 18–3 record. ''The Philadelphia Inquirer'' name ein Girls' High School Player of de Year insyd 1999 den 2000. Na dem name am to de Star-Ledger All-State First Team twice wey she receive 1999 den 2000 Parade All-American honors. Insyd 2000, na dem name am de ''Courier-Post'' Player of de Year den de South Jersey Soccer Coaches Association (SJSCA) Midfielder of de Year.<ref name="US Soccer bio">{{cite web |title=Carli Lloyd |url=http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |url-status=dead |archive-url=https://web.archive.org/web/20091106213757/http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |archive-date=November 6, 2009 |access-date=November 10, 2009 |publisher=United States Soccer Federation}}</ref><ref name=":0">{{cite web |last=Turner |first=Jamie |date=July 30, 2008 |title=Believing in Hope, U.S. team's Lloyd helps smooth soccer path to Beijing |url=http://blog.cleveland.com/sports/2008/07/believing_in_hope_us_teams_llo.html |access-date=October 26, 2013 |work=Sun News}}</ref> While insyd high school, Lloyd sanso play give de semi-professional W-League teams Central Jersey Splash (1999), New Brunswick Power (2000), den South Jersey Banshees (2001).<ref>{{cite web |title=W-League's World Cup Impact |url=http://www.uslsoccer.com/home/536967.html |url-status=dead |archive-url=https://web.archive.org/web/20131029204624/http://www.uslsoccer.com/home/536967.html |archive-date=October 29, 2013 |access-date=November 16, 2012 |publisher=USL Soccer}}</ref>
== College career ==
Lloyd attend Rutgers University from 2001 to 2005, wey she play give de Scarlet Knights women's soccer team under head coach Glenn Crooks. During ein freshman season, she start every match wey na she be de team ein leading scorer plus 15 goals. Na dem name am to Soccer America ein All-Freshman Team wey na she be de first Rutgers player to earn Big East Rookie of de Year honors.<ref name="US Soccer bio">{{cite web |title=Carli Lloyd |url=http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |url-status=dead |archive-url=https://web.archive.org/web/20091106213757/http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |archive-date=November 6, 2009 |access-date=November 10, 2009 |publisher=United States Soccer Federation}}</ref> As a sophomore, na Lloyd be de team ein leading scorer for de second consecutive season, plus 12 goals den seven assists. De same year, na she be a finalist for de Hermann Trophy, she widely consider de highest accolade for collegiate soccer players.<ref name="US Soccer bio" /> During ein third season plus de Scarlet Knights, she score 13 goals wey she serve 2 assists, wey na dem name am a Big East Academic All-Star.<ref name="US Soccer bio" /><ref>{{cite web |date=January 12, 2012 |title=Beat Sign Carli Lloyd |url=http://www.oursportscentral.com/services/releases/?id=4341552 |access-date=October 26, 2013 |publisher=Our Sports Central}}</ref>
Insyd de summer of 2004—just prior to ein senior year—Lloyd play one match for de semi-professional W-League team New Jersey Wildcats.<ref>{{cite web |title=Developmental Pyramid |url=http://www.olsasoccer.com/pyramid/index_E.html |url-status=dead |archive-url=https://web.archive.org/web/20171215163814/http://www.olsasoccer.com/pyramid/index_E.html |archive-date=December 15, 2017 |access-date=November 16, 2012 |publisher=New Jersey Wild Cats}}</ref><ref name="US Soccer bio">{{cite web |title=Carli Lloyd |url=http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |url-status=dead |archive-url=https://web.archive.org/web/20091106213757/http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |archive-date=November 6, 2009 |access-date=November 10, 2009 |publisher=United States Soccer Federation}}</ref> As a senior at Rutgers, she score 10 goals wey she serve one assist. Na dem name am de 2004 Big East Midfielder of de Year, wey na she be de first Rutgers athlete to be named First-Team All-Big East for four consecutive years.<ref name="US Soccer bio" /><ref name=":1">{{cite web |last=Exter |first=Codi |date=June 9, 2013 |title=Rutgers legend Carli Lloyd disappointed by school's plight, says it will bounce back |url=http://www.trentonian.com/article/TT/20130609/SPORTS02/130609640 |url-status=dead |archive-url=https://web.archive.org/web/20171230120019/http://www.trentonian.com/article/TT/20130609/SPORTS02/130609640 |archive-date=December 30, 2017 |access-date=October 26, 2013 |work=The Trentonian}}</ref> Lloyd end ein college career as de school ein all-time leader insyd points (117), goals (50), den shots.<ref name="US Soccer bio" /> She graduate plus a bachelor's degree insyd Exercise Science den Sport Studies.<ref>{{cite web |title=About Carli |url=http://www.carlilloyd.com/about-carli/ |url-status=dead |archive-url=https://web.archive.org/web/20190616174823/http://www.carlilloyd.com/about-carli/ |archive-date=June 16, 2019 |access-date=June 16, 2019 |work=CarliLloyd.com}}</ref> Insyd 2013, wey dem induct am into de Rutgers Hall of Distinguished Alumni.<ref>{{cite web |date=January 28, 2013 |title=All-American Carli Lloyd Inducted into Rutgers Hall of Distinguished Alumni |url=http://scarletknights.com/soccer-women/news/release.asp?prID=12664 |url-status=dead |archive-url=https://web.archive.org/web/20131029185323/http://scarletknights.com/soccer-women/news/release.asp?prID=12664#.UmwYRBDbi2k |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=Rutgers University}}</ref><ref>{{cite web |last=Lai |first=Jonathan |date=January 26, 2013 |title=Carli Lloyd, utility chief join Rutgers alumni hall |url=http://articles.philly.com/2013-01-26/news/36550375_1_carli-lloyd-alumni-group-rutgers-university-hall |url-status=dead |archive-url=https://web.archive.org/web/20131029194315/http://articles.philly.com/2013-01-26/news/36550375_1_carli-lloyd-alumni-group-rutgers-university-hall |archive-date=October 29, 2013 |access-date=October 26, 2013 |work=Philadelphia Inquirer}}</ref>
ajco2lre77mtvnh8cj9xacj80u7kuwy
111305
111291
2026-08-30T11:32:03Z
DaSupremo
9
Created by translating the section "Club career" from the page "[[:en:Special:Redirect/revision/1371719631|Carli Lloyd]]"
111305
wikitext
text/x-wiki
'''Carli Anne Hollins''' (; born July 16, 1982) be an American former professional soccer player. She win de 2015 den 2019 editions of de FIFA Women's World Cup plus de United States, dem fini second at de 2011 FIFA Women's World Cup, wey she score de gold medal-winning goals insyd de finals of de 2008 Olympics den de 2012 Olympics. She sanso win de bronze medal plus de U.S. at de 2020 Olympics. Na dem name am FIFA Player of de Year insyd 2015 den 2016.
Lloyd make 316 appearances give de U.S. national team, wey dey place am second insyd caps. She dey rank third insyd goals den fifth insyd assists give de team. During de United States dema 5–2 win over Japan insyd de 2015 Women's World Cup Final, Lloyd cam be de first player insyd history to score three goals insyd a Women's World Cup final den de second player of any gender to score a hat-trick insyd a World Cup Final. At de conclusion of de tournament, she receive de Golden Ball, de Silver Boot den de Best Goal awards.
During ein club career, Lloyd play give de Chicago Red Stars, Sky Blue FC den de Atlanta Beat insyd de Women's Professional Soccer (WPS) league. Insyd de National Women's Soccer League (NWSL), she win de league championship plus de Western New York Flash, wey she sanso play give de Houston Dash den Gotham FC. Insyd 2019, na Lloyd be de highest paid female soccer player insyd de world.<ref>{{Cite web |last=Martin |first=Will |title=The world's best-paid male footballer earned 272 times more than the highest earning female player last year |url=https://www.businessinsider.com/football-gender-pay-gap-lionel-messi-272-times-carli-lloyd-2020-3 |access-date=May 4, 2026 |website=Business Insider |language=en-US}}</ref> Na dem publish ein memoir, ''When Nobody Was Watching'', insyd 2016.
== Early life ==
Born to Stephen den Pamela Lloyd, na dem raise Carli insyd Delran Township, a suburban community insyd New Jersey.<ref>{{cite news|url=https://query.nytimes.com/gst/fullpage.html?res=9C01E6DC1E31F936A25750C0A9619C8B63|title=Sports Briefing|date=March 15, 2007|work=The New York Times|access-date=November 10, 2009}}</ref> She get a bro, Stephen, den a sisto, Ashley.<ref>{{cite web |last=Narducci |first=Marc |date=July 2007 |title=Just for Kicks |url=http://www.sjol.com/articles/?articleID=17172 |access-date=October 26, 2013 |work=South Jersey Magazine}}</ref> She begin dey play soccer at age five.<ref>{{cite web |title=Carli Lloyd Interview |url=http://www.womenssoccerunited.com/page/carli-lloyd-interview |url-status=dead |archive-url=https://web.archive.org/web/20131029195053/http://www.womenssoccerunited.com/page/carli-lloyd-interview |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=Women's Soccer United}}</ref> At age 17, she attend de opening U.S. match of de 1999 FIFA Women's World Cup at nearby Giants Stadium, wich inspire am to play give de national team.<ref>{{cite news|date=October 4, 2018|title=When Giants Stadium baptism sparked Lloyd's dreams|url=https://www.fifa.com/womensworldcup/news/when-giants-stadium-baptism-sparked-lloyd-s-dreams|work=FIFA.com|access-date=February 24, 2019}}</ref>
== High school career ==
Lloyd attend Delran High School from 1997 to 2001, wer na she play soccer under de tutelage of Rudy Klobach. As a high school athlete, na she be known for ein exceptional ball control den skill at distributing de ball from de midfield.<ref>{{Cite web |last=Narducci |first=Marc |date=September 17, 1999 |title=Carli Lloyd: A Bear Necessity |url=https://www.inquirer.com/archives |archive-url=https://web.archive.org/web/20131029193108/http://articles.philly.com/1999-09-17/sports/25488701_1_carli-lloyd-mexico-s-world-cup-schubert |archive-date=October 29, 2013 |access-date=May 7, 2026 |website=The Philadelphia Inquirer |language=en}}</ref> During ein senior year, she score 26 goals wey she serve eight assists while captaining ein team to an 18–3 record. ''The Philadelphia Inquirer'' name ein Girls' High School Player of de Year insyd 1999 den 2000. Na dem name am to de Star-Ledger All-State First Team twice wey she receive 1999 den 2000 Parade All-American honors. Insyd 2000, na dem name am de ''Courier-Post'' Player of de Year den de South Jersey Soccer Coaches Association (SJSCA) Midfielder of de Year.<ref name="US Soccer bio">{{cite web |title=Carli Lloyd |url=http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |url-status=dead |archive-url=https://web.archive.org/web/20091106213757/http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |archive-date=November 6, 2009 |access-date=November 10, 2009 |publisher=United States Soccer Federation}}</ref><ref name=":0">{{cite web |last=Turner |first=Jamie |date=July 30, 2008 |title=Believing in Hope, U.S. team's Lloyd helps smooth soccer path to Beijing |url=http://blog.cleveland.com/sports/2008/07/believing_in_hope_us_teams_llo.html |access-date=October 26, 2013 |work=Sun News}}</ref> While insyd high school, Lloyd sanso play give de semi-professional W-League teams Central Jersey Splash (1999), New Brunswick Power (2000), den South Jersey Banshees (2001).<ref>{{cite web |title=W-League's World Cup Impact |url=http://www.uslsoccer.com/home/536967.html |url-status=dead |archive-url=https://web.archive.org/web/20131029204624/http://www.uslsoccer.com/home/536967.html |archive-date=October 29, 2013 |access-date=November 16, 2012 |publisher=USL Soccer}}</ref>
== College career ==
Lloyd attend Rutgers University from 2001 to 2005, wey she play give de Scarlet Knights women's soccer team under head coach Glenn Crooks. During ein freshman season, she start every match wey na she be de team ein leading scorer plus 15 goals. Na dem name am to Soccer America ein All-Freshman Team wey na she be de first Rutgers player to earn Big East Rookie of de Year honors.<ref name="US Soccer bio">{{cite web |title=Carli Lloyd |url=http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |url-status=dead |archive-url=https://web.archive.org/web/20091106213757/http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |archive-date=November 6, 2009 |access-date=November 10, 2009 |publisher=United States Soccer Federation}}</ref> As a sophomore, na Lloyd be de team ein leading scorer for de second consecutive season, plus 12 goals den seven assists. De same year, na she be a finalist for de Hermann Trophy, she widely consider de highest accolade for collegiate soccer players.<ref name="US Soccer bio" /> During ein third season plus de Scarlet Knights, she score 13 goals wey she serve 2 assists, wey na dem name am a Big East Academic All-Star.<ref name="US Soccer bio" /><ref>{{cite web |date=January 12, 2012 |title=Beat Sign Carli Lloyd |url=http://www.oursportscentral.com/services/releases/?id=4341552 |access-date=October 26, 2013 |publisher=Our Sports Central}}</ref>
Insyd de summer of 2004—just prior to ein senior year—Lloyd play one match for de semi-professional W-League team New Jersey Wildcats.<ref>{{cite web |title=Developmental Pyramid |url=http://www.olsasoccer.com/pyramid/index_E.html |url-status=dead |archive-url=https://web.archive.org/web/20171215163814/http://www.olsasoccer.com/pyramid/index_E.html |archive-date=December 15, 2017 |access-date=November 16, 2012 |publisher=New Jersey Wild Cats}}</ref><ref name="US Soccer bio">{{cite web |title=Carli Lloyd |url=http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |url-status=dead |archive-url=https://web.archive.org/web/20091106213757/http://www.ussoccer.com/Teams/WNT/L/Carli-Lloyd.aspx |archive-date=November 6, 2009 |access-date=November 10, 2009 |publisher=United States Soccer Federation}}</ref> As a senior at Rutgers, she score 10 goals wey she serve one assist. Na dem name am de 2004 Big East Midfielder of de Year, wey na she be de first Rutgers athlete to be named First-Team All-Big East for four consecutive years.<ref name="US Soccer bio" /><ref name=":1">{{cite web |last=Exter |first=Codi |date=June 9, 2013 |title=Rutgers legend Carli Lloyd disappointed by school's plight, says it will bounce back |url=http://www.trentonian.com/article/TT/20130609/SPORTS02/130609640 |url-status=dead |archive-url=https://web.archive.org/web/20171230120019/http://www.trentonian.com/article/TT/20130609/SPORTS02/130609640 |archive-date=December 30, 2017 |access-date=October 26, 2013 |work=The Trentonian}}</ref> Lloyd end ein college career as de school ein all-time leader insyd points (117), goals (50), den shots.<ref name="US Soccer bio" /> She graduate plus a bachelor's degree insyd Exercise Science den Sport Studies.<ref>{{cite web |title=About Carli |url=http://www.carlilloyd.com/about-carli/ |url-status=dead |archive-url=https://web.archive.org/web/20190616174823/http://www.carlilloyd.com/about-carli/ |archive-date=June 16, 2019 |access-date=June 16, 2019 |work=CarliLloyd.com}}</ref> Insyd 2013, wey dem induct am into de Rutgers Hall of Distinguished Alumni.<ref>{{cite web |date=January 28, 2013 |title=All-American Carli Lloyd Inducted into Rutgers Hall of Distinguished Alumni |url=http://scarletknights.com/soccer-women/news/release.asp?prID=12664 |url-status=dead |archive-url=https://web.archive.org/web/20131029185323/http://scarletknights.com/soccer-women/news/release.asp?prID=12664#.UmwYRBDbi2k |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=Rutgers University}}</ref><ref>{{cite web |last=Lai |first=Jonathan |date=January 26, 2013 |title=Carli Lloyd, utility chief join Rutgers alumni hall |url=http://articles.philly.com/2013-01-26/news/36550375_1_carli-lloyd-alumni-group-rutgers-university-hall |url-status=dead |archive-url=https://web.archive.org/web/20131029194315/http://articles.philly.com/2013-01-26/news/36550375_1_carli-lloyd-alumni-group-rutgers-university-hall |archive-date=October 29, 2013 |access-date=October 26, 2013 |work=Philadelphia Inquirer}}</ref>
== Club career ==
=== 2009–2011: Women's Professional Soccer ===
Insyd 2008, Lloyd sign plus de Chicago Red Stars of de newly launched Women's Professional Soccer league.<ref>{{cite web |title=Chicago Red Stars sign Carli Lloyd and Lindsay Tarpley |url=http://www.womentalksports.com/items/read/18/8807 |url-status=dead |archive-url=https://web.archive.org/web/20131029210501/http://www.womentalksports.com/items/read/18/8807 |archive-date=October 29, 2013 |access-date=November 16, 2012 |publisher=Women Talk Sports}}</ref> During de league ein inaugural season, she score two goals: one during ein team ein 4–0 win over de Boston Breakers on April 25, den de oda during a 3–1 victory over de Los Angeles Sol on August 2.De Red Stars fini de season insyd sixth place insyd de league, plus a 5–10–5 record.<ref>{{cite web |title=2009 WPS Season |url=https://us.women.soccerway.com/national/united-states/wps/2009/regular-season/r8048/ |url-status=dead |archive-url=https://web.archive.org/web/20220630141224/https://us.women.soccerway.com/national/united-states/wps/2009/regular-season/r8048/ |archive-date=June 30, 2022 |access-date=October 26, 2013 |publisher=Soccerway}}</ref> Na Lloyd be a free agent for de upcoming 2010 season; she sign plus ein home state club, Sky Blue FC, winner of de 2009 WPS championship.<ref>{{cite news|title=MF Carli Lloyd agrees to terms with Sky Blue FC|url=http://usatoday30.usatoday.com/sports/soccer/2009-10-19-871541502_x.htm|work=USA Today|access-date=October 26, 2013|agency=Associated Press|date=October 19, 2009}}</ref><ref>{{cite web |title=Sky Blue FC's Carli Lloyd to Face Former Team |url=http://bleacherreport.com/articles/376854-sky-blue-fcs-carli-lloyd-to-face-former-team |url-status=dead |archive-url=https://web.archive.org/web/20131030012935/http://bleacherreport.com/articles/376854-sky-blue-fcs-carli-lloyd-to-face-former-team |archive-date=October 30, 2013 |access-date=November 16, 2012 |publisher=Bleacher Report}}</ref> Insyd April 2010, Lloyd slip den break ein ankle during a match against de Red Stars.<ref>{{cite news|title=Sky Blue FC midfielder Carli Lloyd placed on injured reserve with broken ankle|url=http://www.nj.com/soccer-news/index.ssf/2010/04/sky_blue_fc_midfielder_carli_l.html|work=The Star-Ledger|access-date=October 26, 2013|agency=Associated Press|date=April 27, 2010}}</ref> De injury keep am off de field til September, wen she return for two games.<ref name="swaystats">{{cite web |title=Carli Lloyd |url=https://us.women.soccerway.com/players/carli-lloyd/19414/ |access-date=May 30, 2018 |publisher=Soccerway}}</ref>
Insyd December 2010, Lloyd sign plus de expansion team Atlanta Beat for de 2011 season.<ref>{{cite web |date=December 17, 2010 |title=Beat Sign Olympian Carli Lloyd |url=http://www.oursportscentral.com/services/releases/?id=4129448 |access-date=November 16, 2012 |publisher=Our Sports Central}}</ref> De team ein head coach [[James Galanis]] describe Lloyd as a "fantastic midfielder", wey he say he expect am to bring professionalism to de team.<ref>{{cite web |date=December 17, 2010 |title=She's Got the Beat |url=http://www.bigapplesoccer.com/leagues/wps2.php?article_id=26162 |url-status=dead |archive-url=https://web.archive.org/web/20131029202723/http://www.bigapplesoccer.com/leagues/wps2.php?article_id=26162 |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=Big Apple Soccer}}</ref> De Beat fini dema first season insyd last place plus a 1–13–4 record, wey Lloyd score two goals insyd ten appearances.
=== 2013–2014: Western New York Flash ===
Insyd January 2013, Lloyd join de Western New York Flash insyd de new National Women's Soccer League as part of de NWSL Player Allocation.<ref>{{cite web |last=Hays |first=Graham |date=January 11, 2013 |title=NWSL allocation easier said than done |url=https://www.espn.com/espnw/news-commentary/story/_/id/8836654/espnw-nwsl-allocation-easier-said-done |access-date=October 26, 2013 |publisher=ESPN}}</ref> After recovering from a shoulder injury she suffer earlier insyd de year, Lloyd make ein debut for de Flash on May 12, during de team ein 2–1 win over FC Kansas City.<ref>{{cite web |title=Western New York Flash vs. Kansas City 2 – 1 |url=https://us.women.soccerway.com/matches/2013/05/12/united-states/national-womens-soccer-league/buffalo-flash/kansas-city/1461058/ |access-date=October 26, 2013 |publisher=Soccerway}}</ref> She score ein first goal give de Flash insyd a match against ein former club, Sky Blue FC, as de Flash win 3–0.<ref>{{cite web |title=Sky Blue vs. Western New York Flash 0 – 3 |url=https://us.women.soccerway.com/matches/2013/06/09/united-states/national-womens-soccer-league/jersey-sky-blue/buffalo-flash/1461073/ |access-date=October 26, 2013 |publisher=Soccerway}}</ref> During a match against de Washington Spirit on June 28, Lloyd score a hat trick as de Flash achieve a 4–0 victory.<ref>{{cite web |title=Western New York Flash vs. Washington Spirit 4 – 0 |url=https://us.women.soccerway.com/matches/2013/06/29/united-states/national-womens-soccer-league/buffalo-flash/washington-spirit/1461087/ |access-date=October 26, 2013 |publisher=Soccerway}}</ref> Na dem name am NWSL Player of de Week for ein performance.<ref>{{cite web |date=July 2, 2013 |title=Player of the Week: Carli Lloyd |url=http://www.nwslsoccer.com/home/734279.html |url-status=dead |archive-url=https://web.archive.org/web/20131029231531/http://www.nwslsoccer.com/home/734279.html |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=National Women's Soccer League}}</ref><ref>{{cite web |last=Basquil |first=Jim |title=NWSL Player of the Week: Carli Lloyd |url=http://espn.go.com/espnw/video/9447641/carli-lloyd |url-status=dead |archive-url=https://web.archive.org/web/20131029202304/http://espn.go.com/espnw/video/9447641/carli-lloyd |archive-date=October 29, 2013 |access-date=October 26, 2013 |publisher=ESPN}}</ref>
Lloyd fini de 2013 season plus 10 goals, de third-highest goal total insyd de league.<ref>{{cite web |title=2013 Leaderboards |url=http://www.nwslsoccer.com/Stats/index_E.html |url-status=dead |archive-url=https://web.archive.org/web/20150107064658/http://www.nwslsoccer.com/Stats/index_E.html |archive-date=January 7, 2015 |access-date=October 26, 2013 |publisher=National Women's Soccer League}}</ref> De Flash fini first insyd league play during de regular season plus a 10–4–8 record, wey dem advance to de playoffs.<ref>{{cite web |date=August 31, 2013 |title=2013 NWSL Standings, Results & Schedule |url=http://www.pitchsidereport.com/2013/08/31/2013-nwsl-schedule/ |url-status=usurped |archive-url=https://web.archive.org/web/20140226033126/http://www.pitchsidereport.com/2013/08/31/2013-nwsl-schedule/ |archive-date=February 26, 2014 |access-date=February 21, 2014 |publisher=Pitchside Report}}</ref> During de Flash ein semifinal match against Sky Blue, Lloyd score two goals to secure a 2–0 win.<ref>{{cite web |title=Western New York Flash vs. Sky Blue 2 – 0 |url=http://us.women.soccerway.com/matches/2013/08/25/united-states/national-womens-soccer-league/buffalo-flash/jersey-sky-blue/1577150/ |access-date=October 26, 2013 |publisher=Soccerway}}</ref> Na dem defeat de Flash 2–0 by de Portland Thorns FC insyd de championship final.<ref>{{cite web |last=Murray |first=Caitlin |date=August 24, 2013 |title=NWSL playoffs: Western NY Flash cruise past Sky Blue 2–0, will host championship |url=http://www.soccerwire.com/news/western-ny-flash-will-host-nwsl-championship-after-2-0-semifinal-win-tonight/ |url-status=dead |archive-url=https://web.archive.org/web/20130930210633/http://www.soccerwire.com/news/western-ny-flash-will-host-nwsl-championship-after-2-0-semifinal-win-tonight/ |archive-date=September 30, 2013 |access-date=October 26, 2013 |publisher=Soccer Wire}}</ref><ref>{{cite news|last=DiVeronica|first=Jeff|title=Portland Thorns win inaugural NWSL title against Western New York Flash|url=https://www.usatoday.com/story/sports/soccer/2013/09/01/portland-thorns-nwsl-championship-western-new-york-flash/2752577/|work=USA Today|access-date=October 26, 2013|date=September 1, 2013}}</ref>
=== 2015–2017: Houston Dash den Manchester City ===
On October 16, 2014, na dem trade Lloyd to de Houston Dash in exchange for [[Becky Edwards (soccer)|Becky Edwards]], [[Whitney Engen]] den a third-round pick insyd de 2016 NWSL College Draft.<ref>{{cite web |date=October 16, 2014 |title=Houston Dash acquire USWNT midfielder Carli Lloyd from Western New York Flash |url=http://www.houstondynamo.com/news/2014/10/houston-dash-acquire-uswnt-midfielder-carli-lloyd-western-new-york-flash |url-status=dead |archive-url=https://web.archive.org/web/20141018001830/http://www.houstondynamo.com/news/2014/10/houston-dash-acquire-uswnt-midfielder-carli-lloyd-western-new-york-flash |archive-date=October 18, 2014 |access-date=October 16, 2014 |publisher=Houston Dynamo}}</ref>
Insyd February 2017, Lloyd join de English club Manchester City on loan, for de FA WSL Spring Series.<ref>{{cite web |last1=Oatway |first1=Caroline |title=Man City Women Sign Carli Lloyd |url=https://www.mancity.com/news/mcwfc/2017/02/15/man-city-women-sign-carli-lloyd/1487157183429 |url-status=dead |archive-url=https://web.archive.org/web/20170216054136/https://www.mancity.com/news/mcwfc/2017/02/15/man-city-women-sign-carli-lloyd/1487157183429 |archive-date=February 16, 2017 |access-date=February 15, 2017 |website=mancity.com |publisher=Manchester City official website}}</ref> De club fini second insyd de Spring Series wey dem win de 2016–17 FA Women's Cup. Lloyd score a goal insyd de final, a 4–1 victory over Birmingham City.<ref>{{cite web |last1=Duncker |first1=Charlotte |date=June 5, 2017 |title=Man City Women Sign Carli Lloyd |url=https://www.manchestereveningnews.co.uk/sport/football/man-city-women-carli-lloyd-13140071 |access-date=October 23, 2017 |work=Trinity Mirror}}</ref> Lloyd ein final appearance give City cam on May 21, wen na she be ejected from de game for elbowing an opposing player insyd de face. De three-match ban she receive for violent conduct cover de remainder of ein loan period.<ref>{{cite news|title=WSL 1 Spring Series: Carli Lloyd sent off as Man City Women & Chelsea Ladies win|work=BBC Sport|url=https://www.bbc.co.uk/sport/football/39992089|access-date=February 1, 2019}}</ref>
=== 2018–2021: Sky Blue FC (Gotham FC) ===
Insyd January 2018, Lloyd be traded to Sky Blue FC,<ref>{{cite web |title=#10 | Carli Lloyd |url=https://www.gothamfc.com/10-carli-lloyd |url-status=dead |archive-url=https://web.archive.org/web/20211022065954/https://www.gothamfc.com/10-carli-lloyd |archive-date=October 22, 2021 |access-date=October 12, 2021}}</ref><ref>{{cite web |last=Roepken |first=Corey |date=January 18, 2018 |title=Dash trade Carli Lloyd and Janine Beckie, acquire Christen Press |url=http://www.chron.com/sports/dynamo/article/Dash-trade-Carli-Lloyd-and-Janine-Beckie-acquire-12507517.php |access-date=January 18, 2018 |work=Houston Chronicle}}</ref> wey ein name go be changed to NJ/NY Gotham FC insyd 2021. Lloyd score 4 goals insyd 18 appearances give de team insyd 2018, wey dey include de only goal insyd a 1–0 victory over de Orlando Pride, wich na be Sky Blue ein sole win of de season.<ref>{{cite web |date=September 8, 2018 |title=Carli Lloyd goal gives Sky Blue first win of the season, 1–0 over Pride |url=http://www.nwslsoccer.com/game/sky-blue-vs-orlando-pride-2018-09-08 |url-status=dead |archive-url=https://web.archive.org/web/20201024004852/https://www.nwslsoccer.com/game/sky-blue-vs-orlando-pride-2018-09-08 |archive-date=October 24, 2020 |access-date=September 21, 2018}}</ref> Na dem name am to de 2018 NWSL Second XI.
0umem2xgot0e1axo2l4gw3i698t9i81
Pilonidal disease
0
30070
111257
111256
2026-08-29T12:11:58Z
DaSupremo
9
Improve article
111257
wikitext
text/x-wiki
{{Databox}}
'''Pilonidal disease''' be a type of skin infection wey typically dey occur as a cyst between de cheeks of de buttocks den often at de upper end.<ref name="Kh20112">{{cite journal |vauthors=Khanna A, Rombeau JL |date=March 2011 |title=Pilonidal disease |journal=Clinics in Colon and Rectal Surgery |volume=24 |issue=1 |pages=46–53 |doi=10.1055/s-0031-1272823 |pmc=3140333 |pmid=22379405}}</ref><ref>{{cite book|vauthors=James WD, Berger T, Elston D|title=Andrews' Diseases of the Skin E-Book: Clinical Dermatology|date=2015|publisher=Elsevier Health Sciences|isbn=978-0-323-31969-0|page=675|url=https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|language=en|access-date=2020-09-20|archive-date=2023-01-14|archive-url=https://web.archive.org/web/20230114011230/https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|url-status=live}}</ref> Symptoms fi include pain, swelling, den redness.<ref name="Kh20112" /> Der sanso fi be drainage of fluid, buh rarely a fever.<ref name="Kh20112" /><ref name="Fer20182">{{cite book |url=https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |title=Ferri's Clinical Advisor 2018 E-Book: 5 Books in 1 |vauthors=Ferri FF |date=2017 |publisher=Elsevier Health Sciences |isbn=978-0-323-52957-0 |page=995 |language=en |access-date=2020-09-20 |archive-url=https://web.archive.org/web/20230114011209/https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |archive-date=2023-01-14 |url-status=live}}</ref>
== References ==
[[Category:Translated from MDWiki]]
<references />
== External links ==
9x9rt1m8by2xq1kfaalm0a944guicmu
111258
111257
2026-08-29T13:18:54Z
DaSupremo
9
Improve article
111258
wikitext
text/x-wiki
{{Databox}}
'''Pilonidal disease''' be a type of skin infection wey typically dey occur as a cyst between de cheeks of de buttocks den often at de upper end.<ref name="Kh20112">{{cite journal |vauthors=Khanna A, Rombeau JL |date=March 2011 |title=Pilonidal disease |journal=Clinics in Colon and Rectal Surgery |volume=24 |issue=1 |pages=46–53 |doi=10.1055/s-0031-1272823 |pmc=3140333 |pmid=22379405}}</ref><ref>{{cite book|vauthors=James WD, Berger T, Elston D|title=Andrews' Diseases of the Skin E-Book: Clinical Dermatology|date=2015|publisher=Elsevier Health Sciences|isbn=978-0-323-31969-0|page=675|url=https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|language=en|access-date=2020-09-20|archive-date=2023-01-14|archive-url=https://web.archive.org/web/20230114011230/https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|url-status=live}}</ref> Symptoms fi include pain, swelling, den redness.<ref name="Kh20112" /> Der sanso fi be drainage of fluid, buh rarely a fever.<ref name="Kh20112" /><ref name="Fer20182">{{cite book |url=https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |title=Ferri's Clinical Advisor 2018 E-Book: 5 Books in 1 |vauthors=Ferri FF |date=2017 |publisher=Elsevier Health Sciences |isbn=978-0-323-52957-0 |page=995 |language=en |access-date=2020-09-20 |archive-url=https://web.archive.org/web/20230114011209/https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |archive-date=2023-01-14 |url-status=live}}</ref>
Risk factors dey include [[obesity]], family history, prolonged sitting, greater amounts of hair, den no enough exercise.<ref name="Fer20182" /> De underlying mechanism be believed to involve a mechanical process wer hair den skin debris get sucked into de subcutaneous tissues thru skin openings dem call pits.<ref name="Fer20182" /> Diagnosis be based on symptoms den examination.<ref name="Fer20182" />
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
mo34kwr1xbn9i58j8mgaueyjhxx81rh
111259
111258
2026-08-29T13:24:44Z
DaSupremo
9
Improve article
111259
wikitext
text/x-wiki
{{Databox}}
'''Pilonidal disease''' be a type of skin infection wey typically dey occur as a cyst between de cheeks of de buttocks den often at de upper end.<ref name="Kh20112">{{cite journal |vauthors=Khanna A, Rombeau JL |date=March 2011 |title=Pilonidal disease |journal=Clinics in Colon and Rectal Surgery |volume=24 |issue=1 |pages=46–53 |doi=10.1055/s-0031-1272823 |pmc=3140333 |pmid=22379405}}</ref><ref>{{cite book|vauthors=James WD, Berger T, Elston D|title=Andrews' Diseases of the Skin E-Book: Clinical Dermatology|date=2015|publisher=Elsevier Health Sciences|isbn=978-0-323-31969-0|page=675|url=https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|language=en|access-date=2020-09-20|archive-date=2023-01-14|archive-url=https://web.archive.org/web/20230114011230/https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|url-status=live}}</ref> Symptoms fi include pain, swelling, den redness.<ref name="Kh20112" /> Der sanso fi be drainage of fluid, buh rarely a fever.<ref name="Kh20112" /><ref name="Fer20182">{{cite book |url=https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |title=Ferri's Clinical Advisor 2018 E-Book: 5 Books in 1 |vauthors=Ferri FF |date=2017 |publisher=Elsevier Health Sciences |isbn=978-0-323-52957-0 |page=995 |language=en |access-date=2020-09-20 |archive-url=https://web.archive.org/web/20230114011209/https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |archive-date=2023-01-14 |url-status=live}}</ref>
Risk factors dey include [[obesity]], family history, prolonged sitting, greater amounts of hair, den no enough exercise.<ref name="Fer20182" /> De underlying mechanism be believed to involve a mechanical process wer hair den skin debris get sucked into de subcutaneous tissues thru skin openings dem call pits.<ref name="Fer20182" /> Diagnosis be based on symptoms den examination.<ref name="Fer20182" />
If der be de an infection, treatment generally be by incision den drainage just off de midline.<ref name="Kh20112" /><ref name="Fer20182" /> Shaving de area den laser hair removal fi prevent recurrence.<ref name="Kh20112" /><ref>{{Cite web|title=Pilonidal Cyst Laser Hair Removal|url=https://curepilonidalcyst.com/pilonidal-cyst-laser-hair-removal/|website=Cure Pilonidal Cyst|access-date=2021-08-23|archive-date=2022-07-06|archive-url=https://web.archive.org/web/20220706134144/https://curepilonidalcyst.com/pilonidal-cyst-laser-hair-removal/}}</ref> More extensive surgery fi be required if de disease dey recur.<ref name="Kh20112" /> Antibiotics usually no be needed.<ref name="Fer20182" /> Widout treatment, de condition fi remain long-term.<ref name="Kh20112" />
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
1c59ea7ljmzvpuzko739gn4wcwfj3xv
111260
111259
2026-08-29T13:28:58Z
DaSupremo
9
Improve article
111260
wikitext
text/x-wiki
{{Databox}}
'''Pilonidal disease''' be a type of skin infection wey typically dey occur as a cyst between de cheeks of de buttocks den often at de upper end.<ref name="Kh20112">{{cite journal |vauthors=Khanna A, Rombeau JL |date=March 2011 |title=Pilonidal disease |journal=Clinics in Colon and Rectal Surgery |volume=24 |issue=1 |pages=46–53 |doi=10.1055/s-0031-1272823 |pmc=3140333 |pmid=22379405}}</ref><ref>{{cite book|vauthors=James WD, Berger T, Elston D|title=Andrews' Diseases of the Skin E-Book: Clinical Dermatology|date=2015|publisher=Elsevier Health Sciences|isbn=978-0-323-31969-0|page=675|url=https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|language=en|access-date=2020-09-20|archive-date=2023-01-14|archive-url=https://web.archive.org/web/20230114011230/https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|url-status=live}}</ref> Symptoms fi include pain, swelling, den redness.<ref name="Kh20112" /> Der sanso fi be drainage of fluid, buh rarely a fever.<ref name="Kh20112" /><ref name="Fer20182">{{cite book |url=https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |title=Ferri's Clinical Advisor 2018 E-Book: 5 Books in 1 |vauthors=Ferri FF |date=2017 |publisher=Elsevier Health Sciences |isbn=978-0-323-52957-0 |page=995 |language=en |access-date=2020-09-20 |archive-url=https://web.archive.org/web/20230114011209/https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |archive-date=2023-01-14 |url-status=live}}</ref>
Risk factors dey include [[obesity]], family history, prolonged sitting, greater amounts of hair, den no enough exercise.<ref name="Fer20182" /> De underlying mechanism be believed to involve a mechanical process wer hair den skin debris get sucked into de subcutaneous tissues thru skin openings dem call pits.<ref name="Fer20182" /> Diagnosis be based on symptoms den examination.<ref name="Fer20182" />
If der be de an infection, treatment generally be by incision den drainage just off de midline.<ref name="Kh20112" /><ref name="Fer20182" /> Shaving de area den laser hair removal fi prevent recurrence.<ref name="Kh20112" /><ref>{{Cite web|title=Pilonidal Cyst Laser Hair Removal|url=https://curepilonidalcyst.com/pilonidal-cyst-laser-hair-removal/|website=Cure Pilonidal Cyst|access-date=2021-08-23|archive-date=2022-07-06|archive-url=https://web.archive.org/web/20220706134144/https://curepilonidalcyst.com/pilonidal-cyst-laser-hair-removal/}}</ref> More extensive surgery fi be required if de disease dey recur.<ref name="Kh20112" /> Antibiotics usually no be needed.<ref name="Fer20182" /> Widout treatment, de condition fi remain long-term.<ref name="Kh20112" />
About 3 per 10,000 people per year be affected, wey e dey occur more often insyd males dan females.<ref name="Fer20182" /> Young adults most commonly be affected.<ref name="Fer20182" /> De term ''pilonidal'' dey mean 'nest of hair'.<ref name="Kh20112" /> Na de condition first be described insyd 1833.<ref name="Kh20112" />
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
poah3iw7dlbl3vqjle8c490ncwqtxdo
111261
111260
2026-08-29T13:30:52Z
DaSupremo
9
Improve article
111261
wikitext
text/x-wiki
{{Databox}}
'''Pilonidal disease''' be a type of skin infection wey typically dey occur as a cyst between de cheeks of de buttocks den often at de upper end.<ref name="Kh20112">{{cite journal |vauthors=Khanna A, Rombeau JL |date=March 2011 |title=Pilonidal disease |journal=Clinics in Colon and Rectal Surgery |volume=24 |issue=1 |pages=46–53 |doi=10.1055/s-0031-1272823 |pmc=3140333 |pmid=22379405}}</ref><ref>{{cite book|vauthors=James WD, Berger T, Elston D|title=Andrews' Diseases of the Skin E-Book: Clinical Dermatology|date=2015|publisher=Elsevier Health Sciences|isbn=978-0-323-31969-0|page=675|url=https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|language=en|access-date=2020-09-20|archive-date=2023-01-14|archive-url=https://web.archive.org/web/20230114011230/https://books.google.com/books?id=Np6cCQAAQBAJ&pg=PA675|url-status=live}}</ref> Symptoms fi include pain, swelling, den redness.<ref name="Kh20112" /> Der sanso fi be drainage of fluid, buh rarely a fever.<ref name="Kh20112" /><ref name="Fer20182">{{cite book |url=https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |title=Ferri's Clinical Advisor 2018 E-Book: 5 Books in 1 |vauthors=Ferri FF |date=2017 |publisher=Elsevier Health Sciences |isbn=978-0-323-52957-0 |page=995 |language=en |access-date=2020-09-20 |archive-url=https://web.archive.org/web/20230114011209/https://books.google.com/books?id=wGclDwAAQBAJ&pg=PA995 |archive-date=2023-01-14 |url-status=live}}</ref>
Risk factors dey include [[obesity]], family history, prolonged sitting, greater amounts of hair, den no enough exercise.<ref name="Fer20182" /> De underlying mechanism be believed to involve a mechanical process wer hair den skin debris get sucked into de subcutaneous tissues thru skin openings dem call pits.<ref name="Fer20182" /> Diagnosis be based on symptoms den examination.<ref name="Fer20182" />
If der be de an infection, treatment generally be by incision den drainage just off de midline.<ref name="Kh20112" /><ref name="Fer20182" /> Shaving de area den laser hair removal fi prevent recurrence.<ref name="Kh20112" /><ref>{{Cite web|title=Pilonidal Cyst Laser Hair Removal|url=https://curepilonidalcyst.com/pilonidal-cyst-laser-hair-removal/|website=Cure Pilonidal Cyst|access-date=2021-08-23|archive-date=2022-07-06|archive-url=https://web.archive.org/web/20220706134144/https://curepilonidalcyst.com/pilonidal-cyst-laser-hair-removal/}}</ref> More extensive surgery fi be required if de disease dey recur.<ref name="Kh20112" /> Antibiotics usually no be needed.<ref name="Fer20182" /> Widout treatment, de condition fi remain long-term.<ref name="Kh20112" />
About 3 per 10,000 people per year be affected, wey e dey occur more often insyd males dan females.<ref name="Fer20182" /> Young adults most commonly be affected.<ref name="Fer20182" /> De term ''pilonidal'' dey mean 'nest of hair'.<ref name="Kh20112" /> Na de condition first be described insyd 1833.<ref name="Kh20112" />
== References ==
<references />
== External links ==
{{Commons category|Sinus pilonidalis}}
* [https://www.nhs.uk/conditions/pilonidal-sinus/ NHS Choices for pilonidal sinus treatment]
[[Category:Buttocks]]
[[Category:Cysts]]
[[Category:Translated from MDWiki]]
o1uj3l0aa95orrcl1kzf25wiale82js
Category:Cysts
14
30071
111262
2026-08-29T13:31:18Z
DaSupremo
9
Fresh category
111262
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Category:Buttocks
14
30072
111263
2026-08-29T13:31:27Z
DaSupremo
9
Fresh category
111263
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Tonsil stones
0
30073
111264
2026-08-29T13:34:43Z
DaSupremo
9
Created by translating the page [[:mdwiki:Special:Redirect/revision/1479980|Tonsil stones]] to:gpe #mdwikicx
111264
wikitext
text/x-wiki
[[Category:Translated from MDWiki]]
r0gf7axtnvt68k0p85plnlehx64o08u
111265
111264
2026-08-29T13:47:05Z
DaSupremo
9
Improve article
111265
wikitext
text/x-wiki
{{Databox}}
'''Tonsil stones''', dem sanso know as '''tonsilloliths''', be mineralizations of debris within de crevices of de tonsils.<ref name=Fer2014/><ref name=Ram04>{{cite journal |vauthors=Ram S, Siar CH, Ismail SM, Prepageran N |title=Pseudo bilateral tonsilloliths: a case report and review of the literature |journal=Oral Surg Oral Med Oral Pathol Oral Radiol Endod |volume=98 |issue=1 |pages=110–4 |date=July 2004 |pmid=15243480 |doi= 10.1016/j.tripleo.2003.11.015}}</ref> Wen no be mineralized, de presence of debris be known as '''chronic caseous tonsillitis''' ('''CCT''').<ref name=Fer2014/> Symptoms fi include bad breath,<ref name=Fer2014>{{cite journal |last1=Ferguson |first1=M |last2=Aydin |first2=M |last3=Mickel |first3=J |title=Halitosis and the tonsils: a review of management. |journal=Otolaryngology–Head and Neck Surgery |date=October 2014 |volume=151 |issue=4 |pages=567–74 |doi=10.1177/0194599814544881 |pmid=25096359|s2cid=39801742 }}</ref> foreign body sensation, sore throat, pain anaa discomfort plus swallowing, den cough.<ref>{{Cite journal |last1=Bhasme |first1=Amit |last2=Lamba |first2=Preeti |last3=Sajjan |first3=Uzma |date=April 2023 |title=A Case Report of Tonsillolith Treated With Individualized Homoeopathy |journal=Alternative Therapies in Health and Medicine |volume=29 |issue=3 |pages=88–91 |issn=1078-6791 |pmid=35839105}}</ref> Generally der no be pain, though der fi be de feeling of something present.<ref name=Fer2014/> De presence of tonsil stones fi be otherwise undetectable; however, sam people report dem see white material insyd de rear of dema throat.
== References ==
[[Category:Translated from MDWiki]]
<references />
== External links ==
381bvv2p2mobio9kympge3gwdwqhyzi
111266
111265
2026-08-29T14:05:46Z
DaSupremo
9
Improve article
111266
wikitext
text/x-wiki
{{Databox}}
'''Tonsil stones''', dem sanso know as '''tonsilloliths''', be mineralizations of debris within de crevices of de tonsils.<ref name=Fer2014/><ref name=Ram04>{{cite journal |vauthors=Ram S, Siar CH, Ismail SM, Prepageran N |title=Pseudo bilateral tonsilloliths: a case report and review of the literature |journal=Oral Surg Oral Med Oral Pathol Oral Radiol Endod |volume=98 |issue=1 |pages=110–4 |date=July 2004 |pmid=15243480 |doi= 10.1016/j.tripleo.2003.11.015}}</ref> Wen no be mineralized, de presence of debris be known as '''chronic caseous tonsillitis''' ('''CCT''').<ref name=Fer2014/> Symptoms fi include bad breath,<ref name=Fer2014>{{cite journal |last1=Ferguson |first1=M |last2=Aydin |first2=M |last3=Mickel |first3=J |title=Halitosis and the tonsils: a review of management. |journal=Otolaryngology–Head and Neck Surgery |date=October 2014 |volume=151 |issue=4 |pages=567–74 |doi=10.1177/0194599814544881 |pmid=25096359|s2cid=39801742 }}</ref> foreign body sensation, sore throat, pain anaa discomfort plus swallowing, den cough.<ref>{{Cite journal |last1=Bhasme |first1=Amit |last2=Lamba |first2=Preeti |last3=Sajjan |first3=Uzma |date=April 2023 |title=A Case Report of Tonsillolith Treated With Individualized Homoeopathy |journal=Alternative Therapies in Health and Medicine |volume=29 |issue=3 |pages=88–91 |issn=1078-6791 |pmid=35839105}}</ref> Generally der no be pain, though der fi be de feeling of something present.<ref name=Fer2014/> De presence of tonsil stones fi be otherwise undetectable; however, sam people report dem see white material insyd de rear of dema throat.
Risk factors fi include recurrent throat infections.<ref name=Whi2014>{{cite book |last1=White |first1=Stuart C. |last2=Pharoah |first2=Michael J. |title=Oral Radiology - E-Book: Principles and Interpretation |date=2014 |publisher=Elsevier Health Sciences |isbn=978-0-323-09634-8 |page=527 |url=https://books.google.com/books?id=V7PwAwAAQBAJ&dq=tonsillolith+differential&pg=PA527 |language=en}}</ref> Tonsil stones dey contain a biofilm composed of several different bacteria, den calcium salts, either alone anaa in combination plus oda mineral salts.<ref>{{Cite journal |last1=Silvestre-Donat |first1=Francisco Javier |last2=Pla-Mocholi |first2=Angel |last3=Estelles-Ferriol |first3=Enrique |last4=Martinez-Mihi |first4=Victoria |date=2005 |title=Giant tonsillolith: report of a case |journal=Medicina Oral, Patologia Oral y Cirugia Bucal |volume=10 |issue=3 |pages=239–242 |issn=1698-6946 |pmid=15876967}}</ref><ref name="Fer2014" /> While dem most commonly dey occur insyd de palatine tonsils, dem sanso fi occur insyd de adenoids, lingual tonsils den tubal tonsil.<ref name=Ram04/><ref>{{Cite journal |last1=Leonard |first1=James A. |last2=Reilly |first2=Brian K. |date=2 February 2022 |title=Adenoid stones, an unknown culprit in pediatric throat pain |journal=Ear, Nose & Throat Journal |volume=103 |issue=10 |pages=NP596–NP598 |doi=10.1177/01455613221074139 |pmid=35107383 |doi-access=free |language=en-US }}</ref><ref>{{Cite journal |last1=Bayramov |first1=Nuran |last2=Usdat Ozturk |first2=Asel |last3=Ercalik Yalcinkaya |first3=Sebnem |date=27 May 2022 |title=Incidental Soft Tissue Calcifications in Cone-Beam Computed Tomography Images |url=https://www.researchgate.net/publication/356216906 |journal=Turkiye Klinikleri Journal of Dental Sciences |volume=28 |issue=2 |pages=291–298 |doi=10.5336/dentalsci.2021-84346 |doi-access=free |access-date=17 January 2023|hdl=11424/292021 |hdl-access=free }}</ref> Na dem record tonsil stones dey weigh from 0.3{{nbsp}}g to 42{{nbsp}}g,<ref name=Ram04/> wey dem be typically small in size. However, der be occasional reports of large tonsilloliths. Dem often be discovered during medical imaging for oda reasons, den more recently, secof de impact den influence of social media platforms such as TikTok, medical professionals experience an increase in patient concern den tonsillolith evaluations.<ref>{{Cite journal |last1=Sulibhavi |first1=Anita |last2=Isaacson |first2=Glenn |date=2021-09-26 |title=TikTok Tonsils |journal=Ear, Nose, & Throat Journal |volume=103 |issue=3 |pages=NP183–NP184 |doi=10.1177/01455613211038340 |issn=1942-7522 |pmid=34569296|doi-access=free }}</ref><ref>{{cite book |title=Textbook of Oral Radiology |date=2009 |publisher=Elsevier India |isbn=978-81-312-1148-9 |page=607 |url=https://books.google.com/books?id=mO6Z07lHQO4C&dq=tonsillolith+differential&pg=PA607 |language=en}}</ref>
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
2nx1710e466xnxbg7rmtrjruphmtgem
111268
111266
2026-08-29T14:26:23Z
DaSupremo
9
Improve article
111268
wikitext
text/x-wiki
{{Databox}}
'''Tonsil stones''', dem sanso know as '''tonsilloliths''', be mineralizations of debris within de crevices of de tonsils.<ref name=Fer2014/><ref name=Ram04>{{cite journal |vauthors=Ram S, Siar CH, Ismail SM, Prepageran N |title=Pseudo bilateral tonsilloliths: a case report and review of the literature |journal=Oral Surg Oral Med Oral Pathol Oral Radiol Endod |volume=98 |issue=1 |pages=110–4 |date=July 2004 |pmid=15243480 |doi= 10.1016/j.tripleo.2003.11.015}}</ref> Wen no be mineralized, de presence of debris be known as '''chronic caseous tonsillitis''' ('''CCT''').<ref name=Fer2014/> Symptoms fi include bad breath,<ref name=Fer2014>{{cite journal |last1=Ferguson |first1=M |last2=Aydin |first2=M |last3=Mickel |first3=J |title=Halitosis and the tonsils: a review of management. |journal=Otolaryngology–Head and Neck Surgery |date=October 2014 |volume=151 |issue=4 |pages=567–74 |doi=10.1177/0194599814544881 |pmid=25096359|s2cid=39801742 }}</ref> foreign body sensation, sore throat, pain anaa discomfort plus swallowing, den cough.<ref>{{Cite journal |last1=Bhasme |first1=Amit |last2=Lamba |first2=Preeti |last3=Sajjan |first3=Uzma |date=April 2023 |title=A Case Report of Tonsillolith Treated With Individualized Homoeopathy |journal=Alternative Therapies in Health and Medicine |volume=29 |issue=3 |pages=88–91 |issn=1078-6791 |pmid=35839105}}</ref> Generally der no be pain, though der fi be de feeling of something present.<ref name=Fer2014/> De presence of tonsil stones fi be otherwise undetectable; however, sam people report dem see white material insyd de rear of dema throat.
Risk factors fi include recurrent throat infections.<ref name=Whi2014>{{cite book |last1=White |first1=Stuart C. |last2=Pharoah |first2=Michael J. |title=Oral Radiology - E-Book: Principles and Interpretation |date=2014 |publisher=Elsevier Health Sciences |isbn=978-0-323-09634-8 |page=527 |url=https://books.google.com/books?id=V7PwAwAAQBAJ&dq=tonsillolith+differential&pg=PA527 |language=en}}</ref> Tonsil stones dey contain a biofilm composed of several different bacteria, den calcium salts, either alone anaa in combination plus oda mineral salts.<ref>{{Cite journal |last1=Silvestre-Donat |first1=Francisco Javier |last2=Pla-Mocholi |first2=Angel |last3=Estelles-Ferriol |first3=Enrique |last4=Martinez-Mihi |first4=Victoria |date=2005 |title=Giant tonsillolith: report of a case |journal=Medicina Oral, Patologia Oral y Cirugia Bucal |volume=10 |issue=3 |pages=239–242 |issn=1698-6946 |pmid=15876967}}</ref><ref name="Fer2014" /> While dem most commonly dey occur insyd de palatine tonsils, dem sanso fi occur insyd de adenoids, lingual tonsils den tubal tonsil.<ref name=Ram04/><ref>{{Cite journal |last1=Leonard |first1=James A. |last2=Reilly |first2=Brian K. |date=2 February 2022 |title=Adenoid stones, an unknown culprit in pediatric throat pain |journal=Ear, Nose & Throat Journal |volume=103 |issue=10 |pages=NP596–NP598 |doi=10.1177/01455613221074139 |pmid=35107383 |doi-access=free |language=en-US }}</ref><ref>{{Cite journal |last1=Bayramov |first1=Nuran |last2=Usdat Ozturk |first2=Asel |last3=Ercalik Yalcinkaya |first3=Sebnem |date=27 May 2022 |title=Incidental Soft Tissue Calcifications in Cone-Beam Computed Tomography Images |url=https://www.researchgate.net/publication/356216906 |journal=Turkiye Klinikleri Journal of Dental Sciences |volume=28 |issue=2 |pages=291–298 |doi=10.5336/dentalsci.2021-84346 |doi-access=free |access-date=17 January 2023|hdl=11424/292021 |hdl-access=free }}</ref> Na dem record tonsil stones dey weigh from 0.3{{nbsp}}g to 42{{nbsp}}g,<ref name=Ram04/> wey dem be typically small in size. However, der be occasional reports of large tonsilloliths. Dem often be discovered during medical imaging for oda reasons, den more recently, secof de impact den influence of social media platforms such as TikTok, medical professionals experience an increase in patient concern den tonsillolith evaluations.<ref>{{Cite journal |last1=Sulibhavi |first1=Anita |last2=Isaacson |first2=Glenn |date=2021-09-26 |title=TikTok Tonsils |journal=Ear, Nose, & Throat Journal |volume=103 |issue=3 |pages=NP183–NP184 |doi=10.1177/01455613211038340 |issn=1942-7522 |pmid=34569296|doi-access=free }}</ref><ref>{{cite book |title=Textbook of Oral Radiology |date=2009 |publisher=Elsevier India |isbn=978-81-312-1148-9 |page=607 |url=https://books.google.com/books?id=mO6Z07lHQO4C&dq=tonsillolith+differential&pg=PA607 |language=en}}</ref>
Dem be usually benign, so if tonsil stones no dey bother de patient, no treatment be needed.<ref name=Fer2014/> However, insyd rare cases, na tonsilloliths present patients plus further complications necessitating surgical extraction. Tonsilloliths wey exceed de average size be typically seen insyd older individuals, as de likelihood of developing tonsil stones be linear with age. Otherwise, gargling plus salt water den manual removal fi be tried.<ref name=Fer2014/> Chlorhexidine anaa cetylpyridinium chloride sanso fi be tried.<ref name=Fer2014/> Surgical treatment fi include partial anaa complete tonsil removal.<ref name=Fer2014/><ref>{{cite journal |last1=Wong Chung |first1=JERE |last2=van Benthem |first2=PPG |last3=Blom |first3=HM |title=Tonsillotomy versus tonsillectomy in adults suffering from tonsil-related afflictions: a systematic review. |journal=Acta Oto-Laryngologica |date=May 2018 |volume=138 |issue=5 |pages=492–501 |doi=10.1080/00016489.2017.1412500 |pmid=29241412 |doi-access=free}}</ref> Up to 10% of people get tonsil stones.<ref name=Fer2014/> Biological sex no dey influence de chance of having tonsil stones,<ref name=Fer2014/> buh older people be more commonly affected.<ref name=Whi2014/> Chaw people opt to extract dema own tonsil stones manually anaa plus developments insyd dental hygiene products. Water flossers cam be a more common mechanism to extract tonsilloliths den alleviate de discomfort den complications dem dey cause. Tonsil stones fi cam be dislodged on dema own while eating, drinking, gargling, den coughing. Additionally, an exhalation technique wey vigorously dey shake de tonsils fi be performed to dislodge dem. Dis dey involve loudly producing a voiceless velar fricative sound, at various pitches, to shake both de palatine den lingual tonsils.
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
lp7akc5f9dluat1r1xywja846aa3yqm
111269
111268
2026-08-29T14:36:33Z
DaSupremo
9
Improve article
111269
wikitext
text/x-wiki
{{Databox}}
'''Tonsil stones''', dem sanso know as '''tonsilloliths''', be mineralizations of debris within de crevices of de tonsils.<ref name=Fer2014/><ref name=Ram04>{{cite journal |vauthors=Ram S, Siar CH, Ismail SM, Prepageran N |title=Pseudo bilateral tonsilloliths: a case report and review of the literature |journal=Oral Surg Oral Med Oral Pathol Oral Radiol Endod |volume=98 |issue=1 |pages=110–4 |date=July 2004 |pmid=15243480 |doi= 10.1016/j.tripleo.2003.11.015}}</ref> Wen no be mineralized, de presence of debris be known as '''chronic caseous tonsillitis''' ('''CCT''').<ref name=Fer2014/> Symptoms fi include bad breath,<ref name=Fer2014>{{cite journal |last1=Ferguson |first1=M |last2=Aydin |first2=M |last3=Mickel |first3=J |title=Halitosis and the tonsils: a review of management. |journal=Otolaryngology–Head and Neck Surgery |date=October 2014 |volume=151 |issue=4 |pages=567–74 |doi=10.1177/0194599814544881 |pmid=25096359|s2cid=39801742 }}</ref> foreign body sensation, sore throat, pain anaa discomfort plus swallowing, den cough.<ref>{{Cite journal |last1=Bhasme |first1=Amit |last2=Lamba |first2=Preeti |last3=Sajjan |first3=Uzma |date=April 2023 |title=A Case Report of Tonsillolith Treated With Individualized Homoeopathy |journal=Alternative Therapies in Health and Medicine |volume=29 |issue=3 |pages=88–91 |issn=1078-6791 |pmid=35839105}}</ref> Generally der no be pain, though der fi be de feeling of something present.<ref name=Fer2014/> De presence of tonsil stones fi be otherwise undetectable; however, sam people report dem see white material insyd de rear of dema throat.
Risk factors fi include recurrent throat infections.<ref name=Whi2014>{{cite book |last1=White |first1=Stuart C. |last2=Pharoah |first2=Michael J. |title=Oral Radiology - E-Book: Principles and Interpretation |date=2014 |publisher=Elsevier Health Sciences |isbn=978-0-323-09634-8 |page=527 |url=https://books.google.com/books?id=V7PwAwAAQBAJ&dq=tonsillolith+differential&pg=PA527 |language=en}}</ref> Tonsil stones dey contain a biofilm composed of several different bacteria, den calcium salts, either alone anaa in combination plus oda mineral salts.<ref>{{Cite journal |last1=Silvestre-Donat |first1=Francisco Javier |last2=Pla-Mocholi |first2=Angel |last3=Estelles-Ferriol |first3=Enrique |last4=Martinez-Mihi |first4=Victoria |date=2005 |title=Giant tonsillolith: report of a case |journal=Medicina Oral, Patologia Oral y Cirugia Bucal |volume=10 |issue=3 |pages=239–242 |issn=1698-6946 |pmid=15876967}}</ref><ref name="Fer2014" /> While dem most commonly dey occur insyd de palatine tonsils, dem sanso fi occur insyd de adenoids, lingual tonsils den tubal tonsil.<ref name=Ram04/><ref>{{Cite journal |last1=Leonard |first1=James A. |last2=Reilly |first2=Brian K. |date=2 February 2022 |title=Adenoid stones, an unknown culprit in pediatric throat pain |journal=Ear, Nose & Throat Journal |volume=103 |issue=10 |pages=NP596–NP598 |doi=10.1177/01455613221074139 |pmid=35107383 |doi-access=free |language=en-US }}</ref><ref>{{Cite journal |last1=Bayramov |first1=Nuran |last2=Usdat Ozturk |first2=Asel |last3=Ercalik Yalcinkaya |first3=Sebnem |date=27 May 2022 |title=Incidental Soft Tissue Calcifications in Cone-Beam Computed Tomography Images |url=https://www.researchgate.net/publication/356216906 |journal=Turkiye Klinikleri Journal of Dental Sciences |volume=28 |issue=2 |pages=291–298 |doi=10.5336/dentalsci.2021-84346 |doi-access=free |access-date=17 January 2023|hdl=11424/292021 |hdl-access=free }}</ref> Na dem record tonsil stones dey weigh from 0.3{{nbsp}}g to 42{{nbsp}}g,<ref name=Ram04/> wey dem be typically small in size. However, der be occasional reports of large tonsilloliths. Dem often be discovered during medical imaging for oda reasons, den more recently, secof de impact den influence of social media platforms such as TikTok, medical professionals experience an increase in patient concern den tonsillolith evaluations.<ref>{{Cite journal |last1=Sulibhavi |first1=Anita |last2=Isaacson |first2=Glenn |date=2021-09-26 |title=TikTok Tonsils |journal=Ear, Nose, & Throat Journal |volume=103 |issue=3 |pages=NP183–NP184 |doi=10.1177/01455613211038340 |issn=1942-7522 |pmid=34569296|doi-access=free }}</ref><ref>{{cite book |title=Textbook of Oral Radiology |date=2009 |publisher=Elsevier India |isbn=978-81-312-1148-9 |page=607 |url=https://books.google.com/books?id=mO6Z07lHQO4C&dq=tonsillolith+differential&pg=PA607 |language=en}}</ref>
Dem be usually benign, so if tonsil stones no dey bother de patient, no treatment be needed.<ref name=Fer2014/> However, insyd rare cases, na tonsilloliths present patients plus further complications necessitating surgical extraction. Tonsilloliths wey exceed de average size be typically seen insyd older individuals, as de likelihood of developing tonsil stones be linear with age. Otherwise, gargling plus salt water den manual removal fi be tried.<ref name=Fer2014/> Chlorhexidine anaa cetylpyridinium chloride sanso fi be tried.<ref name=Fer2014/> Surgical treatment fi include partial anaa complete tonsil removal.<ref name=Fer2014/><ref>{{cite journal |last1=Wong Chung |first1=JERE |last2=van Benthem |first2=PPG |last3=Blom |first3=HM |title=Tonsillotomy versus tonsillectomy in adults suffering from tonsil-related afflictions: a systematic review. |journal=Acta Oto-Laryngologica |date=May 2018 |volume=138 |issue=5 |pages=492–501 |doi=10.1080/00016489.2017.1412500 |pmid=29241412 |doi-access=free}}</ref> Up to 10% of people get tonsil stones.<ref name=Fer2014/> Biological sex no dey influence de chance of having tonsil stones,<ref name=Fer2014/> buh older people be more commonly affected.<ref name=Whi2014/> Chaw people opt to extract dema own tonsil stones manually anaa plus developments insyd dental hygiene products. Water flossers cam be a more common mechanism to extract tonsilloliths den alleviate de discomfort den complications dem dey cause. Tonsil stones fi cam be dislodged on dema own while eating, drinking, gargling, den coughing. Additionally, an exhalation technique wey vigorously dey shake de tonsils fi be performed to dislodge dem. Dis dey involve loudly producing a voiceless velar fricative sound, at various pitches, to shake both de palatine den lingual tonsils.
== References ==
<references />
== External links ==
{{Commons}}
[[Category:Tonsil disorders]]
[[Category:Oral hygiene]]
[[Category:Otorhinolaryngology]]
[[Category:Translated from MDWiki]]
8qe5faawqcvkh0yb8ksayildqczr6rv
Dzorwulu
0
30074
111267
2026-08-29T14:09:30Z
Kewl Sunshine
45
Created by translating the opening section from the page "[[:en:Special:Redirect/revision/1371138699|Dzorwulu]]"
111267
wikitext
text/x-wiki
'''Dzorwulu''' be town for [[Greater Accra Region]] for [[Ghana]]. Ebe de capital for de [[Ayawaso West Municipal District]]. The [[N1 road (Ghana)|N1]] highway de separete Dzorwulu den North Dzorwulu.
01u2mmedizkvip6r1jjt64g8rnj16t7
Category:Tonsil disorders
14
30075
111270
2026-08-29T14:37:14Z
DaSupremo
9
Fresh category
111270
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Category:Oral hygiene
14
30076
111271
2026-08-29T14:37:25Z
DaSupremo
9
Fresh category
111271
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Noonan syndrome
0
30077
111272
2026-08-29T14:42:06Z
DaSupremo
9
Created by translating the page [[:mdwiki:Special:Redirect/revision/1503731|Noonan syndrome]] to:gpe #mdwikicx
111272
wikitext
text/x-wiki
[[Category:Translated from MDWiki]]
r0gf7axtnvt68k0p85plnlehx64o08u
111273
111272
2026-08-29T14:52:52Z
DaSupremo
9
Improve article
111273
wikitext
text/x-wiki
{{Databox}}
'''Noonan syndrome''' ('''NS''') be a genetic disorder fi be present plus mildly unusual facial features, short height, congenital heart disease, bleeding problems, den skeletal malformations.<ref name="GHR2018">{{cite web |title=Noonan syndrome |url=https://medlineplus.gov/genetics/condition/noonan-syndrome/ |website=Genetics Home Reference |access-date=24 December 2018 }}</ref> Facial features dey include widely spaced eyes, light-colored eyes, low-set ears, a short neck, den a small lower jaw.<ref name="GHR2018" /> Heart problems fi include pulmonary valve stenosis.<ref name="GHR2018" /> De breast bone fi either be protrude anaa be sunken, while de [[scoliosis|spine fi be abnormally curved]].<ref name="GHR2018" /> Intelligence often be normal.<ref name="GHR2018" /> Complications of NS fi include [[leukemia]].<ref name="GHR2018" /> Sam of NS ein symptoms be shared plus Watson syndrome, a related genetic condition.<ref name=":2">{{Cite journal |last1=Boxel-Woolf |first1=Tom Van |last2=McCarthy |first2=Kathleen M. |title=Speech and language skills in a case of Watson syndrome |journal=Clinical Linguistics & Phonetics |date=2025 |volume=0 |pages=1–24 |doi=10.1080/02699206.2025.2472051 |issn=0269-9206 |pmid=40077991|doi-access=free }}</ref>
== References ==
[[Category:Translated from MDWiki]]
<references />
== External links ==
paliskyj68hedrobhmlspvxy6itxgwf
111274
111273
2026-08-29T14:56:23Z
DaSupremo
9
Improve article
111274
wikitext
text/x-wiki
{{Databox}}
'''Noonan syndrome''' ('''NS''') be a genetic disorder fi be present plus mildly unusual facial features, short height, congenital heart disease, bleeding problems, den skeletal malformations.<ref name="GHR2018">{{cite web |title=Noonan syndrome |url=https://medlineplus.gov/genetics/condition/noonan-syndrome/ |website=Genetics Home Reference |access-date=24 December 2018 }}</ref> Facial features dey include widely spaced eyes, light-colored eyes, low-set ears, a short neck, den a small lower jaw.<ref name="GHR2018" /> Heart problems fi include pulmonary valve stenosis.<ref name="GHR2018" /> De breast bone fi either be protrude anaa be sunken, while de [[scoliosis|spine fi be abnormally curved]].<ref name="GHR2018" /> Intelligence often be normal.<ref name="GHR2018" /> Complications of NS fi include [[leukemia]].<ref name="GHR2018" /> Sam of NS ein symptoms be shared plus Watson syndrome, a related genetic condition.<ref name=":2">{{Cite journal |last1=Boxel-Woolf |first1=Tom Van |last2=McCarthy |first2=Kathleen M. |title=Speech and language skills in a case of Watson syndrome |journal=Clinical Linguistics & Phonetics |date=2025 |volume=0 |pages=1–24 |doi=10.1080/02699206.2025.2472051 |issn=0269-9206 |pmid=40077991|doi-access=free }}</ref>
A number of genetic mutations fi result in Noonan syndrome.<ref name="GHR2018" /> De condition fi be inherited as an autosomal dominant condition anaa occur as a new mutation.<ref name="GHR2018" /><ref name="NIH20182">{{cite web |title=Noonan syndrome |url=https://rarediseases.info.nih.gov/diseases/10955/noonan-syndrome |access-date=25 December 2018 |website=Genetic and Rare Diseases Information Center (GARD) – an NCATS Program}}</ref> Noonan syndrome be a type of RASopathy,<ref name=":2" /> de underlying mechanism for wich dey involve sustained activation of de RAS/MAPK cell signaling pathway.<ref name="GHR2018" /> De diagnosis fi be suspected based on symptoms, medical imaging, den blood tests.<ref name="NORD2016">{{cite web |title=Noonan Syndrome |url=https://rarediseases.org/rare-diseases/noonan-syndrome/ |website=NORD (National Organization for Rare Disorders) |access-date=24 December 2018 |date=2016}}</ref><ref name="AFP20142">{{cite journal |vauthors=Bhambhani V, Muenke M |date=January 2014 |title=Noonan syndrome |journal=American Family Physician |volume=89 |issue=1 |pages=37–43 |pmc=4099190 |pmid=24444506}}</ref> Confirmation fi be achieved plus genetic testing.<ref name="NORD2016" />
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
ct84fgbgoorup6uilbo60lvr8039zu5
111275
111274
2026-08-29T15:00:08Z
DaSupremo
9
Improve article
111275
wikitext
text/x-wiki
{{Databox}}
'''Noonan syndrome''' ('''NS''') be a genetic disorder fi be present plus mildly unusual facial features, short height, congenital heart disease, bleeding problems, den skeletal malformations.<ref name="GHR2018">{{cite web |title=Noonan syndrome |url=https://medlineplus.gov/genetics/condition/noonan-syndrome/ |website=Genetics Home Reference |access-date=24 December 2018 }}</ref> Facial features dey include widely spaced eyes, light-colored eyes, low-set ears, a short neck, den a small lower jaw.<ref name="GHR2018" /> Heart problems fi include pulmonary valve stenosis.<ref name="GHR2018" /> De breast bone fi either be protrude anaa be sunken, while de [[scoliosis|spine fi be abnormally curved]].<ref name="GHR2018" /> Intelligence often be normal.<ref name="GHR2018" /> Complications of NS fi include [[leukemia]].<ref name="GHR2018" /> Sam of NS ein symptoms be shared plus Watson syndrome, a related genetic condition.<ref name=":2">{{Cite journal |last1=Boxel-Woolf |first1=Tom Van |last2=McCarthy |first2=Kathleen M. |title=Speech and language skills in a case of Watson syndrome |journal=Clinical Linguistics & Phonetics |date=2025 |volume=0 |pages=1–24 |doi=10.1080/02699206.2025.2472051 |issn=0269-9206 |pmid=40077991|doi-access=free }}</ref>
A number of genetic mutations fi result in Noonan syndrome.<ref name="GHR2018" /> De condition fi be inherited as an autosomal dominant condition anaa occur as a new mutation.<ref name="GHR2018" /><ref name="NIH20182">{{cite web |title=Noonan syndrome |url=https://rarediseases.info.nih.gov/diseases/10955/noonan-syndrome |access-date=25 December 2018 |website=Genetic and Rare Diseases Information Center (GARD) – an NCATS Program}}</ref> Noonan syndrome be a type of RASopathy,<ref name=":2" /> de underlying mechanism for wich dey involve sustained activation of de RAS/MAPK cell signaling pathway.<ref name="GHR2018" /> De diagnosis fi be suspected based on symptoms, medical imaging, den blood tests.<ref name="NORD2016">{{cite web |title=Noonan Syndrome |url=https://rarediseases.org/rare-diseases/noonan-syndrome/ |website=NORD (National Organization for Rare Disorders) |access-date=24 December 2018 |date=2016}}</ref><ref name="AFP20142">{{cite journal |vauthors=Bhambhani V, Muenke M |date=January 2014 |title=Noonan syndrome |journal=American Family Physician |volume=89 |issue=1 |pages=37–43 |pmc=4099190 |pmid=24444506}}</ref> Confirmation fi be achieved plus genetic testing.<ref name="NORD2016" />
No cure give NS be known.<ref name=Mer2018>{{cite web |title=Noonan Syndrome - Children's Health Issues |url=https://www.merckmanuals.com/home/children-s-health-issues/chromosome-and-gene-abnormalities/noonan-syndrome |website=Merck Manuals Consumer Version |access-date=25 December 2018}}</ref> Treatment be based on de symptoms den underlying problems, den extra support insyd school fi be required.<ref name="NIH20182" /> Growth hormone therapy during kiddie time fi increase an affected person ein final height.<ref name="NIH20182" /> Long-term outcomes typically dey depend on de severity of heart problems.<ref name="NIH20182" />
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
lf0qx4an4id3peybdikte4q2jpuudyf
111276
111275
2026-08-29T15:03:46Z
DaSupremo
9
Improve article
111276
wikitext
text/x-wiki
{{Databox}}
'''Noonan syndrome''' ('''NS''') be a genetic disorder fi be present plus mildly unusual facial features, short height, congenital heart disease, bleeding problems, den skeletal malformations.<ref name="GHR2018">{{cite web |title=Noonan syndrome |url=https://medlineplus.gov/genetics/condition/noonan-syndrome/ |website=Genetics Home Reference |access-date=24 December 2018 }}</ref> Facial features dey include widely spaced eyes, light-colored eyes, low-set ears, a short neck, den a small lower jaw.<ref name="GHR2018" /> Heart problems fi include pulmonary valve stenosis.<ref name="GHR2018" /> De breast bone fi either be protrude anaa be sunken, while de [[scoliosis|spine fi be abnormally curved]].<ref name="GHR2018" /> Intelligence often be normal.<ref name="GHR2018" /> Complications of NS fi include [[leukemia]].<ref name="GHR2018" /> Sam of NS ein symptoms be shared plus Watson syndrome, a related genetic condition.<ref name=":2">{{Cite journal |last1=Boxel-Woolf |first1=Tom Van |last2=McCarthy |first2=Kathleen M. |title=Speech and language skills in a case of Watson syndrome |journal=Clinical Linguistics & Phonetics |date=2025 |volume=0 |pages=1–24 |doi=10.1080/02699206.2025.2472051 |issn=0269-9206 |pmid=40077991|doi-access=free }}</ref>
A number of genetic mutations fi result in Noonan syndrome.<ref name="GHR2018" /> De condition fi be inherited as an autosomal dominant condition anaa occur as a new mutation.<ref name="GHR2018" /><ref name="NIH20182">{{cite web |title=Noonan syndrome |url=https://rarediseases.info.nih.gov/diseases/10955/noonan-syndrome |access-date=25 December 2018 |website=Genetic and Rare Diseases Information Center (GARD) – an NCATS Program}}</ref> Noonan syndrome be a type of RASopathy,<ref name=":2" /> de underlying mechanism for wich dey involve sustained activation of de RAS/MAPK cell signaling pathway.<ref name="GHR2018" /> De diagnosis fi be suspected based on symptoms, medical imaging, den blood tests.<ref name="NORD2016">{{cite web |title=Noonan Syndrome |url=https://rarediseases.org/rare-diseases/noonan-syndrome/ |website=NORD (National Organization for Rare Disorders) |access-date=24 December 2018 |date=2016}}</ref><ref name="AFP20142">{{cite journal |vauthors=Bhambhani V, Muenke M |date=January 2014 |title=Noonan syndrome |journal=American Family Physician |volume=89 |issue=1 |pages=37–43 |pmc=4099190 |pmid=24444506}}</ref> Confirmation fi be achieved plus genetic testing.<ref name="NORD2016" />
No cure give NS be known.<ref name=Mer2018>{{cite web |title=Noonan Syndrome - Children's Health Issues |url=https://www.merckmanuals.com/home/children-s-health-issues/chromosome-and-gene-abnormalities/noonan-syndrome |website=Merck Manuals Consumer Version |access-date=25 December 2018}}</ref> Treatment be based on de symptoms den underlying problems, den extra support insyd school fi be required.<ref name="NIH20182" /> Growth hormone therapy during kiddie time fi increase an affected person ein final height.<ref name="NIH20182" /> Long-term outcomes typically dey depend on de severity of heart problems.<ref name="NIH20182" />
An estimated 1 insyd 1,000 people be mildly affected by NS, while about 1 insyd 2,000 get a more severe form of de condition.<ref name="AFP20142" /> Males appear to be affected more often dan females.<ref name=NORD2016/> Dem name de condition after American pediatric cardiologist Jacqueline Noonan, wey describe ein first case insyd 1963.<ref name=NORD2016/>
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
0p1ekgptnfcgigewaocvdu2ue2773jt
111277
111276
2026-08-29T15:06:29Z
DaSupremo
9
Improve article
111277
wikitext
text/x-wiki
{{Databox}}
'''Noonan syndrome''' ('''NS''') be a genetic disorder fi be present plus mildly unusual facial features, short height, congenital heart disease, bleeding problems, den skeletal malformations.<ref name="GHR2018">{{cite web |title=Noonan syndrome |url=https://medlineplus.gov/genetics/condition/noonan-syndrome/ |website=Genetics Home Reference |access-date=24 December 2018 }}</ref> Facial features dey include widely spaced eyes, light-colored eyes, low-set ears, a short neck, den a small lower jaw.<ref name="GHR2018" /> Heart problems fi include pulmonary valve stenosis.<ref name="GHR2018" /> De breast bone fi either be protrude anaa be sunken, while de [[scoliosis|spine fi be abnormally curved]].<ref name="GHR2018" /> Intelligence often be normal.<ref name="GHR2018" /> Complications of NS fi include [[leukemia]].<ref name="GHR2018" /> Sam of NS ein symptoms be shared plus Watson syndrome, a related genetic condition.<ref name=":2">{{Cite journal |last1=Boxel-Woolf |first1=Tom Van |last2=McCarthy |first2=Kathleen M. |title=Speech and language skills in a case of Watson syndrome |journal=Clinical Linguistics & Phonetics |date=2025 |volume=0 |pages=1–24 |doi=10.1080/02699206.2025.2472051 |issn=0269-9206 |pmid=40077991|doi-access=free }}</ref>
A number of genetic mutations fi result in Noonan syndrome.<ref name="GHR2018" /> De condition fi be inherited as an autosomal dominant condition anaa occur as a new mutation.<ref name="GHR2018" /><ref name="NIH20182">{{cite web |title=Noonan syndrome |url=https://rarediseases.info.nih.gov/diseases/10955/noonan-syndrome |access-date=25 December 2018 |website=Genetic and Rare Diseases Information Center (GARD) – an NCATS Program}}</ref> Noonan syndrome be a type of RASopathy,<ref name=":2" /> de underlying mechanism for wich dey involve sustained activation of de RAS/MAPK cell signaling pathway.<ref name="GHR2018" /> De diagnosis fi be suspected based on symptoms, medical imaging, den blood tests.<ref name="NORD2016">{{cite web |title=Noonan Syndrome |url=https://rarediseases.org/rare-diseases/noonan-syndrome/ |website=NORD (National Organization for Rare Disorders) |access-date=24 December 2018 |date=2016}}</ref><ref name="AFP20142">{{cite journal |vauthors=Bhambhani V, Muenke M |date=January 2014 |title=Noonan syndrome |journal=American Family Physician |volume=89 |issue=1 |pages=37–43 |pmc=4099190 |pmid=24444506}}</ref> Confirmation fi be achieved plus genetic testing.<ref name="NORD2016" />
No cure give NS be known.<ref name=Mer2018>{{cite web |title=Noonan Syndrome - Children's Health Issues |url=https://www.merckmanuals.com/home/children-s-health-issues/chromosome-and-gene-abnormalities/noonan-syndrome |website=Merck Manuals Consumer Version |access-date=25 December 2018}}</ref> Treatment be based on de symptoms den underlying problems, den extra support insyd school fi be required.<ref name="NIH20182" /> Growth hormone therapy during kiddie time fi increase an affected person ein final height.<ref name="NIH20182" /> Long-term outcomes typically dey depend on de severity of heart problems.<ref name="NIH20182" />
An estimated 1 insyd 1,000 people be mildly affected by NS, while about 1 insyd 2,000 get a more severe form of de condition.<ref name="AFP20142" /> Males appear to be affected more often dan females.<ref name=NORD2016/> Dem name de condition after American pediatric cardiologist Jacqueline Noonan, wey describe ein first case insyd 1963.<ref name=NORD2016/>
== References ==
<references />
== External links ==
{{Commons category|Noonan syndrome}}{{Authority control}}
{{DEFAULTSORT:Noonan Syndrome}}
[[Category:Autosomal dominant disorders]]
[[Category:Syndromes wey dey affect de heart]]
[[Category:Genodermatoses]]
[[Category:Enzyme defects]]
[[Category:RASopathies]]
[[Category:Congenital heart defects]]
[[Category:Syndromes wey dey affect stature]]
[[Category:Syndromic autism]]
[[Category:Diseases dem name after discoverers]]
[[Category:Audiology]]
[[Category:Translated from MDWiki]]
rzgz2t6vjtcei9aaj6ns5zkviudmmkb
Category:Congenital heart defects
14
30078
111278
2026-08-29T15:06:46Z
DaSupremo
9
Fresh category
111278
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Category:Enzyme defects
14
30079
111279
2026-08-29T15:07:00Z
DaSupremo
9
Fresh category
111279
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Cardiomyopathy
0
30080
111280
2026-08-29T16:18:13Z
DaSupremo
9
Created by translating the page [[:mdwiki:Special:Redirect/revision/1458842|Cardiomyopathy]] to:gpe #mdwikicx
111280
wikitext
text/x-wiki
[[Category:Translated from MDWiki]]
r0gf7axtnvt68k0p85plnlehx64o08u
111281
111280
2026-08-29T17:04:45Z
DaSupremo
9
Improve article
111281
wikitext
text/x-wiki
{{Databox}}
'''Cardiomyopathy''' be a group of primary diseases of de heart muscle.<ref name=NIH2016Sym/> Early on der fi be few anaa no symptoms.<ref name=NIH2016Sym/> As de disease dey worsen, shortness of breath, feeling tired, den swelling of de legs fi occur, secof de onset of [[heart failure]].<ref name=NIH2016Sym/> An irregular heart beat den fainting fi occur.<ref name="NIH2016Sym">{{Cite web |date=22 June 2016 |title=What Are the Signs and Symptoms of Cardiomyopathy? |url=https://www.nhlbi.nih.gov/health/cardiomyopathy/symptoms |url-status=live |archive-url=https://web.archive.org/web/20160915080931/http://www.nhlbi.nih.gov/health/health-topics/topics/cm/signs |archive-date=15 September 2016 |access-date=31 August 2016 |website=NHLBI}}</ref> Those affected be at an increased risk of sudden cardiac death.<ref name="NIH2016Risk">{{Cite web |date=22 June 2016 |title=Who Is at Risk for Cardiomyopathy? |url=http://www.nhlbi.nih.gov/health/health-topics/topics/cm/atrisk |archive-url=https://web.archive.org/web/20160816115709/https://www.nhlbi.nih.gov/health/health-topics/topics/cm/atrisk |archive-date=16 August 2016 |access-date=31 August 2016 |website=NHLBI}}</ref>
== References ==
[[Category:Translated from MDWiki]]
<references />
== External links ==
pu9nezqk3856lvmayckoygrmyojqnbe
111282
111281
2026-08-29T17:07:54Z
DaSupremo
9
Improve article
111282
wikitext
text/x-wiki
{{Databox}}
'''Cardiomyopathy''' be a group of primary diseases of de heart muscle.<ref name=NIH2016Sym/> Early on der fi be few anaa no symptoms.<ref name=NIH2016Sym/> As de disease dey worsen, shortness of breath, feeling tired, den swelling of de legs fi occur, secof de onset of [[heart failure]].<ref name=NIH2016Sym/> An irregular heart beat den fainting fi occur.<ref name="NIH2016Sym">{{Cite web |date=22 June 2016 |title=What Are the Signs and Symptoms of Cardiomyopathy? |url=https://www.nhlbi.nih.gov/health/cardiomyopathy/symptoms |url-status=live |archive-url=https://web.archive.org/web/20160915080931/http://www.nhlbi.nih.gov/health/health-topics/topics/cm/signs |archive-date=15 September 2016 |access-date=31 August 2016 |website=NHLBI}}</ref> Those affected be at an increased risk of sudden cardiac death.<ref name="NIH2016Risk">{{Cite web |date=22 June 2016 |title=Who Is at Risk for Cardiomyopathy? |url=http://www.nhlbi.nih.gov/health/health-topics/topics/cm/atrisk |archive-url=https://web.archive.org/web/20160816115709/https://www.nhlbi.nih.gov/health/health-topics/topics/cm/atrisk |archive-date=16 August 2016 |access-date=31 August 2016 |website=NHLBI}}</ref>
As of 2013, cardiomyopathies be defined as "disorders characterized by morphologically den functionally abnormal myocardium insyd de absence of any oda disease wey be sufficient, by einself, to cause de observed phenotype."<ref>{{Cite book |title=Harrison's principles of internal medicine |date=2022 |publisher=McGraw Hill |isbn=978-1-264-26850-4 |edition=21st |location=New York |page=1954}}</ref><ref>{{Cite journal |last1=Arbustini |first1=Eloisa |last2=Narula |first2=Navneet |last3=Dec |first3=G. William |last4=Reddy |first4=K. Srinath |last5=Greenberg |first5=Barry |last6=Kushwaha |first6=Sudhir |last7=Marwick |first7=Thomas |last8=Pinney |first8=Sean |last9=Bellazzi |first9=Riccardo |last10=Favalli |first10=Valentina |last11=Kramer |first11=Christopher |last12=Roberts |first12=Robert |last13=Zoghbi |first13=William A. |last14=Bonow |first14=Robert |last15=Tavazzi |first15=Luigi |date=3 December 2013 |title=The MOGE(S) Classification for a Phenotype–Genotype Nomenclature of Cardiomyopathy |url=https://linkinghub.elsevier.com/retrieve/pii/S0735109713057252 |journal=Journal of the American College of Cardiology |language=en |volume=62 |issue=22 |pages=2046–2072 |doi=10.1016/j.jacc.2013.08.1644 |pmid=24263073 |s2cid=43240625 |url-access=subscription |archive-date=19 May 2024 |access-date=16 November 2023 |archive-url=https://web.archive.org/web/20240519083419/https://linkinghub.elsevier.com/retrieve/pii/S0735109713057252 |url-status=live }}</ref> Types of cardiomyopathy dey include [[hypertrophic cardiomyopathy]], [[dilated cardiomyopathy]], restrictive cardiomyopathy, arrhythmogenic right ventricular dysplasia, den Takotsubo cardiomyopathy (broken heart syndrome).<ref name=NIH2016Type/> Insyd hypertrophic cardiomyopathy de heart muscle dey enlarge den dey thicken.<ref name=NIH2016Type/> Insyd dilated cardiomyopathy de ventricles enlarge den weaken.<ref name=NIH2016Type/> Insyd restrictive cardiomyopathy de ventricle dey stiffen.<ref name="NIH2016Type">{{Cite web |date=22 June 2016 |title=Types of Cardiomyopathy |url=https://www.nhlbi.nih.gov/health/cardiomyopathy |url-status=live |archive-url=https://web.archive.org/web/20160728023515/http://www.nhlbi.nih.gov/health/health-topics/topics/cm/types |archive-date=28 July 2016 |access-date=31 August 2016 |website=NHLBI}}</ref>
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
0p9zjamcvm768zuxe6z6nwv11ys1l5i
111283
111282
2026-08-29T17:10:09Z
DaSupremo
9
Improve article
111283
wikitext
text/x-wiki
{{Databox}}
'''Cardiomyopathy''' be a group of primary diseases of de heart muscle.<ref name=NIH2016Sym/> Early on der fi be few anaa no symptoms.<ref name=NIH2016Sym/> As de disease dey worsen, shortness of breath, feeling tired, den swelling of de legs fi occur, secof de onset of [[heart failure]].<ref name=NIH2016Sym/> An irregular heart beat den fainting fi occur.<ref name="NIH2016Sym">{{Cite web |date=22 June 2016 |title=What Are the Signs and Symptoms of Cardiomyopathy? |url=https://www.nhlbi.nih.gov/health/cardiomyopathy/symptoms |url-status=live |archive-url=https://web.archive.org/web/20160915080931/http://www.nhlbi.nih.gov/health/health-topics/topics/cm/signs |archive-date=15 September 2016 |access-date=31 August 2016 |website=NHLBI}}</ref> Those affected be at an increased risk of sudden cardiac death.<ref name="NIH2016Risk">{{Cite web |date=22 June 2016 |title=Who Is at Risk for Cardiomyopathy? |url=http://www.nhlbi.nih.gov/health/health-topics/topics/cm/atrisk |archive-url=https://web.archive.org/web/20160816115709/https://www.nhlbi.nih.gov/health/health-topics/topics/cm/atrisk |archive-date=16 August 2016 |access-date=31 August 2016 |website=NHLBI}}</ref>
As of 2013, cardiomyopathies be defined as "disorders characterized by morphologically den functionally abnormal myocardium insyd de absence of any oda disease wey be sufficient, by einself, to cause de observed phenotype."<ref>{{Cite book |title=Harrison's principles of internal medicine |date=2022 |publisher=McGraw Hill |isbn=978-1-264-26850-4 |edition=21st |location=New York |page=1954}}</ref><ref>{{Cite journal |last1=Arbustini |first1=Eloisa |last2=Narula |first2=Navneet |last3=Dec |first3=G. William |last4=Reddy |first4=K. Srinath |last5=Greenberg |first5=Barry |last6=Kushwaha |first6=Sudhir |last7=Marwick |first7=Thomas |last8=Pinney |first8=Sean |last9=Bellazzi |first9=Riccardo |last10=Favalli |first10=Valentina |last11=Kramer |first11=Christopher |last12=Roberts |first12=Robert |last13=Zoghbi |first13=William A. |last14=Bonow |first14=Robert |last15=Tavazzi |first15=Luigi |date=3 December 2013 |title=The MOGE(S) Classification for a Phenotype–Genotype Nomenclature of Cardiomyopathy |url=https://linkinghub.elsevier.com/retrieve/pii/S0735109713057252 |journal=Journal of the American College of Cardiology |language=en |volume=62 |issue=22 |pages=2046–2072 |doi=10.1016/j.jacc.2013.08.1644 |pmid=24263073 |s2cid=43240625 |url-access=subscription |archive-date=19 May 2024 |access-date=16 November 2023 |archive-url=https://web.archive.org/web/20240519083419/https://linkinghub.elsevier.com/retrieve/pii/S0735109713057252 |url-status=live }}</ref> Types of cardiomyopathy dey include [[hypertrophic cardiomyopathy]], [[dilated cardiomyopathy]], restrictive cardiomyopathy, arrhythmogenic right ventricular dysplasia, den Takotsubo cardiomyopathy (broken heart syndrome).<ref name=NIH2016Type/> Insyd hypertrophic cardiomyopathy de heart muscle dey enlarge den dey thicken.<ref name=NIH2016Type/> Insyd dilated cardiomyopathy de ventricles enlarge den weaken.<ref name=NIH2016Type/> Insyd restrictive cardiomyopathy de ventricle dey stiffen.<ref name="NIH2016Type">{{Cite web |date=22 June 2016 |title=Types of Cardiomyopathy |url=https://www.nhlbi.nih.gov/health/cardiomyopathy |url-status=live |archive-url=https://web.archive.org/web/20160728023515/http://www.nhlbi.nih.gov/health/health-topics/topics/cm/types |archive-date=28 July 2016 |access-date=31 August 2016 |website=NHLBI}}</ref>
Insyd many cases, de cause no be determined.<ref name=NIH2016Cau/> Hypertrophic cardiomyopathy usually be inherited, whereas dilated cardiomyopathy be inherited insyd about one third of cases.<ref name=NIH2016Cau/> Dilated cardiomyopathy sanso fi result from alcohol, heavy metals, [[coronary artery disease]], [[cocaine]] abuse, den viral infections.<ref name=NIH2016Cau/> Restrictive cardiomyopathy fi be caused by [[amyloidosis]], hemochromatosis, den sam cancer treatments.<ref name="NIH2016Cau">{{Cite web |date=22 June 2016 |title=What Causes Cardiomyopathy? |url=https://www.nhlbi.nih.gov/health/cardiomyopathy/causes |url-status=live |archive-url=https://web.archive.org/web/20160915092001/https://www.nhlbi.nih.gov/health/health-topics/topics/cm/causes |archive-date=15 September 2016 |access-date=31 August 2016 |website=NHLBI}}</ref> Broken heart syndrome be caused by extreme emotional anaa physical stress.<ref name=NIH2016Type/>
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
9e7imp8ng2ni4u78t9f9ixt3c36urxc
111284
111283
2026-08-29T17:13:56Z
DaSupremo
9
Improve article
111284
wikitext
text/x-wiki
{{Databox}}
'''Cardiomyopathy''' be a group of primary diseases of de heart muscle.<ref name=NIH2016Sym/> Early on der fi be few anaa no symptoms.<ref name=NIH2016Sym/> As de disease dey worsen, shortness of breath, feeling tired, den swelling of de legs fi occur, secof de onset of [[heart failure]].<ref name=NIH2016Sym/> An irregular heart beat den fainting fi occur.<ref name="NIH2016Sym">{{Cite web |date=22 June 2016 |title=What Are the Signs and Symptoms of Cardiomyopathy? |url=https://www.nhlbi.nih.gov/health/cardiomyopathy/symptoms |url-status=live |archive-url=https://web.archive.org/web/20160915080931/http://www.nhlbi.nih.gov/health/health-topics/topics/cm/signs |archive-date=15 September 2016 |access-date=31 August 2016 |website=NHLBI}}</ref> Those affected be at an increased risk of sudden cardiac death.<ref name="NIH2016Risk">{{Cite web |date=22 June 2016 |title=Who Is at Risk for Cardiomyopathy? |url=http://www.nhlbi.nih.gov/health/health-topics/topics/cm/atrisk |archive-url=https://web.archive.org/web/20160816115709/https://www.nhlbi.nih.gov/health/health-topics/topics/cm/atrisk |archive-date=16 August 2016 |access-date=31 August 2016 |website=NHLBI}}</ref>
As of 2013, cardiomyopathies be defined as "disorders characterized by morphologically den functionally abnormal myocardium insyd de absence of any oda disease wey be sufficient, by einself, to cause de observed phenotype."<ref>{{Cite book |title=Harrison's principles of internal medicine |date=2022 |publisher=McGraw Hill |isbn=978-1-264-26850-4 |edition=21st |location=New York |page=1954}}</ref><ref>{{Cite journal |last1=Arbustini |first1=Eloisa |last2=Narula |first2=Navneet |last3=Dec |first3=G. William |last4=Reddy |first4=K. Srinath |last5=Greenberg |first5=Barry |last6=Kushwaha |first6=Sudhir |last7=Marwick |first7=Thomas |last8=Pinney |first8=Sean |last9=Bellazzi |first9=Riccardo |last10=Favalli |first10=Valentina |last11=Kramer |first11=Christopher |last12=Roberts |first12=Robert |last13=Zoghbi |first13=William A. |last14=Bonow |first14=Robert |last15=Tavazzi |first15=Luigi |date=3 December 2013 |title=The MOGE(S) Classification for a Phenotype–Genotype Nomenclature of Cardiomyopathy |url=https://linkinghub.elsevier.com/retrieve/pii/S0735109713057252 |journal=Journal of the American College of Cardiology |language=en |volume=62 |issue=22 |pages=2046–2072 |doi=10.1016/j.jacc.2013.08.1644 |pmid=24263073 |s2cid=43240625 |url-access=subscription |archive-date=19 May 2024 |access-date=16 November 2023 |archive-url=https://web.archive.org/web/20240519083419/https://linkinghub.elsevier.com/retrieve/pii/S0735109713057252 |url-status=live }}</ref> Types of cardiomyopathy dey include [[hypertrophic cardiomyopathy]], [[dilated cardiomyopathy]], restrictive cardiomyopathy, arrhythmogenic right ventricular dysplasia, den Takotsubo cardiomyopathy (broken heart syndrome).<ref name=NIH2016Type/> Insyd hypertrophic cardiomyopathy de heart muscle dey enlarge den dey thicken.<ref name=NIH2016Type/> Insyd dilated cardiomyopathy de ventricles enlarge den weaken.<ref name=NIH2016Type/> Insyd restrictive cardiomyopathy de ventricle dey stiffen.<ref name="NIH2016Type">{{Cite web |date=22 June 2016 |title=Types of Cardiomyopathy |url=https://www.nhlbi.nih.gov/health/cardiomyopathy |url-status=live |archive-url=https://web.archive.org/web/20160728023515/http://www.nhlbi.nih.gov/health/health-topics/topics/cm/types |archive-date=28 July 2016 |access-date=31 August 2016 |website=NHLBI}}</ref>
Insyd many cases, de cause no be determined.<ref name=NIH2016Cau/> Hypertrophic cardiomyopathy usually be inherited, whereas dilated cardiomyopathy be inherited insyd about one third of cases.<ref name=NIH2016Cau/> Dilated cardiomyopathy sanso fi result from alcohol, heavy metals, [[coronary artery disease]], [[cocaine]] abuse, den viral infections.<ref name=NIH2016Cau/> Restrictive cardiomyopathy fi be caused by [[amyloidosis]], hemochromatosis, den sam cancer treatments.<ref name="NIH2016Cau">{{Cite web |date=22 June 2016 |title=What Causes Cardiomyopathy? |url=https://www.nhlbi.nih.gov/health/cardiomyopathy/causes |url-status=live |archive-url=https://web.archive.org/web/20160915092001/https://www.nhlbi.nih.gov/health/health-topics/topics/cm/causes |archive-date=15 September 2016 |access-date=31 August 2016 |website=NHLBI}}</ref> Broken heart syndrome be caused by extreme emotional anaa physical stress.<ref name=NIH2016Type/>
Treatment dey depend on de type of cardiomyopathy den de severity of symptoms.<ref name=NIH2016Tx/> Treatments fi include lifestyle changes, medications, anaa surgery.<ref name=NIH2016Tx/> Surgery fi include a ventricular assist device anaa heart transplant.<ref name="NIH2016Tx">{{Cite web |date=22 June 2016 |title=How Is Cardiomyopathy Treated? |url=http://www.nhlbi.nih.gov/health/health-topics/topics/cm/treatment |archive-url=https://web.archive.org/web/20160915082544/https://www.nhlbi.nih.gov/health/health-topics/topics/cm/treatment |archive-date=15 September 2016 |access-date=31 August 2016 |website=NHLBI}}</ref> Insyd 2015 cardiomyopathy den [[myocarditis]] affect 2.5 million people.<ref name="GBD2015Pre">{{Cite journal |last=((GBD 2015 Disease and Injury Incidence and Prevalence Collaborators)) |date=8 October 2016 |title=Global, regional, and national incidence, prevalence, and years lived with disability for 310 diseases and injuries, 1990-2015: a systematic analysis for the Global Burden of Disease Study 2015. |journal=Lancet |volume=388 |issue=10053 |pages=1545–1602 |doi=10.1016/S0140-6736(16)31678-6 |pmc=5055577 |pmid=27733282}}</ref> Insyd a recent nationwide study of cardiomyopathies between 2004 den 2023, de overall prevalence more dan doubled over de two decades, plus an age-standardized prevalence of 5 insyd 1,000 insyd men, den 3 insyd 1,000 women insyd 2023. Na [[dilated cardiomyopathy]] be de most common subtype (3 insyd 1,000 for men, 1 insyd 1,000 insyd women), followed by [[hypertrophic cardiomyopathy]] (about 1 insyd 1,000 for men, 0.5 insyd 1,000 for women).<ref name=":0">{{Cite journal |last1=Lindholm |first1=Daniel |last2=Ribom |first2=Gustav |last3=Gustafsson |first3=Stefan |last4=Pol |first4=Tymon |last5=Sundström |first5=Johan |date=2026-02-05 |title=Cardiomyopathies: Nationwide Trends in Prevalence, Incidence, and Mortality (2004-2023) |url=https://linkinghub.elsevier.com/retrieve/pii/S073510972510421X |journal=JACC |volume=87 |issue=8 |pages=1087–1090 |language=en |doi=10.1016/j.jacc.2025.12.009|pmid=41603822 |url-access=subscription }}</ref> Insyd dis investigation, cardiomyopathies be associated plus a substantial excess mortality dem compare plus de general population, wey dey range from a 32-fold den 16-fold increase insyd de youngest men den women plus cardiomyopathies, to a two-fold increase insyd de oldest patients.<ref name=":0" />
== References ==
<references />
== External links ==
[[Category:Translated from MDWiki]]
rnk98z6cxtsl4lxiq89acpoihz6ckfu
Christie Pearce
0
30081
111285
2026-08-29T18:21:49Z
DaSupremo
9
Created by translating the opening section from the page "[[:en:Special:Redirect/revision/1371579201|Christie Pearce]]"
111285
wikitext
text/x-wiki
'''Christie Patricia Pearce''' (formerly '''Rampone'''; born June 24, 1975) be an American former professional soccer player wey play as a defender. She be de former captain of de United States national team. Pearce be a three-time Olympic gold medalist, wey sanso be a two-time world champion insyd FIFA Women's World Cup.
Pearce play insyd five FIFA Women's World Cup finals den four Olympics women's soccer tournaments. She be a 1999 den 2015 FIFA Women's World Cup champion, den a three-time gold medalist having win championship titles at de 2004 Athens Olympics, 2008 Beijing Olympics den 2012 London Olympics. She fini no lower dan third place insyd each of de World Cup or Olympic tournaments in wich she compete.
Pearce play insyd de W-League from 1997 thru 1998. She play insyd two American professional leagues de entire time na dem be insyd operation; from 2001 thru 2003 insyd de WUSA den from 2009 thru 2011 insyd de WPS. Insyd 2009, while playing give Sky Blue FC, she simultaneously serve as coach of de club while winning de 2009 Women's Professional Soccer Playoffs, wey na dem name WPS Sportswoman of de Year.
Na Pearce be de oldest player to appear insyd a FIFA Women's World Cup game (at age 40) til Formiga compete insyd de 2019 FIFA Women's World Cup at de age of 41. Plus 311 caps, Pearce sanso be de third-most capped player, male anaa female, insyd U.S. den world history, after [[Kristine Lilly]] den [[Carli Lloyd]].<ref name="oldestplayer">{{Cite web |date=June 17, 2015 |title=Christie Rampone Is Now The Oldest Player To Appear In The Women's World Cup |url=http://www.huffingtonpost.com/2015/06/17/christie-rampone-oldest-player_n_7599882.html |publisher=Huffington Post}}</ref>
On June 9, 2021, na dem announce say na Pearce be to be inducted into de National Soccer Hall of Fame insyd ein first year of eligibility.<ref>{{cite web |date=June 9, 2021 |title=CHRISTIE PEARCE RAMPONE, STEVE CHERUNDOLO HEADLINE 2021 CLASS OF THE NATIONAL SOCCER HALL OF FAME |url=https://www.nationalsoccerhof.com/news/2021/06/christie-pearce-rampone-steve-cherundolo-highlight-hall-of-fame-class-of-2021.html |publisher=National Soccer Hall of Fame}}</ref>
jrysfbeyo42e2ifaiybgjlmz0bpskkc
111289
111285
2026-08-29T19:45:41Z
DaSupremo
9
Created by translating the section "Early life" from the page "[[:en:Special:Redirect/revision/1371579201|Christie Pearce]]"
111289
wikitext
text/x-wiki
'''Christie Patricia Pearce''' (formerly '''Rampone'''; born June 24, 1975) be an American former professional soccer player wey play as a defender. She be de former captain of de United States national team. Pearce be a three-time Olympic gold medalist, wey sanso be a two-time world champion insyd FIFA Women's World Cup.
Pearce play insyd five FIFA Women's World Cup finals den four Olympics women's soccer tournaments. She be a 1999 den 2015 FIFA Women's World Cup champion, den a three-time gold medalist having win championship titles at de 2004 Athens Olympics, 2008 Beijing Olympics den 2012 London Olympics. She fini no lower dan third place insyd each of de World Cup or Olympic tournaments in wich she compete.
Pearce play insyd de W-League from 1997 thru 1998. She play insyd two American professional leagues de entire time na dem be insyd operation; from 2001 thru 2003 insyd de WUSA den from 2009 thru 2011 insyd de WPS. Insyd 2009, while playing give Sky Blue FC, she simultaneously serve as coach of de club while winning de 2009 Women's Professional Soccer Playoffs, wey na dem name WPS Sportswoman of de Year.
Na Pearce be de oldest player to appear insyd a FIFA Women's World Cup game (at age 40) til Formiga compete insyd de 2019 FIFA Women's World Cup at de age of 41. Plus 311 caps, Pearce sanso be de third-most capped player, male anaa female, insyd U.S. den world history, after [[Kristine Lilly]] den [[Carli Lloyd]].<ref name="oldestplayer">{{Cite web |date=June 17, 2015 |title=Christie Rampone Is Now The Oldest Player To Appear In The Women's World Cup |url=http://www.huffingtonpost.com/2015/06/17/christie-rampone-oldest-player_n_7599882.html |publisher=Huffington Post}}</ref>
On June 9, 2021, na dem announce say na Pearce be to be inducted into de National Soccer Hall of Fame insyd ein first year of eligibility.<ref>{{cite web |date=June 9, 2021 |title=CHRISTIE PEARCE RAMPONE, STEVE CHERUNDOLO HEADLINE 2021 CLASS OF THE NATIONAL SOCCER HALL OF FAME |url=https://www.nationalsoccerhof.com/news/2021/06/christie-pearce-rampone-steve-cherundolo-highlight-hall-of-fame-class-of-2021.html |publisher=National Soccer Hall of Fame}}</ref>
== Early life ==
Born insyd Fort Lauderdale, Florida, Christie Pearce grow up insyd Point Pleasant, New Jersey. During ein high school years, she be a four-sport athlete insyd soccer, basketball, track, den field hockey. While attending Point Pleasant Borough High School, she score 2,190 career high school basketball points, wey na she be de first female athlete insyd New Jersey history to lead ein conference in scoring insyd three different sports. Dis accomplishment lead am to all-state honors insyd all three sports. Na dem herald Pearce as de best athlete Ocean County, New Jersey ever produce.
=== Monmouth University ===
Pearce attend Monmouth University, wey locate insyd West Long Branch, New Jersey, after she be highly recruited by nearly every major college insyd de country. At Monmouth, na she excel as a three-sport athlete insyd soccer, basketball, den lacrosse. During ein senior year, she opt to ease away from ein starting point guard basketball position to train den travel plus de United States women's national soccer team. On de Monmouth soccer field, na Pearce be a two-time Northeast Conference Player of de Year selection den First Team All Mid-Atlantic Region selection, posting ten multiple-goal games insyd ein senior year. She fini ein collegiate soccer career plus a start insyd all 80 games, she lead ein team plus 79 career goals den 54 assists, wey na she be Monmouth ein record holder for goals, assists, den points insyd a season.
Wen she no be on de field, Pearce study towards a degree insyd Special Education, wich she plete insyd 1996. She sanso work as a volunteer basketball den soccer coach wen she plete ein student teaching plus Monmouth. As a tribute to ein achievements den for de worldwide fame she bring to ein alma mater, de university award am plus an honorary degree insyd Public Service insyd 2005. Furthermore, de university induct am into de Monmouth University Hall of Fame insyd 2007 wey dem honor ein 2008 Olympic accomplishments by declaring October 5, 2008 as Christie Rampone Day.
673uho9z36vw3ru2vmceubtfc05rigq
111292
111289
2026-08-29T20:28:57Z
DaSupremo
9
Created by translating the section "Club career" from the page "[[:en:Special:Redirect/revision/1371579201|Christie Pearce]]"
111292
wikitext
text/x-wiki
'''Christie Patricia Pearce''' (formerly '''Rampone'''; born June 24, 1975) be an American former professional soccer player wey play as a defender. She be de former captain of de United States national team. Pearce be a three-time Olympic gold medalist, wey sanso be a two-time world champion insyd FIFA Women's World Cup.
Pearce play insyd five FIFA Women's World Cup finals den four Olympics women's soccer tournaments. She be a 1999 den 2015 FIFA Women's World Cup champion, den a three-time gold medalist having win championship titles at de 2004 Athens Olympics, 2008 Beijing Olympics den 2012 London Olympics. She fini no lower dan third place insyd each of de World Cup or Olympic tournaments in wich she compete.
Pearce play insyd de W-League from 1997 thru 1998. She play insyd two American professional leagues de entire time na dem be insyd operation; from 2001 thru 2003 insyd de WUSA den from 2009 thru 2011 insyd de WPS. Insyd 2009, while playing give Sky Blue FC, she simultaneously serve as coach of de club while winning de 2009 Women's Professional Soccer Playoffs, wey na dem name WPS Sportswoman of de Year.
Na Pearce be de oldest player to appear insyd a FIFA Women's World Cup game (at age 40) til Formiga compete insyd de 2019 FIFA Women's World Cup at de age of 41. Plus 311 caps, Pearce sanso be de third-most capped player, male anaa female, insyd U.S. den world history, after [[Kristine Lilly]] den [[Carli Lloyd]].<ref name="oldestplayer">{{Cite web |date=June 17, 2015 |title=Christie Rampone Is Now The Oldest Player To Appear In The Women's World Cup |url=http://www.huffingtonpost.com/2015/06/17/christie-rampone-oldest-player_n_7599882.html |publisher=Huffington Post}}</ref>
On June 9, 2021, na dem announce say na Pearce be to be inducted into de National Soccer Hall of Fame insyd ein first year of eligibility.<ref>{{cite web |date=June 9, 2021 |title=CHRISTIE PEARCE RAMPONE, STEVE CHERUNDOLO HEADLINE 2021 CLASS OF THE NATIONAL SOCCER HALL OF FAME |url=https://www.nationalsoccerhof.com/news/2021/06/christie-pearce-rampone-steve-cherundolo-highlight-hall-of-fame-class-of-2021.html |publisher=National Soccer Hall of Fame}}</ref>
== Early life ==
Born insyd Fort Lauderdale, Florida, Christie Pearce grow up insyd Point Pleasant, New Jersey. During ein high school years, she be a four-sport athlete insyd soccer, basketball, track, den field hockey. While attending Point Pleasant Borough High School, she score 2,190 career high school basketball points, wey na she be de first female athlete insyd New Jersey history to lead ein conference in scoring insyd three different sports. Dis accomplishment lead am to all-state honors insyd all three sports. Na dem herald Pearce as de best athlete Ocean County, New Jersey ever produce.
=== Monmouth University ===
Pearce attend Monmouth University, wey locate insyd West Long Branch, New Jersey, after she be highly recruited by nearly every major college insyd de country. At Monmouth, na she excel as a three-sport athlete insyd soccer, basketball, den lacrosse. During ein senior year, she opt to ease away from ein starting point guard basketball position to train den travel plus de United States women's national soccer team. On de Monmouth soccer field, na Pearce be a two-time Northeast Conference Player of de Year selection den First Team All Mid-Atlantic Region selection, posting ten multiple-goal games insyd ein senior year. She fini ein collegiate soccer career plus a start insyd all 80 games, she lead ein team plus 79 career goals den 54 assists, wey na she be Monmouth ein record holder for goals, assists, den points insyd a season.
Wen she no be on de field, Pearce study towards a degree insyd Special Education, wich she plete insyd 1996. She sanso work as a volunteer basketball den soccer coach wen she plete ein student teaching plus Monmouth. As a tribute to ein achievements den for de worldwide fame she bring to ein alma mater, de university award am plus an honorary degree insyd Public Service insyd 2005. Furthermore, de university induct am into de Monmouth University Hall of Fame insyd 2007 wey dem honor ein 2008 Olympic accomplishments by declaring October 5, 2008 as Christie Rampone Day.
== Club career ==
After college, Pearce play give Central Jersey Splash den New Jersey Lady Stallions, insyd 1997 den 1998 respectively, of de W-League.
Insyd 2001, na dem select am as a member of New York Power, a professional soccer team insyd Women's United Soccer Association. Insyd de first year, Christie play every minute of de first 18 games til tearing ein anterior cruciate ligament, sidelining am for de rest of de season. Insyd 2002, Christie bounce back to play insyd 1699 minutes over 19 games, den anoda 18 games insyd 2003 in addition to ein national team duties. Shortly after concluding ein third season, de WUSA suspend all operations. Insyd anticipation of an eventual relaunch, WUSA preserve ein rights insyd de team names, logos den similar properties.<ref>{{cite news|title=WUSA Suspends Operations|url=https://www.cbc.ca/sports/soccer/women-s-soccer-league-suspends-operations-1.365994|publisher=CBC Sports|date=September 15, 2003}}</ref>
De next attempt at women's professional soccer insyd de United States kick off insyd 2008 under de name of Women's Professional Soccer. On September 16, 2008, na dem conduct de initial WPS player allocation wey dem choose Pearce as captain for New Jersey's Sky Blue FC plus fellow US Women's National Team players [[Heather O'Reilly]] den [[Natasha Kai]].<ref>{{cite news|url=http://voices.washingtonpost.com/soccerinsider/2008/09/wps_allocation_list.html|archive-url=https://web.archive.org/web/20110519105225/http://voices.washingtonpost.com/soccerinsider/2008/09/wps_allocation_list.html|url-status=dead|archive-date=May 19, 2011|newspaper=The Washington Post|title=WPS Allocation List}}</ref>
Insyd ein inaugural season, Pearce den Sky Blue FC struggle, wey include de suspension of dema first head coach [[Ian Sawyers]] den de resignation of ein successor, [[Kelly Lindsey]]. Insyd July 2009, de Sky Blue organization announce say Pearce go serve as de caretaker coach, in addition to ein playing duties, for de remainder of de WPS season.<ref>{{cite web |date=July 31, 2009 |title=Christie Rampone to serve as player-coach for remainder of season |url=http://www.nj.com/sports/njsports/index.ssf/2009/07/sky_blue_fc_coach_quits_abrupt.html}}</ref> After taking on de position as head coach, de third insyd one season for Sky Blue FC, Pearce take ein team on to win de 2009 Women's Professional Soccer Playoffs. Na dem later reveal say she be almost three months pregnant plus ein second kiddie at de time of de match.<ref>{{cite web |date=August 25, 2009 |title=U.S. WNT Captain Christie Rampone Expecting Second Child |url=http://www.ussoccer.com/News/Womens-National-Team/2009/08/Rampone-Expecting-Second-Child.aspx |url-status=dead |archive-url=https://web.archive.org/web/20120425043207/http://www.ussoccer.com/News/Womens-National-Team/2009/08/Rampone-Expecting-Second-Child.aspx |archive-date=April 25, 2012 |access-date=June 29, 2011 |publisher=USSF |df=mdy-all}}</ref> One week later, na dem name WPS Sportswoman of de Year.<ref>{{cite web |date=August 30, 2009 |title=Rampone Named the 2009 Hint Water Sportswoman of the Year, Leads WPS All-Stars to Victory |url=http://www.oursportscentral.com/services/releases/?id=3896782 |access-date=November 7, 2010 |publisher=OurSports Central}}</ref>
She remain plus Sky Blue insyd a playing role for 2010 before switching to magicJack ahead of de 2011 Women's Professional Soccer season.<ref>{{cite web |date=January 18, 2011 |title=Christie Rampone signs with Washington Freedom/magicTalk SC |url=http://www.potomacsoccerwire.com/news/460/14769 |url-status=dead |archive-url=https://web.archive.org/web/20120320111808/http://www.potomacsoccerwire.com/news/460/14769 |archive-date=March 20, 2012 |access-date=July 9, 2011 |publisher=Potomac Soccer Wire}}</ref>
On January 11, 2013, Pearce be one of three members from de United States women's national team wey dem allocate to de new NWSL club Sky Blue FC, along plus [[Jillian Loyden]] den [[Kelley O'Hara]].<ref>{{cite web |date=January 11, 2013 |title=NWSL announces allocation of 55 National Team Players to Eight Clubs |url=http://www.ussoccer.com/News/NWSL/2013/01/NWSL-Announces-Allocation-of-55-National-Team-Players-to-Eight-Clubs.aspx |url-status=dead |archive-url=https://web.archive.org/web/20130304205519/http://www.ussoccer.com/News/NWSL/2013/01/NWSL-Announces-Allocation-of-55-National-Team-Players-to-Eight-Clubs.aspx |archive-date=March 4, 2013 |publisher=US Soccer}}</ref> She cam second in voting for NWSL Defender of de Year behind [[Becky Sauerbrunn]] insyd de 2013 season.<ref>{{cite news|url=https://fckansascity.com/2013/08/22/becky-sauerbrunn-wins-nwsl-defender-of-the-year/|title=Becky Sauerbrunn Wins NWSL Defender of the Year|date=August 21, 2024|publisher=[[FC Kansas City]]|access-date=2024-06-26}}</ref>
tmrzpahvf9s0rb36430wcmmxruai1v5
Mia Hamm
0
30082
111293
2026-08-29T20:46:36Z
DaSupremo
9
Created by translating the opening section from the page "[[:en:Special:Redirect/revision/1369564235|Mia Hamm]]"
111293
wikitext
text/x-wiki
'''Mariel Margaret''' "'''Mia'''" '''Hamm''' (born March 17, 1972) be an American former professional soccer player wey play as a forward den midfielder give de United States national team from 1987 to 2004. She compete insyd four editions of de FIFA Women's World Cup, winning insyd 1991 den 1999. She win gold at de Olympic Games insyd 1996 den 2004, wey she win silver insyd 2000. Na she be a founding player of de Women's United Soccer Association (WUSA)—de first U.S. professional women's soccer league—wer she play give de Washington Freedom from 2001 to 2003. She play college soccer give de North Carolina Tar Heels, dey help de team win four NCAA Division I Championship titles. Dem hail am as a soccer icon, she be widely considered one of de best den most influential female players of all time.
As of March 2026, Hamm dey rank third on de list of most international goals scored, by players of any gender.<ref name=":0">{{Cite web |last=Jenkins |first=Keith |date=March 27, 2026 |title=Which soccer players have the most international goals of all time? |url=https://www.espn.com/soccer/story/_/id/48323228/which-soccer-players-most-international-goals-all |access-date=April 27, 2026 |website=ESPN.com |language=en}}</ref> She dey rank fourth insyd U.S. national team appearances (276) den first insyd international assists (144).<ref name="macHermann">{{cite web |title=Mia Hamm |url=http://www.machermanntrophy.org/mia-hamm/ |url-status=dead |archive-url=https://web.archive.org/web/20170730022558/http://www.machermanntrophy.org/mia-hamm/ |archive-date=July 30, 2017 |access-date=June 2, 2017 |publisher=MAC Hermann Trophy}}</ref> Na she be twice named FIFA World Player of de Year, na dem name am U.S. Soccer Female Athlete of de Year five years in a row, wey she win six ESPY awards, wey dey include Best Soccer Player, Best Female Soccer Player den Female Athlete of de Year. De Women's Sports Foundation name am Sportswoman of de Year insyd 1997 den 1999.
Hamm be inducted into de National Soccer Hall of Fame, Alabama Sports Hall of Fame, Texas Sports Hall of Fame, den North Carolina Soccer Hall of Fame, wey na she be de first woman dem induct into de World Football Hall of Fame.<ref name="macHermann">{{cite web |title=Mia Hamm |url=http://www.machermanntrophy.org/mia-hamm/ |url-status=dead |archive-url=https://web.archive.org/web/20170730022558/http://www.machermanntrophy.org/mia-hamm/ |archive-date=July 30, 2017 |access-date=June 2, 2017 |publisher=MAC Hermann Trophy}}</ref> Insyd 2004, na dem choose Hamm by [[Pelé]] as one of de 125 greatest living players.<ref>{{cite web |last1=Millward |first1=Robert |date=March 4, 2007 |title=Pele's list of soccer's best includes Hamm, Akers |url=https://usatoday30.usatoday.com/sports/soccer/2004-03-04-pele-list_x.htm |url-status=live |archive-url=https://web.archive.org/web/20160308040910/http://usatoday30.usatoday.com/sports/soccer/2004-03-04-pele-list_x.htm |archive-date=March 8, 2016 |access-date=June 3, 2017 |work=USA Today}}</ref>
Hamm be a co-owner of de professional soccer clubs Los Angeles FC den Angel City FC.<ref>{{Cite web |title=Mia Hamm |url=https://www.angelcity.com/club/ownership/mia-hamm |url-status=dead |archive-url=https://web.archive.org/web/20230302033634/https://www.angelcity.com/club/ownership/mia-hamm |archive-date=March 2, 2023 |access-date=December 16, 2023 |website=Angel City FC}}</ref> She be a global ambassador give FC Barcelona wey na she dey on de board of directors of de Italian Serie A soccer club A.S. Roma from 2014 to 2020. She be re author of ''Go For the Goal: A Champion's Guide to Winning in Soccer and Life'', wey e be featured insyd several films den television shows, wey dey include de HBO documentary ''Dare to Dream: The Story of the U.S. Women's Soccer Team''.
70e0ho4ogclh41kmzljx2qkbi8tngvu
Julie Foudy
0
30083
111294
2026-08-29T21:01:01Z
DaSupremo
9
Created by translating the opening section from the page "[[:en:Special:Redirect/revision/1370847538|Julie Foudy]]"
111294
wikitext
text/x-wiki
'''Julie Maurine Foudy''' ({{IPAc-en|ˈ|f|aʊ|d|i}} {{respell|FOW|dee}}; born January 23, 1971) be an American former professional soccer player wey play as a midfielder. She play give de United States women's national soccer team from 1988 to 2004, serving as co-captain from 1991 to 2000 den as captain from 2000 to 2004.<ref name="d970">{{cite web |last=Norwood |first=Robyn |date=1994-08-28 |title=Foudy Shows Women's Soccer is Alive, Kicking : Future: Former Mission Viejo star hopes her game grows thanks to the popularity of the recent World Cup tournament. |url=https://www.latimes.com/archives/la-xpm-1994-08-28-sp-32320-story.html |access-date=2024-11-13 |website=Los Angeles Times}}</ref> Plus de U.S. team, Foudy win de FIFA Women's World Cup insyd 1991 den 1999, wey she win de gold medal at de Summer Olympics insyd 1996 den 2004. Foudy fini ein international career plus 274 caps. Insyd 1997, she be de first American den first woman to receive de FIFA Fair Play Award.
From 2000 to 2002, Foudy serve as presido of de Women's Sports Foundation. Insyd 2006, she co-found de Julie Foudy Sports Leadership Academy, an organization wey focus on developing leadership skills insyd teenage girls. Insyd 2007, she be inducted into de National Soccer Hall of Fame. She currently be a sports analyst, reporter den de primary color commentator give women's soccer telecasts on ESPN.
Foudy be de author of ''Choose to Matter: Being Courageously and Fabulously YOU.''<ref name="espn_013117">{{cite web |last1=Foudy |first1=Julie |date=January 31, 2017 |title=With a new book, Julie Foudy wants to help you cultivate your inner leader |url=https://www.espn.com/espnw/voices/story/_/id/17785971/with-new-book-choose-matter-julie-foudy-wants-help-cultivate-your-inner-leader |access-date=30 April 2017 |publisher=ESPN}}</ref> She appear insyd de HBO documentary ''Dare to Dream: The Story of the U.S. Women's Soccer Team''.<ref name="HBO">{{cite web |title=Dare to Dream: The Story of the US. Women's Soccer Team |url=http://www.hbo.com/sports/dare-to-dream-us-womens-soccer-team/interview/julie-foudy.html |url-status=dead |archive-url=https://web.archive.org/web/20141111091858/http://www.hbo.com/sports/dare-to-dream-us-womens-soccer-team/interview/julie-foudy.html |archive-date=November 11, 2014 |access-date=30 April 2017 |publisher=HBO}}</ref> She be de executive producer of de documentary short, ''An Equal Playing Field'', wey she produce de ESPN Nine for IX episode ''The 99ers'', wich dey feature players from U.S. team wey win de 1999 Women's World Cup. Foudy be a part of de ownership group of Angel City FC of de National Women's Soccer League.<ref>{{Cite web |title=Julie Foudy |url=https://www.angelcity.com/club/ownership/julie-foudy |access-date=2023-12-16 |website=Angel City FC}}</ref>
00hvjgn67dp7ai4s601nm82ef7t0eg7
111304
111294
2026-08-30T09:24:32Z
DaSupremo
9
Created by translating the section "Early life" from the page "[[:en:Special:Redirect/revision/1370847538|Julie Foudy]]"
111304
wikitext
text/x-wiki
'''Julie Maurine Foudy''' ({{IPAc-en|ˈ|f|aʊ|d|i}} {{respell|FOW|dee}}; born January 23, 1971) be an American former professional soccer player wey play as a midfielder. She play give de United States women's national soccer team from 1988 to 2004, serving as co-captain from 1991 to 2000 den as captain from 2000 to 2004.<ref name="d970">{{cite web |last=Norwood |first=Robyn |date=1994-08-28 |title=Foudy Shows Women's Soccer is Alive, Kicking : Future: Former Mission Viejo star hopes her game grows thanks to the popularity of the recent World Cup tournament. |url=https://www.latimes.com/archives/la-xpm-1994-08-28-sp-32320-story.html |access-date=2024-11-13 |website=Los Angeles Times}}</ref> Plus de U.S. team, Foudy win de FIFA Women's World Cup insyd 1991 den 1999, wey she win de gold medal at de Summer Olympics insyd 1996 den 2004. Foudy fini ein international career plus 274 caps. Insyd 1997, she be de first American den first woman to receive de FIFA Fair Play Award.
From 2000 to 2002, Foudy serve as presido of de Women's Sports Foundation. Insyd 2006, she co-found de Julie Foudy Sports Leadership Academy, an organization wey focus on developing leadership skills insyd teenage girls. Insyd 2007, she be inducted into de National Soccer Hall of Fame. She currently be a sports analyst, reporter den de primary color commentator give women's soccer telecasts on ESPN.
Foudy be de author of ''Choose to Matter: Being Courageously and Fabulously YOU.''<ref name="espn_013117">{{cite web |last1=Foudy |first1=Julie |date=January 31, 2017 |title=With a new book, Julie Foudy wants to help you cultivate your inner leader |url=https://www.espn.com/espnw/voices/story/_/id/17785971/with-new-book-choose-matter-julie-foudy-wants-help-cultivate-your-inner-leader |access-date=30 April 2017 |publisher=ESPN}}</ref> She appear insyd de HBO documentary ''Dare to Dream: The Story of the U.S. Women's Soccer Team''.<ref name="HBO">{{cite web |title=Dare to Dream: The Story of the US. Women's Soccer Team |url=http://www.hbo.com/sports/dare-to-dream-us-womens-soccer-team/interview/julie-foudy.html |url-status=dead |archive-url=https://web.archive.org/web/20141111091858/http://www.hbo.com/sports/dare-to-dream-us-womens-soccer-team/interview/julie-foudy.html |archive-date=November 11, 2014 |access-date=30 April 2017 |publisher=HBO}}</ref> She be de executive producer of de documentary short, ''An Equal Playing Field'', wey she produce de ESPN Nine for IX episode ''The 99ers'', wich dey feature players from U.S. team wey win de 1999 Women's World Cup. Foudy be a part of de ownership group of Angel City FC of de National Women's Soccer League.<ref>{{Cite web |title=Julie Foudy |url=https://www.angelcity.com/club/ownership/julie-foudy |access-date=2023-12-16 |website=Angel City FC}}</ref>
== Early life ==
Dem born Foudy on January 23, 1971, insyd San Diego, California wey dem raise am insyd Mission Viejo.<ref>{{Cite web |date=2022-06-14 |title=Soccer newsletter: Landon Donovan, Alex Morgan are part of Southern California's all-time team |url=https://www.latimes.com/sports/newsletter/2022-06-14/landon-donovan-cobi-jones-soccer |access-date=2024-12-27 |website=Los Angeles Times |language=en-US}}</ref> She play soccer at Mission Viejo High School, wer na she be a two-time First-Team All-American. Na dem name am de ''Los Angeles Times'' High School Player of de 1980s den de Player of de Year insyd southern California for three straight years (1987–1989).<ref name="WUSA">{{cite web |title=Julie Foudy profile |url=http://www.wusa.com/team/?id=36&zone=players&player_id=1151 |url-status=unfit |archive-url=https://web.archive.org/web/20070928084142/http://www.wusa.com/team/?id=36&zone=players&player_id=1151 |archive-date=September 28, 2007 |publisher=[[Women's United Soccer Association]] |quote=Attended Mission Viejo High School where she was a two-time First-Team All-American...}}</ref>
iqib4rf1bxg5771kfkcv5q8j284oaeq
Template:NFL predraft/ftin
10
30084
111295
2026-08-29T21:55:08Z
DaSupremo
9
Fresh template
111295
wikitext
text/x-wiki
<!-- norm=normalised formatting (see convert/helper, re fractions etc).
-->{{#if:{{{norm_ft|}}}
|{{convert |1={{{norm_ft|0}}} |2=ft |3={{{norm_in|0}}} |4=in |5=m |6=2 |abbr=on |disp=br() }}
|{{convert |1={{{norm_in|0}}} |2=in |3=m |4=2 |abbr=on |disp=br() }}
}}
gjctqsyrfyo6ace5zs5vzwoa51hiajm